@longdotxyz/shared 0.0.23 → 0.0.24

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.
@@ -0,0 +1,1708 @@
1
+ import z from "zod";
2
+ import { AssetStatus } from "../types";
3
+ declare const AssetResponse: 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.ZodNumber;
7
+ asset_migration_timestamp: z.ZodNullable<z.ZodNumber>;
8
+ auction_pool: z.ZodObject<{
9
+ pool_current_price: z.ZodString;
10
+ pool_current_sqrt_price: z.ZodString;
11
+ pool_current_fdv: z.ZodString;
12
+ pool_current_liquidity: z.ZodString;
13
+ pool_current_tick: z.ZodNumber;
14
+ pool_last_epoch: z.ZodNumber;
15
+ pool_current_market_cap: z.ZodString;
16
+ pool_current_fees_accrued: z.ZodString;
17
+ pool_current_total_proceeds: z.ZodString;
18
+ pool_current_total_tokens_sold: z.ZodString;
19
+ pool_last_epoch_total_tokens_sold: z.ZodString;
20
+ pool_current_sale_progress_percentage: z.ZodNumber;
21
+ pool_config_max_proceeds: z.ZodString;
22
+ pool_config_min_proceeds: z.ZodString;
23
+ pool_id: z.ZodString;
24
+ pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
25
+ pool_config_starting_time: z.ZodString;
26
+ pool_config_ending_time: z.ZodString;
27
+ pool_migration_timestamp: z.ZodNullable<z.ZodNumber>;
28
+ pool_type: z.ZodString;
29
+ base_token: z.ZodObject<{
30
+ token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
31
+ token_name: z.ZodString;
32
+ token_symbol: z.ZodString;
33
+ token_uri_data: z.ZodNullable<z.ZodAny>;
34
+ token_image_public_url: z.ZodNullable<z.ZodString>;
35
+ token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
36
+ token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
37
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
38
+ }, "strip", z.ZodTypeAny, {
39
+ token_address: `0x${string}`;
40
+ token_name: string;
41
+ token_symbol: string;
42
+ token_image_public_url: string | null;
43
+ token_creator_address: `0x${string}`;
44
+ token_fee_receiver_address: `0x${string}`;
45
+ token_vesting_recipient_addresses: `0x${string}`[];
46
+ token_uri_data?: any;
47
+ }, {
48
+ token_address: string;
49
+ token_name: string;
50
+ token_symbol: string;
51
+ token_image_public_url: string | null;
52
+ token_creator_address: string;
53
+ token_fee_receiver_address: string;
54
+ token_vesting_recipient_addresses: string[];
55
+ token_uri_data?: any;
56
+ }>;
57
+ }, "strip", z.ZodTypeAny, {
58
+ pool_current_price: string;
59
+ pool_current_sqrt_price: string;
60
+ pool_current_fdv: string;
61
+ pool_current_liquidity: string;
62
+ pool_current_tick: number;
63
+ pool_last_epoch: number;
64
+ pool_current_market_cap: string;
65
+ pool_current_fees_accrued: string;
66
+ pool_current_total_proceeds: string;
67
+ pool_current_total_tokens_sold: string;
68
+ pool_last_epoch_total_tokens_sold: string;
69
+ pool_current_sale_progress_percentage: number;
70
+ pool_config_max_proceeds: string;
71
+ pool_config_min_proceeds: string;
72
+ pool_id: string;
73
+ pool_address: `0x${string}`;
74
+ pool_config_starting_time: string;
75
+ pool_config_ending_time: string;
76
+ pool_migration_timestamp: number | null;
77
+ pool_type: string;
78
+ base_token: {
79
+ token_address: `0x${string}`;
80
+ token_name: string;
81
+ token_symbol: string;
82
+ token_image_public_url: string | null;
83
+ token_creator_address: `0x${string}`;
84
+ token_fee_receiver_address: `0x${string}`;
85
+ token_vesting_recipient_addresses: `0x${string}`[];
86
+ token_uri_data?: any;
87
+ };
88
+ }, {
89
+ pool_current_price: string;
90
+ pool_current_sqrt_price: string;
91
+ pool_current_fdv: string;
92
+ pool_current_liquidity: string;
93
+ pool_current_tick: number;
94
+ pool_last_epoch: number;
95
+ pool_current_market_cap: string;
96
+ pool_current_fees_accrued: string;
97
+ pool_current_total_proceeds: string;
98
+ pool_current_total_tokens_sold: string;
99
+ pool_last_epoch_total_tokens_sold: string;
100
+ pool_current_sale_progress_percentage: number;
101
+ pool_config_max_proceeds: string;
102
+ pool_config_min_proceeds: string;
103
+ pool_id: string;
104
+ pool_address: string;
105
+ pool_config_starting_time: string;
106
+ pool_config_ending_time: string;
107
+ pool_migration_timestamp: number | null;
108
+ pool_type: string;
109
+ base_token: {
110
+ token_address: string;
111
+ token_name: string;
112
+ token_symbol: string;
113
+ token_image_public_url: string | null;
114
+ token_creator_address: string;
115
+ token_fee_receiver_address: string;
116
+ token_vesting_recipient_addresses: string[];
117
+ token_uri_data?: any;
118
+ };
119
+ }>;
120
+ graduation_pool: z.ZodObject<{
121
+ pool_current_price: z.ZodString;
122
+ pool_current_sqrt_price: z.ZodString;
123
+ pool_current_fdv: z.ZodString;
124
+ pool_current_liquidity: z.ZodString;
125
+ pool_current_tick: z.ZodNumber;
126
+ pool_current_market_cap: z.ZodString;
127
+ pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
128
+ pool_migration_timestamp: z.ZodNullable<z.ZodNumber>;
129
+ pool_type: z.ZodString;
130
+ base_token: z.ZodObject<{
131
+ token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
132
+ token_name: z.ZodString;
133
+ token_symbol: z.ZodString;
134
+ token_uri_data: z.ZodNullable<z.ZodAny>;
135
+ token_image_public_url: z.ZodNullable<z.ZodString>;
136
+ token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
137
+ token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
138
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
139
+ integrator_address: z.ZodString;
140
+ }, "strip", z.ZodTypeAny, {
141
+ token_address: `0x${string}`;
142
+ token_name: string;
143
+ token_symbol: string;
144
+ token_image_public_url: string | null;
145
+ token_creator_address: `0x${string}`;
146
+ token_fee_receiver_address: `0x${string}`;
147
+ token_vesting_recipient_addresses: `0x${string}`[];
148
+ integrator_address: string;
149
+ token_uri_data?: any;
150
+ }, {
151
+ token_address: string;
152
+ token_name: string;
153
+ token_symbol: string;
154
+ token_image_public_url: string | null;
155
+ token_creator_address: string;
156
+ token_fee_receiver_address: string;
157
+ token_vesting_recipient_addresses: string[];
158
+ integrator_address: string;
159
+ token_uri_data?: any;
160
+ }>;
161
+ }, "strip", z.ZodTypeAny, {
162
+ pool_current_price: string;
163
+ pool_current_sqrt_price: string;
164
+ pool_current_fdv: string;
165
+ pool_current_liquidity: string;
166
+ pool_current_tick: number;
167
+ pool_current_market_cap: string;
168
+ pool_address: `0x${string}`;
169
+ pool_migration_timestamp: number | null;
170
+ pool_type: string;
171
+ base_token: {
172
+ token_address: `0x${string}`;
173
+ token_name: string;
174
+ token_symbol: string;
175
+ token_image_public_url: string | null;
176
+ token_creator_address: `0x${string}`;
177
+ token_fee_receiver_address: `0x${string}`;
178
+ token_vesting_recipient_addresses: `0x${string}`[];
179
+ integrator_address: string;
180
+ token_uri_data?: any;
181
+ };
182
+ }, {
183
+ pool_current_price: string;
184
+ pool_current_sqrt_price: string;
185
+ pool_current_fdv: string;
186
+ pool_current_liquidity: string;
187
+ pool_current_tick: number;
188
+ pool_current_market_cap: string;
189
+ pool_address: string;
190
+ pool_migration_timestamp: number | null;
191
+ pool_type: string;
192
+ base_token: {
193
+ token_address: string;
194
+ token_name: string;
195
+ token_symbol: string;
196
+ token_image_public_url: string | null;
197
+ token_creator_address: string;
198
+ token_fee_receiver_address: string;
199
+ token_vesting_recipient_addresses: string[];
200
+ integrator_address: string;
201
+ token_uri_data?: any;
202
+ };
203
+ }>;
204
+ }, "strip", z.ZodTypeAny, {
205
+ asset_address: `0x${string}`;
206
+ asset_numeraire_address: `0x${string}`;
207
+ asset_creation_timestamp: number;
208
+ asset_migration_timestamp: number | null;
209
+ auction_pool: {
210
+ pool_current_price: string;
211
+ pool_current_sqrt_price: string;
212
+ pool_current_fdv: string;
213
+ pool_current_liquidity: string;
214
+ pool_current_tick: number;
215
+ pool_last_epoch: number;
216
+ pool_current_market_cap: string;
217
+ pool_current_fees_accrued: string;
218
+ pool_current_total_proceeds: string;
219
+ pool_current_total_tokens_sold: string;
220
+ pool_last_epoch_total_tokens_sold: string;
221
+ pool_current_sale_progress_percentage: number;
222
+ pool_config_max_proceeds: string;
223
+ pool_config_min_proceeds: string;
224
+ pool_id: string;
225
+ pool_address: `0x${string}`;
226
+ pool_config_starting_time: string;
227
+ pool_config_ending_time: string;
228
+ pool_migration_timestamp: number | null;
229
+ pool_type: string;
230
+ base_token: {
231
+ token_address: `0x${string}`;
232
+ token_name: string;
233
+ token_symbol: string;
234
+ token_image_public_url: string | null;
235
+ token_creator_address: `0x${string}`;
236
+ token_fee_receiver_address: `0x${string}`;
237
+ token_vesting_recipient_addresses: `0x${string}`[];
238
+ token_uri_data?: any;
239
+ };
240
+ };
241
+ graduation_pool: {
242
+ pool_current_price: string;
243
+ pool_current_sqrt_price: string;
244
+ pool_current_fdv: string;
245
+ pool_current_liquidity: string;
246
+ pool_current_tick: number;
247
+ pool_current_market_cap: string;
248
+ pool_address: `0x${string}`;
249
+ pool_migration_timestamp: number | null;
250
+ pool_type: string;
251
+ base_token: {
252
+ token_address: `0x${string}`;
253
+ token_name: string;
254
+ token_symbol: string;
255
+ token_image_public_url: string | null;
256
+ token_creator_address: `0x${string}`;
257
+ token_fee_receiver_address: `0x${string}`;
258
+ token_vesting_recipient_addresses: `0x${string}`[];
259
+ integrator_address: string;
260
+ token_uri_data?: any;
261
+ };
262
+ };
263
+ }, {
264
+ asset_address: string;
265
+ asset_numeraire_address: string;
266
+ asset_creation_timestamp: number;
267
+ asset_migration_timestamp: number | null;
268
+ auction_pool: {
269
+ pool_current_price: string;
270
+ pool_current_sqrt_price: string;
271
+ pool_current_fdv: string;
272
+ pool_current_liquidity: string;
273
+ pool_current_tick: number;
274
+ pool_last_epoch: number;
275
+ pool_current_market_cap: string;
276
+ pool_current_fees_accrued: string;
277
+ pool_current_total_proceeds: string;
278
+ pool_current_total_tokens_sold: string;
279
+ pool_last_epoch_total_tokens_sold: string;
280
+ pool_current_sale_progress_percentage: number;
281
+ pool_config_max_proceeds: string;
282
+ pool_config_min_proceeds: string;
283
+ pool_id: string;
284
+ pool_address: string;
285
+ pool_config_starting_time: string;
286
+ pool_config_ending_time: string;
287
+ pool_migration_timestamp: number | null;
288
+ pool_type: string;
289
+ base_token: {
290
+ token_address: string;
291
+ token_name: string;
292
+ token_symbol: string;
293
+ token_image_public_url: string | null;
294
+ token_creator_address: string;
295
+ token_fee_receiver_address: string;
296
+ token_vesting_recipient_addresses: string[];
297
+ token_uri_data?: any;
298
+ };
299
+ };
300
+ graduation_pool: {
301
+ pool_current_price: string;
302
+ pool_current_sqrt_price: string;
303
+ pool_current_fdv: string;
304
+ pool_current_liquidity: string;
305
+ pool_current_tick: number;
306
+ pool_current_market_cap: string;
307
+ pool_address: string;
308
+ pool_migration_timestamp: number | null;
309
+ pool_type: string;
310
+ base_token: {
311
+ token_address: string;
312
+ token_name: string;
313
+ token_symbol: string;
314
+ token_image_public_url: string | null;
315
+ token_creator_address: string;
316
+ token_fee_receiver_address: string;
317
+ token_vesting_recipient_addresses: string[];
318
+ integrator_address: string;
319
+ token_uri_data?: any;
320
+ };
321
+ };
322
+ }>;
323
+ declare const assetContract: {
324
+ listAssets: {
325
+ query: z.ZodObject<{
326
+ status: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof AssetStatus>>>;
327
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
328
+ offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
329
+ }, "strip", z.ZodTypeAny, {
330
+ status: AssetStatus;
331
+ limit: number;
332
+ offset: number;
333
+ }, {
334
+ status?: AssetStatus | undefined;
335
+ limit?: number | undefined;
336
+ offset?: number | undefined;
337
+ }>;
338
+ description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
339
+ method: "GET";
340
+ path: "/assets/";
341
+ responses: {
342
+ 200: z.ZodObject<{
343
+ result: z.ZodArray<z.ZodObject<{
344
+ asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
345
+ asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
346
+ asset_creation_timestamp: z.ZodNumber;
347
+ asset_migration_timestamp: z.ZodNullable<z.ZodNumber>;
348
+ auction_pool: z.ZodObject<{
349
+ pool_current_price: z.ZodString;
350
+ pool_current_sqrt_price: z.ZodString;
351
+ pool_current_fdv: z.ZodString;
352
+ pool_current_liquidity: z.ZodString;
353
+ pool_current_tick: z.ZodNumber;
354
+ pool_last_epoch: z.ZodNumber;
355
+ pool_current_market_cap: z.ZodString;
356
+ pool_current_fees_accrued: z.ZodString;
357
+ pool_current_total_proceeds: z.ZodString;
358
+ pool_current_total_tokens_sold: z.ZodString;
359
+ pool_last_epoch_total_tokens_sold: z.ZodString;
360
+ pool_current_sale_progress_percentage: z.ZodNumber;
361
+ pool_config_max_proceeds: z.ZodString;
362
+ pool_config_min_proceeds: z.ZodString;
363
+ pool_id: z.ZodString;
364
+ pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
365
+ pool_config_starting_time: z.ZodString;
366
+ pool_config_ending_time: z.ZodString;
367
+ pool_migration_timestamp: z.ZodNullable<z.ZodNumber>;
368
+ pool_type: z.ZodString;
369
+ base_token: z.ZodObject<{
370
+ token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
371
+ token_name: z.ZodString;
372
+ token_symbol: z.ZodString;
373
+ token_uri_data: z.ZodNullable<z.ZodAny>;
374
+ token_image_public_url: z.ZodNullable<z.ZodString>;
375
+ token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
376
+ token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
377
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
378
+ }, "strip", z.ZodTypeAny, {
379
+ token_address: `0x${string}`;
380
+ token_name: string;
381
+ token_symbol: string;
382
+ token_image_public_url: string | null;
383
+ token_creator_address: `0x${string}`;
384
+ token_fee_receiver_address: `0x${string}`;
385
+ token_vesting_recipient_addresses: `0x${string}`[];
386
+ token_uri_data?: any;
387
+ }, {
388
+ token_address: string;
389
+ token_name: string;
390
+ token_symbol: string;
391
+ token_image_public_url: string | null;
392
+ token_creator_address: string;
393
+ token_fee_receiver_address: string;
394
+ token_vesting_recipient_addresses: string[];
395
+ token_uri_data?: any;
396
+ }>;
397
+ }, "strip", z.ZodTypeAny, {
398
+ pool_current_price: string;
399
+ pool_current_sqrt_price: string;
400
+ pool_current_fdv: string;
401
+ pool_current_liquidity: string;
402
+ pool_current_tick: number;
403
+ pool_last_epoch: number;
404
+ pool_current_market_cap: string;
405
+ pool_current_fees_accrued: string;
406
+ pool_current_total_proceeds: string;
407
+ pool_current_total_tokens_sold: string;
408
+ pool_last_epoch_total_tokens_sold: string;
409
+ pool_current_sale_progress_percentage: number;
410
+ pool_config_max_proceeds: string;
411
+ pool_config_min_proceeds: string;
412
+ pool_id: string;
413
+ pool_address: `0x${string}`;
414
+ pool_config_starting_time: string;
415
+ pool_config_ending_time: string;
416
+ pool_migration_timestamp: number | null;
417
+ pool_type: string;
418
+ base_token: {
419
+ token_address: `0x${string}`;
420
+ token_name: string;
421
+ token_symbol: string;
422
+ token_image_public_url: string | null;
423
+ token_creator_address: `0x${string}`;
424
+ token_fee_receiver_address: `0x${string}`;
425
+ token_vesting_recipient_addresses: `0x${string}`[];
426
+ token_uri_data?: any;
427
+ };
428
+ }, {
429
+ pool_current_price: string;
430
+ pool_current_sqrt_price: string;
431
+ pool_current_fdv: string;
432
+ pool_current_liquidity: string;
433
+ pool_current_tick: number;
434
+ pool_last_epoch: number;
435
+ pool_current_market_cap: string;
436
+ pool_current_fees_accrued: string;
437
+ pool_current_total_proceeds: string;
438
+ pool_current_total_tokens_sold: string;
439
+ pool_last_epoch_total_tokens_sold: string;
440
+ pool_current_sale_progress_percentage: number;
441
+ pool_config_max_proceeds: string;
442
+ pool_config_min_proceeds: string;
443
+ pool_id: string;
444
+ pool_address: string;
445
+ pool_config_starting_time: string;
446
+ pool_config_ending_time: string;
447
+ pool_migration_timestamp: number | null;
448
+ pool_type: string;
449
+ base_token: {
450
+ token_address: string;
451
+ token_name: string;
452
+ token_symbol: string;
453
+ token_image_public_url: string | null;
454
+ token_creator_address: string;
455
+ token_fee_receiver_address: string;
456
+ token_vesting_recipient_addresses: string[];
457
+ token_uri_data?: any;
458
+ };
459
+ }>;
460
+ graduation_pool: z.ZodObject<{
461
+ pool_current_price: z.ZodString;
462
+ pool_current_sqrt_price: z.ZodString;
463
+ pool_current_fdv: z.ZodString;
464
+ pool_current_liquidity: z.ZodString;
465
+ pool_current_tick: z.ZodNumber;
466
+ pool_current_market_cap: z.ZodString;
467
+ pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
468
+ pool_migration_timestamp: z.ZodNullable<z.ZodNumber>;
469
+ pool_type: z.ZodString;
470
+ base_token: z.ZodObject<{
471
+ token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
472
+ token_name: z.ZodString;
473
+ token_symbol: z.ZodString;
474
+ token_uri_data: z.ZodNullable<z.ZodAny>;
475
+ token_image_public_url: z.ZodNullable<z.ZodString>;
476
+ token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
477
+ token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
478
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
479
+ integrator_address: z.ZodString;
480
+ }, "strip", z.ZodTypeAny, {
481
+ token_address: `0x${string}`;
482
+ token_name: string;
483
+ token_symbol: string;
484
+ token_image_public_url: string | null;
485
+ token_creator_address: `0x${string}`;
486
+ token_fee_receiver_address: `0x${string}`;
487
+ token_vesting_recipient_addresses: `0x${string}`[];
488
+ integrator_address: string;
489
+ token_uri_data?: any;
490
+ }, {
491
+ token_address: string;
492
+ token_name: string;
493
+ token_symbol: string;
494
+ token_image_public_url: string | null;
495
+ token_creator_address: string;
496
+ token_fee_receiver_address: string;
497
+ token_vesting_recipient_addresses: string[];
498
+ integrator_address: string;
499
+ token_uri_data?: any;
500
+ }>;
501
+ }, "strip", z.ZodTypeAny, {
502
+ pool_current_price: string;
503
+ pool_current_sqrt_price: string;
504
+ pool_current_fdv: string;
505
+ pool_current_liquidity: string;
506
+ pool_current_tick: number;
507
+ pool_current_market_cap: string;
508
+ pool_address: `0x${string}`;
509
+ pool_migration_timestamp: number | null;
510
+ pool_type: string;
511
+ base_token: {
512
+ token_address: `0x${string}`;
513
+ token_name: string;
514
+ token_symbol: string;
515
+ token_image_public_url: string | null;
516
+ token_creator_address: `0x${string}`;
517
+ token_fee_receiver_address: `0x${string}`;
518
+ token_vesting_recipient_addresses: `0x${string}`[];
519
+ integrator_address: string;
520
+ token_uri_data?: any;
521
+ };
522
+ }, {
523
+ pool_current_price: string;
524
+ pool_current_sqrt_price: string;
525
+ pool_current_fdv: string;
526
+ pool_current_liquidity: string;
527
+ pool_current_tick: number;
528
+ pool_current_market_cap: string;
529
+ pool_address: string;
530
+ pool_migration_timestamp: number | null;
531
+ pool_type: string;
532
+ base_token: {
533
+ token_address: string;
534
+ token_name: string;
535
+ token_symbol: string;
536
+ token_image_public_url: string | null;
537
+ token_creator_address: string;
538
+ token_fee_receiver_address: string;
539
+ token_vesting_recipient_addresses: string[];
540
+ integrator_address: string;
541
+ token_uri_data?: any;
542
+ };
543
+ }>;
544
+ }, "strip", z.ZodTypeAny, {
545
+ asset_address: `0x${string}`;
546
+ asset_numeraire_address: `0x${string}`;
547
+ asset_creation_timestamp: number;
548
+ asset_migration_timestamp: number | null;
549
+ auction_pool: {
550
+ pool_current_price: string;
551
+ pool_current_sqrt_price: string;
552
+ pool_current_fdv: string;
553
+ pool_current_liquidity: string;
554
+ pool_current_tick: number;
555
+ pool_last_epoch: number;
556
+ pool_current_market_cap: string;
557
+ pool_current_fees_accrued: string;
558
+ pool_current_total_proceeds: string;
559
+ pool_current_total_tokens_sold: string;
560
+ pool_last_epoch_total_tokens_sold: string;
561
+ pool_current_sale_progress_percentage: number;
562
+ pool_config_max_proceeds: string;
563
+ pool_config_min_proceeds: string;
564
+ pool_id: string;
565
+ pool_address: `0x${string}`;
566
+ pool_config_starting_time: string;
567
+ pool_config_ending_time: string;
568
+ pool_migration_timestamp: number | null;
569
+ pool_type: string;
570
+ base_token: {
571
+ token_address: `0x${string}`;
572
+ token_name: string;
573
+ token_symbol: string;
574
+ token_image_public_url: string | null;
575
+ token_creator_address: `0x${string}`;
576
+ token_fee_receiver_address: `0x${string}`;
577
+ token_vesting_recipient_addresses: `0x${string}`[];
578
+ token_uri_data?: any;
579
+ };
580
+ };
581
+ graduation_pool: {
582
+ pool_current_price: string;
583
+ pool_current_sqrt_price: string;
584
+ pool_current_fdv: string;
585
+ pool_current_liquidity: string;
586
+ pool_current_tick: number;
587
+ pool_current_market_cap: string;
588
+ pool_address: `0x${string}`;
589
+ pool_migration_timestamp: number | null;
590
+ pool_type: string;
591
+ base_token: {
592
+ token_address: `0x${string}`;
593
+ token_name: string;
594
+ token_symbol: string;
595
+ token_image_public_url: string | null;
596
+ token_creator_address: `0x${string}`;
597
+ token_fee_receiver_address: `0x${string}`;
598
+ token_vesting_recipient_addresses: `0x${string}`[];
599
+ integrator_address: string;
600
+ token_uri_data?: any;
601
+ };
602
+ };
603
+ }, {
604
+ asset_address: string;
605
+ asset_numeraire_address: string;
606
+ asset_creation_timestamp: number;
607
+ asset_migration_timestamp: number | null;
608
+ auction_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_last_epoch: number;
615
+ pool_current_market_cap: string;
616
+ pool_current_fees_accrued: string;
617
+ pool_current_total_proceeds: string;
618
+ pool_current_total_tokens_sold: string;
619
+ pool_last_epoch_total_tokens_sold: string;
620
+ pool_current_sale_progress_percentage: number;
621
+ pool_config_max_proceeds: string;
622
+ pool_config_min_proceeds: string;
623
+ pool_id: string;
624
+ pool_address: string;
625
+ pool_config_starting_time: string;
626
+ pool_config_ending_time: string;
627
+ pool_migration_timestamp: number | null;
628
+ pool_type: string;
629
+ base_token: {
630
+ token_address: string;
631
+ token_name: string;
632
+ token_symbol: string;
633
+ token_image_public_url: string | null;
634
+ token_creator_address: string;
635
+ token_fee_receiver_address: string;
636
+ token_vesting_recipient_addresses: string[];
637
+ token_uri_data?: any;
638
+ };
639
+ };
640
+ graduation_pool: {
641
+ pool_current_price: string;
642
+ pool_current_sqrt_price: string;
643
+ pool_current_fdv: string;
644
+ pool_current_liquidity: string;
645
+ pool_current_tick: number;
646
+ pool_current_market_cap: string;
647
+ pool_address: string;
648
+ pool_migration_timestamp: number | null;
649
+ pool_type: string;
650
+ base_token: {
651
+ token_address: string;
652
+ token_name: string;
653
+ token_symbol: string;
654
+ token_image_public_url: string | null;
655
+ token_creator_address: string;
656
+ token_fee_receiver_address: string;
657
+ token_vesting_recipient_addresses: string[];
658
+ integrator_address: string;
659
+ token_uri_data?: any;
660
+ };
661
+ };
662
+ }>, "many">;
663
+ }, "strip", z.ZodTypeAny, {
664
+ result: {
665
+ asset_address: `0x${string}`;
666
+ asset_numeraire_address: `0x${string}`;
667
+ asset_creation_timestamp: number;
668
+ asset_migration_timestamp: number | null;
669
+ auction_pool: {
670
+ pool_current_price: string;
671
+ pool_current_sqrt_price: string;
672
+ pool_current_fdv: string;
673
+ pool_current_liquidity: string;
674
+ pool_current_tick: number;
675
+ pool_last_epoch: number;
676
+ pool_current_market_cap: string;
677
+ pool_current_fees_accrued: string;
678
+ pool_current_total_proceeds: string;
679
+ pool_current_total_tokens_sold: string;
680
+ pool_last_epoch_total_tokens_sold: string;
681
+ pool_current_sale_progress_percentage: number;
682
+ pool_config_max_proceeds: string;
683
+ pool_config_min_proceeds: string;
684
+ pool_id: string;
685
+ pool_address: `0x${string}`;
686
+ pool_config_starting_time: string;
687
+ pool_config_ending_time: string;
688
+ pool_migration_timestamp: number | null;
689
+ pool_type: string;
690
+ base_token: {
691
+ token_address: `0x${string}`;
692
+ token_name: string;
693
+ token_symbol: string;
694
+ token_image_public_url: string | null;
695
+ token_creator_address: `0x${string}`;
696
+ token_fee_receiver_address: `0x${string}`;
697
+ token_vesting_recipient_addresses: `0x${string}`[];
698
+ token_uri_data?: any;
699
+ };
700
+ };
701
+ graduation_pool: {
702
+ pool_current_price: string;
703
+ pool_current_sqrt_price: string;
704
+ pool_current_fdv: string;
705
+ pool_current_liquidity: string;
706
+ pool_current_tick: number;
707
+ pool_current_market_cap: string;
708
+ pool_address: `0x${string}`;
709
+ pool_migration_timestamp: number | null;
710
+ pool_type: string;
711
+ base_token: {
712
+ token_address: `0x${string}`;
713
+ token_name: string;
714
+ token_symbol: string;
715
+ token_image_public_url: string | null;
716
+ token_creator_address: `0x${string}`;
717
+ token_fee_receiver_address: `0x${string}`;
718
+ token_vesting_recipient_addresses: `0x${string}`[];
719
+ integrator_address: string;
720
+ token_uri_data?: any;
721
+ };
722
+ };
723
+ }[];
724
+ }, {
725
+ result: {
726
+ asset_address: string;
727
+ asset_numeraire_address: string;
728
+ asset_creation_timestamp: number;
729
+ asset_migration_timestamp: number | null;
730
+ auction_pool: {
731
+ pool_current_price: string;
732
+ pool_current_sqrt_price: string;
733
+ pool_current_fdv: string;
734
+ pool_current_liquidity: string;
735
+ pool_current_tick: number;
736
+ pool_last_epoch: number;
737
+ pool_current_market_cap: string;
738
+ pool_current_fees_accrued: string;
739
+ pool_current_total_proceeds: string;
740
+ pool_current_total_tokens_sold: string;
741
+ pool_last_epoch_total_tokens_sold: string;
742
+ pool_current_sale_progress_percentage: number;
743
+ pool_config_max_proceeds: string;
744
+ pool_config_min_proceeds: string;
745
+ pool_id: string;
746
+ pool_address: string;
747
+ pool_config_starting_time: string;
748
+ pool_config_ending_time: string;
749
+ pool_migration_timestamp: number | null;
750
+ pool_type: string;
751
+ base_token: {
752
+ token_address: string;
753
+ token_name: string;
754
+ token_symbol: string;
755
+ token_image_public_url: string | null;
756
+ token_creator_address: string;
757
+ token_fee_receiver_address: string;
758
+ token_vesting_recipient_addresses: string[];
759
+ token_uri_data?: any;
760
+ };
761
+ };
762
+ graduation_pool: {
763
+ pool_current_price: string;
764
+ pool_current_sqrt_price: string;
765
+ pool_current_fdv: string;
766
+ pool_current_liquidity: string;
767
+ pool_current_tick: number;
768
+ pool_current_market_cap: string;
769
+ pool_address: string;
770
+ pool_migration_timestamp: number | null;
771
+ pool_type: string;
772
+ base_token: {
773
+ token_address: string;
774
+ token_name: string;
775
+ token_symbol: string;
776
+ token_image_public_url: string | null;
777
+ token_creator_address: string;
778
+ token_fee_receiver_address: string;
779
+ token_vesting_recipient_addresses: string[];
780
+ integrator_address: string;
781
+ token_uri_data?: any;
782
+ };
783
+ };
784
+ }[];
785
+ }>;
786
+ };
787
+ };
788
+ searchAssets: {
789
+ query: z.ZodObject<{
790
+ term: z.ZodString;
791
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
792
+ }, "strip", z.ZodTypeAny, {
793
+ limit: number;
794
+ term: string;
795
+ }, {
796
+ term: string;
797
+ limit?: number | undefined;
798
+ }>;
799
+ description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
800
+ method: "GET";
801
+ path: "/assets/search";
802
+ responses: {
803
+ 200: z.ZodObject<{
804
+ result: z.ZodArray<z.ZodObject<{
805
+ asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
806
+ asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
807
+ asset_creation_timestamp: z.ZodNumber;
808
+ asset_migration_timestamp: z.ZodNullable<z.ZodNumber>;
809
+ auction_pool: z.ZodObject<{
810
+ pool_current_price: z.ZodString;
811
+ pool_current_sqrt_price: z.ZodString;
812
+ pool_current_fdv: z.ZodString;
813
+ pool_current_liquidity: z.ZodString;
814
+ pool_current_tick: z.ZodNumber;
815
+ pool_last_epoch: z.ZodNumber;
816
+ pool_current_market_cap: z.ZodString;
817
+ pool_current_fees_accrued: z.ZodString;
818
+ pool_current_total_proceeds: z.ZodString;
819
+ pool_current_total_tokens_sold: z.ZodString;
820
+ pool_last_epoch_total_tokens_sold: z.ZodString;
821
+ pool_current_sale_progress_percentage: z.ZodNumber;
822
+ pool_config_max_proceeds: z.ZodString;
823
+ pool_config_min_proceeds: z.ZodString;
824
+ pool_id: z.ZodString;
825
+ pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
826
+ pool_config_starting_time: z.ZodString;
827
+ pool_config_ending_time: z.ZodString;
828
+ pool_migration_timestamp: z.ZodNullable<z.ZodNumber>;
829
+ pool_type: z.ZodString;
830
+ base_token: z.ZodObject<{
831
+ token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
832
+ token_name: z.ZodString;
833
+ token_symbol: z.ZodString;
834
+ token_uri_data: z.ZodNullable<z.ZodAny>;
835
+ token_image_public_url: z.ZodNullable<z.ZodString>;
836
+ token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
837
+ token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
838
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
839
+ }, "strip", z.ZodTypeAny, {
840
+ token_address: `0x${string}`;
841
+ token_name: string;
842
+ token_symbol: string;
843
+ token_image_public_url: string | null;
844
+ token_creator_address: `0x${string}`;
845
+ token_fee_receiver_address: `0x${string}`;
846
+ token_vesting_recipient_addresses: `0x${string}`[];
847
+ token_uri_data?: any;
848
+ }, {
849
+ token_address: string;
850
+ token_name: string;
851
+ token_symbol: string;
852
+ token_image_public_url: string | null;
853
+ token_creator_address: string;
854
+ token_fee_receiver_address: string;
855
+ token_vesting_recipient_addresses: string[];
856
+ token_uri_data?: any;
857
+ }>;
858
+ }, "strip", z.ZodTypeAny, {
859
+ pool_current_price: string;
860
+ pool_current_sqrt_price: string;
861
+ pool_current_fdv: string;
862
+ pool_current_liquidity: string;
863
+ pool_current_tick: number;
864
+ pool_last_epoch: number;
865
+ pool_current_market_cap: string;
866
+ pool_current_fees_accrued: string;
867
+ pool_current_total_proceeds: string;
868
+ pool_current_total_tokens_sold: string;
869
+ pool_last_epoch_total_tokens_sold: string;
870
+ pool_current_sale_progress_percentage: number;
871
+ pool_config_max_proceeds: string;
872
+ pool_config_min_proceeds: string;
873
+ pool_id: string;
874
+ pool_address: `0x${string}`;
875
+ pool_config_starting_time: string;
876
+ pool_config_ending_time: string;
877
+ pool_migration_timestamp: number | null;
878
+ pool_type: string;
879
+ base_token: {
880
+ token_address: `0x${string}`;
881
+ token_name: string;
882
+ token_symbol: string;
883
+ token_image_public_url: string | null;
884
+ token_creator_address: `0x${string}`;
885
+ token_fee_receiver_address: `0x${string}`;
886
+ token_vesting_recipient_addresses: `0x${string}`[];
887
+ token_uri_data?: any;
888
+ };
889
+ }, {
890
+ pool_current_price: string;
891
+ pool_current_sqrt_price: string;
892
+ pool_current_fdv: string;
893
+ pool_current_liquidity: string;
894
+ pool_current_tick: number;
895
+ pool_last_epoch: number;
896
+ pool_current_market_cap: string;
897
+ pool_current_fees_accrued: string;
898
+ pool_current_total_proceeds: string;
899
+ pool_current_total_tokens_sold: string;
900
+ pool_last_epoch_total_tokens_sold: string;
901
+ pool_current_sale_progress_percentage: number;
902
+ pool_config_max_proceeds: string;
903
+ pool_config_min_proceeds: string;
904
+ pool_id: string;
905
+ pool_address: string;
906
+ pool_config_starting_time: string;
907
+ pool_config_ending_time: string;
908
+ pool_migration_timestamp: number | null;
909
+ pool_type: string;
910
+ base_token: {
911
+ token_address: string;
912
+ token_name: string;
913
+ token_symbol: string;
914
+ token_image_public_url: string | null;
915
+ token_creator_address: string;
916
+ token_fee_receiver_address: string;
917
+ token_vesting_recipient_addresses: string[];
918
+ token_uri_data?: any;
919
+ };
920
+ }>;
921
+ graduation_pool: z.ZodObject<{
922
+ pool_current_price: z.ZodString;
923
+ pool_current_sqrt_price: z.ZodString;
924
+ pool_current_fdv: z.ZodString;
925
+ pool_current_liquidity: z.ZodString;
926
+ pool_current_tick: z.ZodNumber;
927
+ pool_current_market_cap: z.ZodString;
928
+ pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
929
+ pool_migration_timestamp: z.ZodNullable<z.ZodNumber>;
930
+ pool_type: z.ZodString;
931
+ base_token: z.ZodObject<{
932
+ token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
933
+ token_name: z.ZodString;
934
+ token_symbol: z.ZodString;
935
+ token_uri_data: z.ZodNullable<z.ZodAny>;
936
+ token_image_public_url: z.ZodNullable<z.ZodString>;
937
+ token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
938
+ token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
939
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
940
+ integrator_address: z.ZodString;
941
+ }, "strip", z.ZodTypeAny, {
942
+ token_address: `0x${string}`;
943
+ token_name: string;
944
+ token_symbol: string;
945
+ token_image_public_url: string | null;
946
+ token_creator_address: `0x${string}`;
947
+ token_fee_receiver_address: `0x${string}`;
948
+ token_vesting_recipient_addresses: `0x${string}`[];
949
+ integrator_address: string;
950
+ token_uri_data?: any;
951
+ }, {
952
+ token_address: string;
953
+ token_name: string;
954
+ token_symbol: string;
955
+ token_image_public_url: string | null;
956
+ token_creator_address: string;
957
+ token_fee_receiver_address: string;
958
+ token_vesting_recipient_addresses: string[];
959
+ integrator_address: string;
960
+ token_uri_data?: any;
961
+ }>;
962
+ }, "strip", z.ZodTypeAny, {
963
+ pool_current_price: string;
964
+ pool_current_sqrt_price: string;
965
+ pool_current_fdv: string;
966
+ pool_current_liquidity: string;
967
+ pool_current_tick: number;
968
+ pool_current_market_cap: string;
969
+ pool_address: `0x${string}`;
970
+ pool_migration_timestamp: number | null;
971
+ pool_type: string;
972
+ base_token: {
973
+ token_address: `0x${string}`;
974
+ token_name: string;
975
+ token_symbol: string;
976
+ token_image_public_url: string | null;
977
+ token_creator_address: `0x${string}`;
978
+ token_fee_receiver_address: `0x${string}`;
979
+ token_vesting_recipient_addresses: `0x${string}`[];
980
+ integrator_address: string;
981
+ token_uri_data?: any;
982
+ };
983
+ }, {
984
+ pool_current_price: string;
985
+ pool_current_sqrt_price: string;
986
+ pool_current_fdv: string;
987
+ pool_current_liquidity: string;
988
+ pool_current_tick: number;
989
+ pool_current_market_cap: string;
990
+ pool_address: string;
991
+ pool_migration_timestamp: number | null;
992
+ pool_type: string;
993
+ base_token: {
994
+ token_address: string;
995
+ token_name: string;
996
+ token_symbol: string;
997
+ token_image_public_url: string | null;
998
+ token_creator_address: string;
999
+ token_fee_receiver_address: string;
1000
+ token_vesting_recipient_addresses: string[];
1001
+ integrator_address: string;
1002
+ token_uri_data?: any;
1003
+ };
1004
+ }>;
1005
+ }, "strip", z.ZodTypeAny, {
1006
+ asset_address: `0x${string}`;
1007
+ asset_numeraire_address: `0x${string}`;
1008
+ asset_creation_timestamp: number;
1009
+ asset_migration_timestamp: number | null;
1010
+ auction_pool: {
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_id: string;
1026
+ pool_address: `0x${string}`;
1027
+ pool_config_starting_time: string;
1028
+ pool_config_ending_time: string;
1029
+ pool_migration_timestamp: number | null;
1030
+ pool_type: string;
1031
+ base_token: {
1032
+ token_address: `0x${string}`;
1033
+ token_name: string;
1034
+ token_symbol: string;
1035
+ token_image_public_url: string | null;
1036
+ token_creator_address: `0x${string}`;
1037
+ token_fee_receiver_address: `0x${string}`;
1038
+ token_vesting_recipient_addresses: `0x${string}`[];
1039
+ token_uri_data?: any;
1040
+ };
1041
+ };
1042
+ graduation_pool: {
1043
+ pool_current_price: string;
1044
+ pool_current_sqrt_price: string;
1045
+ pool_current_fdv: string;
1046
+ pool_current_liquidity: string;
1047
+ pool_current_tick: number;
1048
+ pool_current_market_cap: string;
1049
+ pool_address: `0x${string}`;
1050
+ pool_migration_timestamp: number | null;
1051
+ pool_type: string;
1052
+ base_token: {
1053
+ token_address: `0x${string}`;
1054
+ token_name: string;
1055
+ token_symbol: string;
1056
+ token_image_public_url: string | null;
1057
+ token_creator_address: `0x${string}`;
1058
+ token_fee_receiver_address: `0x${string}`;
1059
+ token_vesting_recipient_addresses: `0x${string}`[];
1060
+ integrator_address: string;
1061
+ token_uri_data?: any;
1062
+ };
1063
+ };
1064
+ }, {
1065
+ asset_address: string;
1066
+ asset_numeraire_address: string;
1067
+ asset_creation_timestamp: number;
1068
+ asset_migration_timestamp: number | null;
1069
+ auction_pool: {
1070
+ pool_current_price: string;
1071
+ pool_current_sqrt_price: string;
1072
+ pool_current_fdv: string;
1073
+ pool_current_liquidity: string;
1074
+ pool_current_tick: number;
1075
+ pool_last_epoch: number;
1076
+ pool_current_market_cap: string;
1077
+ pool_current_fees_accrued: string;
1078
+ pool_current_total_proceeds: string;
1079
+ pool_current_total_tokens_sold: string;
1080
+ pool_last_epoch_total_tokens_sold: string;
1081
+ pool_current_sale_progress_percentage: number;
1082
+ pool_config_max_proceeds: string;
1083
+ pool_config_min_proceeds: string;
1084
+ pool_id: string;
1085
+ pool_address: string;
1086
+ pool_config_starting_time: string;
1087
+ pool_config_ending_time: string;
1088
+ pool_migration_timestamp: number | null;
1089
+ pool_type: string;
1090
+ base_token: {
1091
+ token_address: string;
1092
+ token_name: string;
1093
+ token_symbol: string;
1094
+ token_image_public_url: string | null;
1095
+ token_creator_address: string;
1096
+ token_fee_receiver_address: string;
1097
+ token_vesting_recipient_addresses: string[];
1098
+ token_uri_data?: any;
1099
+ };
1100
+ };
1101
+ graduation_pool: {
1102
+ pool_current_price: string;
1103
+ pool_current_sqrt_price: string;
1104
+ pool_current_fdv: string;
1105
+ pool_current_liquidity: string;
1106
+ pool_current_tick: number;
1107
+ pool_current_market_cap: string;
1108
+ pool_address: string;
1109
+ pool_migration_timestamp: number | null;
1110
+ pool_type: string;
1111
+ base_token: {
1112
+ token_address: string;
1113
+ token_name: string;
1114
+ token_symbol: string;
1115
+ token_image_public_url: string | null;
1116
+ token_creator_address: string;
1117
+ token_fee_receiver_address: string;
1118
+ token_vesting_recipient_addresses: string[];
1119
+ integrator_address: string;
1120
+ token_uri_data?: any;
1121
+ };
1122
+ };
1123
+ }>, "many">;
1124
+ }, "strip", z.ZodTypeAny, {
1125
+ result: {
1126
+ asset_address: `0x${string}`;
1127
+ asset_numeraire_address: `0x${string}`;
1128
+ asset_creation_timestamp: number;
1129
+ asset_migration_timestamp: number | null;
1130
+ auction_pool: {
1131
+ pool_current_price: string;
1132
+ pool_current_sqrt_price: string;
1133
+ pool_current_fdv: string;
1134
+ pool_current_liquidity: string;
1135
+ pool_current_tick: number;
1136
+ pool_last_epoch: number;
1137
+ pool_current_market_cap: string;
1138
+ pool_current_fees_accrued: string;
1139
+ pool_current_total_proceeds: string;
1140
+ pool_current_total_tokens_sold: string;
1141
+ pool_last_epoch_total_tokens_sold: string;
1142
+ pool_current_sale_progress_percentage: number;
1143
+ pool_config_max_proceeds: string;
1144
+ pool_config_min_proceeds: string;
1145
+ pool_id: string;
1146
+ pool_address: `0x${string}`;
1147
+ pool_config_starting_time: string;
1148
+ pool_config_ending_time: string;
1149
+ pool_migration_timestamp: number | null;
1150
+ pool_type: string;
1151
+ base_token: {
1152
+ token_address: `0x${string}`;
1153
+ token_name: string;
1154
+ token_symbol: string;
1155
+ token_image_public_url: string | null;
1156
+ token_creator_address: `0x${string}`;
1157
+ token_fee_receiver_address: `0x${string}`;
1158
+ token_vesting_recipient_addresses: `0x${string}`[];
1159
+ token_uri_data?: any;
1160
+ };
1161
+ };
1162
+ graduation_pool: {
1163
+ pool_current_price: string;
1164
+ pool_current_sqrt_price: string;
1165
+ pool_current_fdv: string;
1166
+ pool_current_liquidity: string;
1167
+ pool_current_tick: number;
1168
+ pool_current_market_cap: string;
1169
+ pool_address: `0x${string}`;
1170
+ pool_migration_timestamp: number | null;
1171
+ pool_type: string;
1172
+ base_token: {
1173
+ token_address: `0x${string}`;
1174
+ token_name: string;
1175
+ token_symbol: string;
1176
+ token_image_public_url: string | null;
1177
+ token_creator_address: `0x${string}`;
1178
+ token_fee_receiver_address: `0x${string}`;
1179
+ token_vesting_recipient_addresses: `0x${string}`[];
1180
+ integrator_address: string;
1181
+ token_uri_data?: any;
1182
+ };
1183
+ };
1184
+ }[];
1185
+ }, {
1186
+ result: {
1187
+ asset_address: string;
1188
+ asset_numeraire_address: string;
1189
+ asset_creation_timestamp: number;
1190
+ asset_migration_timestamp: number | null;
1191
+ auction_pool: {
1192
+ pool_current_price: string;
1193
+ pool_current_sqrt_price: string;
1194
+ pool_current_fdv: string;
1195
+ pool_current_liquidity: string;
1196
+ pool_current_tick: number;
1197
+ pool_last_epoch: number;
1198
+ pool_current_market_cap: string;
1199
+ pool_current_fees_accrued: string;
1200
+ pool_current_total_proceeds: string;
1201
+ pool_current_total_tokens_sold: string;
1202
+ pool_last_epoch_total_tokens_sold: string;
1203
+ pool_current_sale_progress_percentage: number;
1204
+ pool_config_max_proceeds: string;
1205
+ pool_config_min_proceeds: string;
1206
+ pool_id: string;
1207
+ pool_address: string;
1208
+ pool_config_starting_time: string;
1209
+ pool_config_ending_time: string;
1210
+ pool_migration_timestamp: number | null;
1211
+ pool_type: string;
1212
+ base_token: {
1213
+ token_address: string;
1214
+ token_name: string;
1215
+ token_symbol: string;
1216
+ token_image_public_url: string | null;
1217
+ token_creator_address: string;
1218
+ token_fee_receiver_address: string;
1219
+ token_vesting_recipient_addresses: string[];
1220
+ token_uri_data?: any;
1221
+ };
1222
+ };
1223
+ graduation_pool: {
1224
+ pool_current_price: string;
1225
+ pool_current_sqrt_price: string;
1226
+ pool_current_fdv: string;
1227
+ pool_current_liquidity: string;
1228
+ pool_current_tick: number;
1229
+ pool_current_market_cap: string;
1230
+ pool_address: string;
1231
+ pool_migration_timestamp: number | null;
1232
+ pool_type: string;
1233
+ base_token: {
1234
+ token_address: string;
1235
+ token_name: string;
1236
+ token_symbol: string;
1237
+ token_image_public_url: string | null;
1238
+ token_creator_address: string;
1239
+ token_fee_receiver_address: string;
1240
+ token_vesting_recipient_addresses: string[];
1241
+ integrator_address: string;
1242
+ token_uri_data?: any;
1243
+ };
1244
+ };
1245
+ }[];
1246
+ }>;
1247
+ };
1248
+ };
1249
+ getAsset: {
1250
+ pathParams: z.ZodObject<{
1251
+ assetAddress: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1252
+ }, "strip", z.ZodTypeAny, {
1253
+ assetAddress: `0x${string}`;
1254
+ }, {
1255
+ assetAddress: string;
1256
+ }>;
1257
+ description: "Get an asset by its address";
1258
+ method: "GET";
1259
+ path: "/assets/:assetAddress";
1260
+ responses: {
1261
+ 200: z.ZodObject<{
1262
+ result: z.ZodObject<{
1263
+ asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1264
+ asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1265
+ asset_creation_timestamp: z.ZodNumber;
1266
+ asset_migration_timestamp: z.ZodNullable<z.ZodNumber>;
1267
+ auction_pool: z.ZodObject<{
1268
+ pool_current_price: z.ZodString;
1269
+ pool_current_sqrt_price: z.ZodString;
1270
+ pool_current_fdv: z.ZodString;
1271
+ pool_current_liquidity: z.ZodString;
1272
+ pool_current_tick: z.ZodNumber;
1273
+ pool_last_epoch: z.ZodNumber;
1274
+ pool_current_market_cap: z.ZodString;
1275
+ pool_current_fees_accrued: z.ZodString;
1276
+ pool_current_total_proceeds: z.ZodString;
1277
+ pool_current_total_tokens_sold: z.ZodString;
1278
+ pool_last_epoch_total_tokens_sold: z.ZodString;
1279
+ pool_current_sale_progress_percentage: z.ZodNumber;
1280
+ pool_config_max_proceeds: z.ZodString;
1281
+ pool_config_min_proceeds: z.ZodString;
1282
+ pool_id: z.ZodString;
1283
+ pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1284
+ pool_config_starting_time: z.ZodString;
1285
+ pool_config_ending_time: z.ZodString;
1286
+ pool_migration_timestamp: z.ZodNullable<z.ZodNumber>;
1287
+ pool_type: z.ZodString;
1288
+ base_token: z.ZodObject<{
1289
+ token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1290
+ token_name: z.ZodString;
1291
+ token_symbol: z.ZodString;
1292
+ token_uri_data: z.ZodNullable<z.ZodAny>;
1293
+ token_image_public_url: z.ZodNullable<z.ZodString>;
1294
+ token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1295
+ token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1296
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
1297
+ }, "strip", z.ZodTypeAny, {
1298
+ token_address: `0x${string}`;
1299
+ token_name: string;
1300
+ token_symbol: string;
1301
+ token_image_public_url: string | null;
1302
+ token_creator_address: `0x${string}`;
1303
+ token_fee_receiver_address: `0x${string}`;
1304
+ token_vesting_recipient_addresses: `0x${string}`[];
1305
+ token_uri_data?: any;
1306
+ }, {
1307
+ token_address: string;
1308
+ token_name: string;
1309
+ token_symbol: string;
1310
+ token_image_public_url: string | null;
1311
+ token_creator_address: string;
1312
+ token_fee_receiver_address: string;
1313
+ token_vesting_recipient_addresses: string[];
1314
+ token_uri_data?: any;
1315
+ }>;
1316
+ }, "strip", z.ZodTypeAny, {
1317
+ pool_current_price: string;
1318
+ pool_current_sqrt_price: string;
1319
+ pool_current_fdv: string;
1320
+ pool_current_liquidity: string;
1321
+ pool_current_tick: number;
1322
+ pool_last_epoch: number;
1323
+ pool_current_market_cap: string;
1324
+ pool_current_fees_accrued: string;
1325
+ pool_current_total_proceeds: string;
1326
+ pool_current_total_tokens_sold: string;
1327
+ pool_last_epoch_total_tokens_sold: string;
1328
+ pool_current_sale_progress_percentage: number;
1329
+ pool_config_max_proceeds: string;
1330
+ pool_config_min_proceeds: string;
1331
+ pool_id: string;
1332
+ pool_address: `0x${string}`;
1333
+ pool_config_starting_time: string;
1334
+ pool_config_ending_time: string;
1335
+ pool_migration_timestamp: number | null;
1336
+ pool_type: string;
1337
+ base_token: {
1338
+ token_address: `0x${string}`;
1339
+ token_name: string;
1340
+ token_symbol: string;
1341
+ token_image_public_url: string | null;
1342
+ token_creator_address: `0x${string}`;
1343
+ token_fee_receiver_address: `0x${string}`;
1344
+ token_vesting_recipient_addresses: `0x${string}`[];
1345
+ token_uri_data?: any;
1346
+ };
1347
+ }, {
1348
+ pool_current_price: string;
1349
+ pool_current_sqrt_price: string;
1350
+ pool_current_fdv: string;
1351
+ pool_current_liquidity: string;
1352
+ pool_current_tick: number;
1353
+ pool_last_epoch: number;
1354
+ pool_current_market_cap: string;
1355
+ pool_current_fees_accrued: string;
1356
+ pool_current_total_proceeds: string;
1357
+ pool_current_total_tokens_sold: string;
1358
+ pool_last_epoch_total_tokens_sold: string;
1359
+ pool_current_sale_progress_percentage: number;
1360
+ pool_config_max_proceeds: string;
1361
+ pool_config_min_proceeds: string;
1362
+ pool_id: string;
1363
+ pool_address: string;
1364
+ pool_config_starting_time: string;
1365
+ pool_config_ending_time: string;
1366
+ pool_migration_timestamp: number | null;
1367
+ pool_type: string;
1368
+ base_token: {
1369
+ token_address: string;
1370
+ token_name: string;
1371
+ token_symbol: string;
1372
+ token_image_public_url: string | null;
1373
+ token_creator_address: string;
1374
+ token_fee_receiver_address: string;
1375
+ token_vesting_recipient_addresses: string[];
1376
+ token_uri_data?: any;
1377
+ };
1378
+ }>;
1379
+ graduation_pool: z.ZodObject<{
1380
+ pool_current_price: z.ZodString;
1381
+ pool_current_sqrt_price: z.ZodString;
1382
+ pool_current_fdv: z.ZodString;
1383
+ pool_current_liquidity: z.ZodString;
1384
+ pool_current_tick: z.ZodNumber;
1385
+ pool_current_market_cap: z.ZodString;
1386
+ pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1387
+ pool_migration_timestamp: z.ZodNullable<z.ZodNumber>;
1388
+ pool_type: z.ZodString;
1389
+ base_token: z.ZodObject<{
1390
+ token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1391
+ token_name: z.ZodString;
1392
+ token_symbol: z.ZodString;
1393
+ token_uri_data: z.ZodNullable<z.ZodAny>;
1394
+ token_image_public_url: z.ZodNullable<z.ZodString>;
1395
+ token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1396
+ token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1397
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
1398
+ integrator_address: z.ZodString;
1399
+ }, "strip", z.ZodTypeAny, {
1400
+ token_address: `0x${string}`;
1401
+ token_name: string;
1402
+ token_symbol: string;
1403
+ token_image_public_url: string | null;
1404
+ token_creator_address: `0x${string}`;
1405
+ token_fee_receiver_address: `0x${string}`;
1406
+ token_vesting_recipient_addresses: `0x${string}`[];
1407
+ integrator_address: string;
1408
+ token_uri_data?: any;
1409
+ }, {
1410
+ token_address: string;
1411
+ token_name: string;
1412
+ token_symbol: string;
1413
+ token_image_public_url: string | null;
1414
+ token_creator_address: string;
1415
+ token_fee_receiver_address: string;
1416
+ token_vesting_recipient_addresses: string[];
1417
+ integrator_address: string;
1418
+ token_uri_data?: any;
1419
+ }>;
1420
+ }, "strip", z.ZodTypeAny, {
1421
+ pool_current_price: string;
1422
+ pool_current_sqrt_price: string;
1423
+ pool_current_fdv: string;
1424
+ pool_current_liquidity: string;
1425
+ pool_current_tick: number;
1426
+ pool_current_market_cap: string;
1427
+ pool_address: `0x${string}`;
1428
+ pool_migration_timestamp: number | null;
1429
+ pool_type: string;
1430
+ base_token: {
1431
+ token_address: `0x${string}`;
1432
+ token_name: string;
1433
+ token_symbol: string;
1434
+ token_image_public_url: string | null;
1435
+ token_creator_address: `0x${string}`;
1436
+ token_fee_receiver_address: `0x${string}`;
1437
+ token_vesting_recipient_addresses: `0x${string}`[];
1438
+ integrator_address: string;
1439
+ token_uri_data?: any;
1440
+ };
1441
+ }, {
1442
+ pool_current_price: string;
1443
+ pool_current_sqrt_price: string;
1444
+ pool_current_fdv: string;
1445
+ pool_current_liquidity: string;
1446
+ pool_current_tick: number;
1447
+ pool_current_market_cap: string;
1448
+ pool_address: string;
1449
+ pool_migration_timestamp: number | null;
1450
+ pool_type: string;
1451
+ base_token: {
1452
+ token_address: string;
1453
+ token_name: string;
1454
+ token_symbol: string;
1455
+ token_image_public_url: string | null;
1456
+ token_creator_address: string;
1457
+ token_fee_receiver_address: string;
1458
+ token_vesting_recipient_addresses: string[];
1459
+ integrator_address: string;
1460
+ token_uri_data?: any;
1461
+ };
1462
+ }>;
1463
+ }, "strip", z.ZodTypeAny, {
1464
+ asset_address: `0x${string}`;
1465
+ asset_numeraire_address: `0x${string}`;
1466
+ asset_creation_timestamp: number;
1467
+ asset_migration_timestamp: number | null;
1468
+ auction_pool: {
1469
+ pool_current_price: string;
1470
+ pool_current_sqrt_price: string;
1471
+ pool_current_fdv: string;
1472
+ pool_current_liquidity: string;
1473
+ pool_current_tick: number;
1474
+ pool_last_epoch: number;
1475
+ pool_current_market_cap: string;
1476
+ pool_current_fees_accrued: string;
1477
+ pool_current_total_proceeds: string;
1478
+ pool_current_total_tokens_sold: string;
1479
+ pool_last_epoch_total_tokens_sold: string;
1480
+ pool_current_sale_progress_percentage: number;
1481
+ pool_config_max_proceeds: string;
1482
+ pool_config_min_proceeds: string;
1483
+ pool_id: string;
1484
+ pool_address: `0x${string}`;
1485
+ pool_config_starting_time: string;
1486
+ pool_config_ending_time: string;
1487
+ pool_migration_timestamp: number | null;
1488
+ pool_type: string;
1489
+ base_token: {
1490
+ token_address: `0x${string}`;
1491
+ token_name: string;
1492
+ token_symbol: string;
1493
+ token_image_public_url: string | null;
1494
+ token_creator_address: `0x${string}`;
1495
+ token_fee_receiver_address: `0x${string}`;
1496
+ token_vesting_recipient_addresses: `0x${string}`[];
1497
+ token_uri_data?: any;
1498
+ };
1499
+ };
1500
+ graduation_pool: {
1501
+ pool_current_price: string;
1502
+ pool_current_sqrt_price: string;
1503
+ pool_current_fdv: string;
1504
+ pool_current_liquidity: string;
1505
+ pool_current_tick: number;
1506
+ pool_current_market_cap: string;
1507
+ pool_address: `0x${string}`;
1508
+ pool_migration_timestamp: number | null;
1509
+ pool_type: string;
1510
+ base_token: {
1511
+ token_address: `0x${string}`;
1512
+ token_name: string;
1513
+ token_symbol: string;
1514
+ token_image_public_url: string | null;
1515
+ token_creator_address: `0x${string}`;
1516
+ token_fee_receiver_address: `0x${string}`;
1517
+ token_vesting_recipient_addresses: `0x${string}`[];
1518
+ integrator_address: string;
1519
+ token_uri_data?: any;
1520
+ };
1521
+ };
1522
+ }, {
1523
+ asset_address: string;
1524
+ asset_numeraire_address: string;
1525
+ asset_creation_timestamp: number;
1526
+ asset_migration_timestamp: number | null;
1527
+ auction_pool: {
1528
+ pool_current_price: string;
1529
+ pool_current_sqrt_price: string;
1530
+ pool_current_fdv: string;
1531
+ pool_current_liquidity: string;
1532
+ pool_current_tick: number;
1533
+ pool_last_epoch: number;
1534
+ pool_current_market_cap: string;
1535
+ pool_current_fees_accrued: string;
1536
+ pool_current_total_proceeds: string;
1537
+ pool_current_total_tokens_sold: string;
1538
+ pool_last_epoch_total_tokens_sold: string;
1539
+ pool_current_sale_progress_percentage: number;
1540
+ pool_config_max_proceeds: string;
1541
+ pool_config_min_proceeds: string;
1542
+ pool_id: string;
1543
+ pool_address: string;
1544
+ pool_config_starting_time: string;
1545
+ pool_config_ending_time: string;
1546
+ pool_migration_timestamp: number | null;
1547
+ pool_type: string;
1548
+ base_token: {
1549
+ token_address: string;
1550
+ token_name: string;
1551
+ token_symbol: string;
1552
+ token_image_public_url: string | null;
1553
+ token_creator_address: string;
1554
+ token_fee_receiver_address: string;
1555
+ token_vesting_recipient_addresses: string[];
1556
+ token_uri_data?: any;
1557
+ };
1558
+ };
1559
+ graduation_pool: {
1560
+ pool_current_price: string;
1561
+ pool_current_sqrt_price: string;
1562
+ pool_current_fdv: string;
1563
+ pool_current_liquidity: string;
1564
+ pool_current_tick: number;
1565
+ pool_current_market_cap: string;
1566
+ pool_address: string;
1567
+ pool_migration_timestamp: number | null;
1568
+ pool_type: string;
1569
+ base_token: {
1570
+ token_address: string;
1571
+ token_name: string;
1572
+ token_symbol: string;
1573
+ token_image_public_url: string | null;
1574
+ token_creator_address: string;
1575
+ token_fee_receiver_address: string;
1576
+ token_vesting_recipient_addresses: string[];
1577
+ integrator_address: string;
1578
+ token_uri_data?: any;
1579
+ };
1580
+ };
1581
+ }>;
1582
+ }, "strip", z.ZodTypeAny, {
1583
+ result: {
1584
+ asset_address: `0x${string}`;
1585
+ asset_numeraire_address: `0x${string}`;
1586
+ asset_creation_timestamp: number;
1587
+ asset_migration_timestamp: number | null;
1588
+ auction_pool: {
1589
+ pool_current_price: string;
1590
+ pool_current_sqrt_price: string;
1591
+ pool_current_fdv: string;
1592
+ pool_current_liquidity: string;
1593
+ pool_current_tick: number;
1594
+ pool_last_epoch: number;
1595
+ pool_current_market_cap: string;
1596
+ pool_current_fees_accrued: string;
1597
+ pool_current_total_proceeds: string;
1598
+ pool_current_total_tokens_sold: string;
1599
+ pool_last_epoch_total_tokens_sold: string;
1600
+ pool_current_sale_progress_percentage: number;
1601
+ pool_config_max_proceeds: string;
1602
+ pool_config_min_proceeds: string;
1603
+ pool_id: string;
1604
+ pool_address: `0x${string}`;
1605
+ pool_config_starting_time: string;
1606
+ pool_config_ending_time: string;
1607
+ pool_migration_timestamp: number | null;
1608
+ pool_type: string;
1609
+ base_token: {
1610
+ token_address: `0x${string}`;
1611
+ token_name: string;
1612
+ token_symbol: string;
1613
+ token_image_public_url: string | null;
1614
+ token_creator_address: `0x${string}`;
1615
+ token_fee_receiver_address: `0x${string}`;
1616
+ token_vesting_recipient_addresses: `0x${string}`[];
1617
+ token_uri_data?: any;
1618
+ };
1619
+ };
1620
+ graduation_pool: {
1621
+ pool_current_price: string;
1622
+ pool_current_sqrt_price: string;
1623
+ pool_current_fdv: string;
1624
+ pool_current_liquidity: string;
1625
+ pool_current_tick: number;
1626
+ pool_current_market_cap: string;
1627
+ pool_address: `0x${string}`;
1628
+ pool_migration_timestamp: number | null;
1629
+ pool_type: string;
1630
+ base_token: {
1631
+ token_address: `0x${string}`;
1632
+ token_name: string;
1633
+ token_symbol: string;
1634
+ token_image_public_url: string | null;
1635
+ token_creator_address: `0x${string}`;
1636
+ token_fee_receiver_address: `0x${string}`;
1637
+ token_vesting_recipient_addresses: `0x${string}`[];
1638
+ integrator_address: string;
1639
+ token_uri_data?: any;
1640
+ };
1641
+ };
1642
+ };
1643
+ }, {
1644
+ result: {
1645
+ asset_address: string;
1646
+ asset_numeraire_address: string;
1647
+ asset_creation_timestamp: number;
1648
+ asset_migration_timestamp: number | null;
1649
+ auction_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_last_epoch: number;
1656
+ pool_current_market_cap: string;
1657
+ pool_current_fees_accrued: string;
1658
+ pool_current_total_proceeds: string;
1659
+ pool_current_total_tokens_sold: string;
1660
+ pool_last_epoch_total_tokens_sold: string;
1661
+ pool_current_sale_progress_percentage: number;
1662
+ pool_config_max_proceeds: string;
1663
+ pool_config_min_proceeds: string;
1664
+ pool_id: string;
1665
+ pool_address: string;
1666
+ pool_config_starting_time: string;
1667
+ pool_config_ending_time: string;
1668
+ pool_migration_timestamp: number | null;
1669
+ pool_type: string;
1670
+ base_token: {
1671
+ token_address: string;
1672
+ token_name: string;
1673
+ token_symbol: string;
1674
+ token_image_public_url: string | null;
1675
+ token_creator_address: string;
1676
+ token_fee_receiver_address: string;
1677
+ token_vesting_recipient_addresses: string[];
1678
+ token_uri_data?: any;
1679
+ };
1680
+ };
1681
+ graduation_pool: {
1682
+ pool_current_price: string;
1683
+ pool_current_sqrt_price: string;
1684
+ pool_current_fdv: string;
1685
+ pool_current_liquidity: string;
1686
+ pool_current_tick: number;
1687
+ pool_current_market_cap: string;
1688
+ pool_address: string;
1689
+ pool_migration_timestamp: number | null;
1690
+ pool_type: string;
1691
+ base_token: {
1692
+ token_address: string;
1693
+ token_name: string;
1694
+ token_symbol: string;
1695
+ token_image_public_url: string | null;
1696
+ token_creator_address: string;
1697
+ token_fee_receiver_address: string;
1698
+ token_vesting_recipient_addresses: string[];
1699
+ integrator_address: string;
1700
+ token_uri_data?: any;
1701
+ };
1702
+ };
1703
+ };
1704
+ }>;
1705
+ };
1706
+ };
1707
+ };
1708
+ export { assetContract, AssetResponse };