@longdotxyz/shared 0.0.74 → 0.0.76

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