@longdotxyz/shared 0.0.23 → 0.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,1389 @@
1
1
  export declare const rootContract: {
2
+ assets: {
3
+ listAssets: {
4
+ query: import("zod").ZodObject<{
5
+ status: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").AssetStatus>>>;
6
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
7
+ offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
8
+ }, "strip", import("zod").ZodTypeAny, {
9
+ status: import("..").AssetStatus;
10
+ limit: number;
11
+ offset: number;
12
+ }, {
13
+ status?: import("..").AssetStatus | undefined;
14
+ limit?: number | undefined;
15
+ offset?: number | undefined;
16
+ }>;
17
+ description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
18
+ method: "GET";
19
+ path: "/assets/";
20
+ responses: {
21
+ 200: import("zod").ZodObject<{
22
+ result: import("zod").ZodArray<import("zod").ZodObject<{
23
+ asset_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
24
+ asset_numeraire_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
25
+ asset_creation_timestamp: import("zod").ZodNumber;
26
+ asset_migration_timestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
27
+ auction_pool: import("zod").ZodObject<{
28
+ pool_current_price: import("zod").ZodString;
29
+ pool_current_sqrt_price: import("zod").ZodString;
30
+ pool_current_fdv: import("zod").ZodString;
31
+ pool_current_liquidity: import("zod").ZodString;
32
+ pool_current_tick: import("zod").ZodNumber;
33
+ pool_last_epoch: import("zod").ZodNumber;
34
+ pool_current_market_cap: import("zod").ZodString;
35
+ pool_current_fees_accrued: import("zod").ZodString;
36
+ pool_current_total_proceeds: import("zod").ZodString;
37
+ pool_current_total_tokens_sold: import("zod").ZodString;
38
+ pool_last_epoch_total_tokens_sold: import("zod").ZodString;
39
+ pool_current_sale_progress_percentage: import("zod").ZodNumber;
40
+ pool_config_max_proceeds: import("zod").ZodString;
41
+ pool_config_min_proceeds: import("zod").ZodString;
42
+ pool_id: import("zod").ZodString;
43
+ pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
44
+ pool_config_starting_time: import("zod").ZodString;
45
+ pool_config_ending_time: import("zod").ZodString;
46
+ pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
47
+ pool_type: import("zod").ZodString;
48
+ base_token: import("zod").ZodObject<{
49
+ token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
50
+ token_name: import("zod").ZodString;
51
+ token_symbol: import("zod").ZodString;
52
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
53
+ token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
54
+ token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
55
+ token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
56
+ token_vesting_recipient_addresses: import("zod").ZodArray<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>, "many">;
57
+ }, "strip", import("zod").ZodTypeAny, {
58
+ token_address: `0x${string}`;
59
+ token_name: string;
60
+ token_symbol: string;
61
+ token_image_public_url: string | null;
62
+ token_creator_address: `0x${string}`;
63
+ token_fee_receiver_address: `0x${string}`;
64
+ token_vesting_recipient_addresses: `0x${string}`[];
65
+ token_uri_data?: any;
66
+ }, {
67
+ token_address: string;
68
+ token_name: string;
69
+ token_symbol: string;
70
+ token_image_public_url: string | null;
71
+ token_creator_address: string;
72
+ token_fee_receiver_address: string;
73
+ token_vesting_recipient_addresses: string[];
74
+ token_uri_data?: any;
75
+ }>;
76
+ }, "strip", import("zod").ZodTypeAny, {
77
+ pool_current_price: string;
78
+ pool_current_sqrt_price: string;
79
+ pool_current_fdv: string;
80
+ pool_current_liquidity: string;
81
+ pool_current_tick: number;
82
+ pool_last_epoch: number;
83
+ pool_current_market_cap: string;
84
+ pool_current_fees_accrued: string;
85
+ pool_current_total_proceeds: string;
86
+ pool_current_total_tokens_sold: string;
87
+ pool_last_epoch_total_tokens_sold: string;
88
+ pool_current_sale_progress_percentage: number;
89
+ pool_config_max_proceeds: string;
90
+ pool_config_min_proceeds: string;
91
+ pool_id: string;
92
+ pool_address: `0x${string}`;
93
+ pool_config_starting_time: string;
94
+ pool_config_ending_time: string;
95
+ pool_migration_timestamp: number | null;
96
+ pool_type: string;
97
+ base_token: {
98
+ token_address: `0x${string}`;
99
+ token_name: string;
100
+ token_symbol: string;
101
+ token_image_public_url: string | null;
102
+ token_creator_address: `0x${string}`;
103
+ token_fee_receiver_address: `0x${string}`;
104
+ token_vesting_recipient_addresses: `0x${string}`[];
105
+ token_uri_data?: any;
106
+ };
107
+ }, {
108
+ pool_current_price: string;
109
+ pool_current_sqrt_price: string;
110
+ pool_current_fdv: string;
111
+ pool_current_liquidity: string;
112
+ pool_current_tick: number;
113
+ pool_last_epoch: number;
114
+ pool_current_market_cap: string;
115
+ pool_current_fees_accrued: string;
116
+ pool_current_total_proceeds: string;
117
+ pool_current_total_tokens_sold: string;
118
+ pool_last_epoch_total_tokens_sold: string;
119
+ pool_current_sale_progress_percentage: number;
120
+ pool_config_max_proceeds: string;
121
+ pool_config_min_proceeds: string;
122
+ pool_id: string;
123
+ pool_address: string;
124
+ pool_config_starting_time: string;
125
+ pool_config_ending_time: string;
126
+ pool_migration_timestamp: number | null;
127
+ pool_type: string;
128
+ base_token: {
129
+ token_address: string;
130
+ token_name: string;
131
+ token_symbol: string;
132
+ token_image_public_url: string | null;
133
+ token_creator_address: string;
134
+ token_fee_receiver_address: string;
135
+ token_vesting_recipient_addresses: string[];
136
+ token_uri_data?: any;
137
+ };
138
+ }>;
139
+ graduation_pool: import("zod").ZodObject<{
140
+ pool_current_price: import("zod").ZodString;
141
+ pool_current_sqrt_price: import("zod").ZodString;
142
+ pool_current_fdv: import("zod").ZodString;
143
+ pool_current_liquidity: import("zod").ZodString;
144
+ pool_current_tick: import("zod").ZodNumber;
145
+ pool_current_market_cap: import("zod").ZodString;
146
+ pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
147
+ pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
148
+ pool_type: import("zod").ZodString;
149
+ base_token: import("zod").ZodObject<{
150
+ token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
151
+ token_name: import("zod").ZodString;
152
+ token_symbol: import("zod").ZodString;
153
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
154
+ token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
155
+ token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
156
+ token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
157
+ token_vesting_recipient_addresses: import("zod").ZodArray<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>, "many">;
158
+ integrator_address: import("zod").ZodString;
159
+ }, "strip", import("zod").ZodTypeAny, {
160
+ token_address: `0x${string}`;
161
+ token_name: string;
162
+ token_symbol: string;
163
+ token_image_public_url: string | null;
164
+ token_creator_address: `0x${string}`;
165
+ token_fee_receiver_address: `0x${string}`;
166
+ token_vesting_recipient_addresses: `0x${string}`[];
167
+ integrator_address: string;
168
+ token_uri_data?: any;
169
+ }, {
170
+ token_address: string;
171
+ token_name: string;
172
+ token_symbol: string;
173
+ token_image_public_url: string | null;
174
+ token_creator_address: string;
175
+ token_fee_receiver_address: string;
176
+ token_vesting_recipient_addresses: string[];
177
+ integrator_address: string;
178
+ token_uri_data?: any;
179
+ }>;
180
+ }, "strip", import("zod").ZodTypeAny, {
181
+ pool_current_price: string;
182
+ pool_current_sqrt_price: string;
183
+ pool_current_fdv: string;
184
+ pool_current_liquidity: string;
185
+ pool_current_tick: number;
186
+ pool_current_market_cap: string;
187
+ pool_address: `0x${string}`;
188
+ pool_migration_timestamp: number | null;
189
+ pool_type: string;
190
+ base_token: {
191
+ token_address: `0x${string}`;
192
+ token_name: string;
193
+ token_symbol: string;
194
+ token_image_public_url: string | null;
195
+ token_creator_address: `0x${string}`;
196
+ token_fee_receiver_address: `0x${string}`;
197
+ token_vesting_recipient_addresses: `0x${string}`[];
198
+ integrator_address: string;
199
+ token_uri_data?: any;
200
+ };
201
+ }, {
202
+ pool_current_price: string;
203
+ pool_current_sqrt_price: string;
204
+ pool_current_fdv: string;
205
+ pool_current_liquidity: string;
206
+ pool_current_tick: number;
207
+ pool_current_market_cap: string;
208
+ pool_address: string;
209
+ pool_migration_timestamp: number | null;
210
+ pool_type: string;
211
+ base_token: {
212
+ token_address: string;
213
+ token_name: string;
214
+ token_symbol: string;
215
+ token_image_public_url: string | null;
216
+ token_creator_address: string;
217
+ token_fee_receiver_address: string;
218
+ token_vesting_recipient_addresses: string[];
219
+ integrator_address: string;
220
+ token_uri_data?: any;
221
+ };
222
+ }>;
223
+ }, "strip", import("zod").ZodTypeAny, {
224
+ asset_address: `0x${string}`;
225
+ asset_numeraire_address: `0x${string}`;
226
+ asset_creation_timestamp: number;
227
+ asset_migration_timestamp: number | null;
228
+ auction_pool: {
229
+ pool_current_price: string;
230
+ pool_current_sqrt_price: string;
231
+ pool_current_fdv: string;
232
+ pool_current_liquidity: string;
233
+ pool_current_tick: number;
234
+ pool_last_epoch: number;
235
+ pool_current_market_cap: string;
236
+ pool_current_fees_accrued: string;
237
+ pool_current_total_proceeds: string;
238
+ pool_current_total_tokens_sold: string;
239
+ pool_last_epoch_total_tokens_sold: string;
240
+ pool_current_sale_progress_percentage: number;
241
+ pool_config_max_proceeds: string;
242
+ pool_config_min_proceeds: string;
243
+ pool_id: string;
244
+ pool_address: `0x${string}`;
245
+ pool_config_starting_time: string;
246
+ pool_config_ending_time: string;
247
+ pool_migration_timestamp: number | null;
248
+ pool_type: string;
249
+ base_token: {
250
+ token_address: `0x${string}`;
251
+ token_name: string;
252
+ token_symbol: string;
253
+ token_image_public_url: string | null;
254
+ token_creator_address: `0x${string}`;
255
+ token_fee_receiver_address: `0x${string}`;
256
+ token_vesting_recipient_addresses: `0x${string}`[];
257
+ token_uri_data?: any;
258
+ };
259
+ };
260
+ graduation_pool: {
261
+ pool_current_price: string;
262
+ pool_current_sqrt_price: string;
263
+ pool_current_fdv: string;
264
+ pool_current_liquidity: string;
265
+ pool_current_tick: number;
266
+ pool_current_market_cap: string;
267
+ pool_address: `0x${string}`;
268
+ pool_migration_timestamp: number | null;
269
+ pool_type: string;
270
+ base_token: {
271
+ token_address: `0x${string}`;
272
+ token_name: string;
273
+ token_symbol: string;
274
+ token_image_public_url: string | null;
275
+ token_creator_address: `0x${string}`;
276
+ token_fee_receiver_address: `0x${string}`;
277
+ token_vesting_recipient_addresses: `0x${string}`[];
278
+ integrator_address: string;
279
+ token_uri_data?: any;
280
+ };
281
+ };
282
+ }, {
283
+ asset_address: string;
284
+ asset_numeraire_address: string;
285
+ asset_creation_timestamp: number;
286
+ asset_migration_timestamp: number | null;
287
+ auction_pool: {
288
+ pool_current_price: string;
289
+ pool_current_sqrt_price: string;
290
+ pool_current_fdv: string;
291
+ pool_current_liquidity: string;
292
+ pool_current_tick: number;
293
+ pool_last_epoch: number;
294
+ pool_current_market_cap: string;
295
+ pool_current_fees_accrued: string;
296
+ pool_current_total_proceeds: string;
297
+ pool_current_total_tokens_sold: string;
298
+ pool_last_epoch_total_tokens_sold: string;
299
+ pool_current_sale_progress_percentage: number;
300
+ pool_config_max_proceeds: string;
301
+ pool_config_min_proceeds: string;
302
+ pool_id: string;
303
+ pool_address: string;
304
+ pool_config_starting_time: string;
305
+ pool_config_ending_time: string;
306
+ pool_migration_timestamp: number | null;
307
+ pool_type: string;
308
+ base_token: {
309
+ token_address: string;
310
+ token_name: string;
311
+ token_symbol: string;
312
+ token_image_public_url: string | null;
313
+ token_creator_address: string;
314
+ token_fee_receiver_address: string;
315
+ token_vesting_recipient_addresses: string[];
316
+ token_uri_data?: any;
317
+ };
318
+ };
319
+ graduation_pool: {
320
+ pool_current_price: string;
321
+ pool_current_sqrt_price: string;
322
+ pool_current_fdv: string;
323
+ pool_current_liquidity: string;
324
+ pool_current_tick: number;
325
+ pool_current_market_cap: string;
326
+ pool_address: string;
327
+ pool_migration_timestamp: number | null;
328
+ pool_type: string;
329
+ base_token: {
330
+ token_address: string;
331
+ token_name: string;
332
+ token_symbol: string;
333
+ token_image_public_url: string | null;
334
+ token_creator_address: string;
335
+ token_fee_receiver_address: string;
336
+ token_vesting_recipient_addresses: string[];
337
+ integrator_address: string;
338
+ token_uri_data?: any;
339
+ };
340
+ };
341
+ }>, "many">;
342
+ }, "strip", import("zod").ZodTypeAny, {
343
+ result: {
344
+ asset_address: `0x${string}`;
345
+ asset_numeraire_address: `0x${string}`;
346
+ asset_creation_timestamp: number;
347
+ asset_migration_timestamp: number | null;
348
+ auction_pool: {
349
+ pool_current_price: string;
350
+ pool_current_sqrt_price: string;
351
+ pool_current_fdv: string;
352
+ pool_current_liquidity: string;
353
+ pool_current_tick: number;
354
+ pool_last_epoch: number;
355
+ pool_current_market_cap: string;
356
+ pool_current_fees_accrued: string;
357
+ pool_current_total_proceeds: string;
358
+ pool_current_total_tokens_sold: string;
359
+ pool_last_epoch_total_tokens_sold: string;
360
+ pool_current_sale_progress_percentage: number;
361
+ pool_config_max_proceeds: string;
362
+ pool_config_min_proceeds: string;
363
+ pool_id: string;
364
+ pool_address: `0x${string}`;
365
+ pool_config_starting_time: string;
366
+ pool_config_ending_time: string;
367
+ pool_migration_timestamp: number | null;
368
+ pool_type: string;
369
+ base_token: {
370
+ token_address: `0x${string}`;
371
+ token_name: string;
372
+ token_symbol: string;
373
+ token_image_public_url: string | null;
374
+ token_creator_address: `0x${string}`;
375
+ token_fee_receiver_address: `0x${string}`;
376
+ token_vesting_recipient_addresses: `0x${string}`[];
377
+ token_uri_data?: any;
378
+ };
379
+ };
380
+ graduation_pool: {
381
+ pool_current_price: string;
382
+ pool_current_sqrt_price: string;
383
+ pool_current_fdv: string;
384
+ pool_current_liquidity: string;
385
+ pool_current_tick: number;
386
+ pool_current_market_cap: string;
387
+ pool_address: `0x${string}`;
388
+ pool_migration_timestamp: number | null;
389
+ pool_type: string;
390
+ base_token: {
391
+ token_address: `0x${string}`;
392
+ token_name: string;
393
+ token_symbol: string;
394
+ token_image_public_url: string | null;
395
+ token_creator_address: `0x${string}`;
396
+ token_fee_receiver_address: `0x${string}`;
397
+ token_vesting_recipient_addresses: `0x${string}`[];
398
+ integrator_address: string;
399
+ token_uri_data?: any;
400
+ };
401
+ };
402
+ }[];
403
+ }, {
404
+ result: {
405
+ asset_address: string;
406
+ asset_numeraire_address: string;
407
+ asset_creation_timestamp: number;
408
+ asset_migration_timestamp: number | null;
409
+ auction_pool: {
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_last_epoch: number;
416
+ pool_current_market_cap: string;
417
+ pool_current_fees_accrued: string;
418
+ pool_current_total_proceeds: string;
419
+ pool_current_total_tokens_sold: string;
420
+ pool_last_epoch_total_tokens_sold: string;
421
+ pool_current_sale_progress_percentage: number;
422
+ pool_config_max_proceeds: string;
423
+ pool_config_min_proceeds: string;
424
+ pool_id: string;
425
+ pool_address: string;
426
+ pool_config_starting_time: string;
427
+ pool_config_ending_time: string;
428
+ pool_migration_timestamp: number | null;
429
+ pool_type: string;
430
+ base_token: {
431
+ token_address: string;
432
+ token_name: string;
433
+ token_symbol: string;
434
+ token_image_public_url: string | null;
435
+ token_creator_address: string;
436
+ token_fee_receiver_address: string;
437
+ token_vesting_recipient_addresses: string[];
438
+ token_uri_data?: any;
439
+ };
440
+ };
441
+ graduation_pool: {
442
+ pool_current_price: string;
443
+ pool_current_sqrt_price: string;
444
+ pool_current_fdv: string;
445
+ pool_current_liquidity: string;
446
+ pool_current_tick: number;
447
+ pool_current_market_cap: string;
448
+ pool_address: string;
449
+ pool_migration_timestamp: number | null;
450
+ pool_type: string;
451
+ base_token: {
452
+ token_address: string;
453
+ token_name: string;
454
+ token_symbol: string;
455
+ token_image_public_url: string | null;
456
+ token_creator_address: string;
457
+ token_fee_receiver_address: string;
458
+ token_vesting_recipient_addresses: string[];
459
+ integrator_address: string;
460
+ token_uri_data?: any;
461
+ };
462
+ };
463
+ }[];
464
+ }>;
465
+ };
466
+ };
467
+ searchAssets: {
468
+ query: import("zod").ZodObject<{
469
+ term: import("zod").ZodString;
470
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
471
+ }, "strip", import("zod").ZodTypeAny, {
472
+ limit: number;
473
+ term: string;
474
+ }, {
475
+ term: string;
476
+ limit?: number | undefined;
477
+ }>;
478
+ description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
479
+ method: "GET";
480
+ path: "/assets/search";
481
+ responses: {
482
+ 200: import("zod").ZodObject<{
483
+ result: import("zod").ZodArray<import("zod").ZodObject<{
484
+ asset_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
485
+ asset_numeraire_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
486
+ asset_creation_timestamp: import("zod").ZodNumber;
487
+ asset_migration_timestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
488
+ auction_pool: import("zod").ZodObject<{
489
+ pool_current_price: import("zod").ZodString;
490
+ pool_current_sqrt_price: import("zod").ZodString;
491
+ pool_current_fdv: import("zod").ZodString;
492
+ pool_current_liquidity: import("zod").ZodString;
493
+ pool_current_tick: import("zod").ZodNumber;
494
+ pool_last_epoch: import("zod").ZodNumber;
495
+ pool_current_market_cap: import("zod").ZodString;
496
+ pool_current_fees_accrued: import("zod").ZodString;
497
+ pool_current_total_proceeds: import("zod").ZodString;
498
+ pool_current_total_tokens_sold: import("zod").ZodString;
499
+ pool_last_epoch_total_tokens_sold: import("zod").ZodString;
500
+ pool_current_sale_progress_percentage: import("zod").ZodNumber;
501
+ pool_config_max_proceeds: import("zod").ZodString;
502
+ pool_config_min_proceeds: import("zod").ZodString;
503
+ pool_id: import("zod").ZodString;
504
+ pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
505
+ pool_config_starting_time: import("zod").ZodString;
506
+ pool_config_ending_time: import("zod").ZodString;
507
+ pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
508
+ pool_type: import("zod").ZodString;
509
+ base_token: import("zod").ZodObject<{
510
+ token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
511
+ token_name: import("zod").ZodString;
512
+ token_symbol: import("zod").ZodString;
513
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
514
+ token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
515
+ token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
516
+ token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
517
+ token_vesting_recipient_addresses: import("zod").ZodArray<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>, "many">;
518
+ }, "strip", import("zod").ZodTypeAny, {
519
+ token_address: `0x${string}`;
520
+ token_name: string;
521
+ token_symbol: string;
522
+ token_image_public_url: string | null;
523
+ token_creator_address: `0x${string}`;
524
+ token_fee_receiver_address: `0x${string}`;
525
+ token_vesting_recipient_addresses: `0x${string}`[];
526
+ token_uri_data?: any;
527
+ }, {
528
+ token_address: string;
529
+ token_name: string;
530
+ token_symbol: string;
531
+ token_image_public_url: string | null;
532
+ token_creator_address: string;
533
+ token_fee_receiver_address: string;
534
+ token_vesting_recipient_addresses: string[];
535
+ token_uri_data?: any;
536
+ }>;
537
+ }, "strip", import("zod").ZodTypeAny, {
538
+ pool_current_price: string;
539
+ pool_current_sqrt_price: string;
540
+ pool_current_fdv: string;
541
+ pool_current_liquidity: string;
542
+ pool_current_tick: number;
543
+ pool_last_epoch: number;
544
+ pool_current_market_cap: string;
545
+ pool_current_fees_accrued: string;
546
+ pool_current_total_proceeds: string;
547
+ pool_current_total_tokens_sold: string;
548
+ pool_last_epoch_total_tokens_sold: string;
549
+ pool_current_sale_progress_percentage: number;
550
+ pool_config_max_proceeds: string;
551
+ pool_config_min_proceeds: string;
552
+ pool_id: string;
553
+ pool_address: `0x${string}`;
554
+ pool_config_starting_time: string;
555
+ pool_config_ending_time: string;
556
+ pool_migration_timestamp: number | null;
557
+ pool_type: string;
558
+ base_token: {
559
+ token_address: `0x${string}`;
560
+ token_name: string;
561
+ token_symbol: string;
562
+ token_image_public_url: string | null;
563
+ token_creator_address: `0x${string}`;
564
+ token_fee_receiver_address: `0x${string}`;
565
+ token_vesting_recipient_addresses: `0x${string}`[];
566
+ token_uri_data?: any;
567
+ };
568
+ }, {
569
+ pool_current_price: string;
570
+ pool_current_sqrt_price: string;
571
+ pool_current_fdv: string;
572
+ pool_current_liquidity: string;
573
+ pool_current_tick: number;
574
+ pool_last_epoch: number;
575
+ pool_current_market_cap: string;
576
+ pool_current_fees_accrued: string;
577
+ pool_current_total_proceeds: string;
578
+ pool_current_total_tokens_sold: string;
579
+ pool_last_epoch_total_tokens_sold: string;
580
+ pool_current_sale_progress_percentage: number;
581
+ pool_config_max_proceeds: string;
582
+ pool_config_min_proceeds: string;
583
+ pool_id: string;
584
+ pool_address: string;
585
+ pool_config_starting_time: string;
586
+ pool_config_ending_time: string;
587
+ pool_migration_timestamp: number | null;
588
+ pool_type: string;
589
+ base_token: {
590
+ token_address: string;
591
+ token_name: string;
592
+ token_symbol: string;
593
+ token_image_public_url: string | null;
594
+ token_creator_address: string;
595
+ token_fee_receiver_address: string;
596
+ token_vesting_recipient_addresses: string[];
597
+ token_uri_data?: any;
598
+ };
599
+ }>;
600
+ graduation_pool: import("zod").ZodObject<{
601
+ pool_current_price: import("zod").ZodString;
602
+ pool_current_sqrt_price: import("zod").ZodString;
603
+ pool_current_fdv: import("zod").ZodString;
604
+ pool_current_liquidity: import("zod").ZodString;
605
+ pool_current_tick: import("zod").ZodNumber;
606
+ pool_current_market_cap: import("zod").ZodString;
607
+ pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
608
+ pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
609
+ pool_type: import("zod").ZodString;
610
+ base_token: import("zod").ZodObject<{
611
+ token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
612
+ token_name: import("zod").ZodString;
613
+ token_symbol: import("zod").ZodString;
614
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
615
+ token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
616
+ token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
617
+ token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
618
+ token_vesting_recipient_addresses: import("zod").ZodArray<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>, "many">;
619
+ integrator_address: import("zod").ZodString;
620
+ }, "strip", import("zod").ZodTypeAny, {
621
+ token_address: `0x${string}`;
622
+ token_name: string;
623
+ token_symbol: string;
624
+ token_image_public_url: string | null;
625
+ token_creator_address: `0x${string}`;
626
+ token_fee_receiver_address: `0x${string}`;
627
+ token_vesting_recipient_addresses: `0x${string}`[];
628
+ integrator_address: string;
629
+ token_uri_data?: any;
630
+ }, {
631
+ token_address: string;
632
+ token_name: string;
633
+ token_symbol: string;
634
+ token_image_public_url: string | null;
635
+ token_creator_address: string;
636
+ token_fee_receiver_address: string;
637
+ token_vesting_recipient_addresses: string[];
638
+ integrator_address: string;
639
+ token_uri_data?: any;
640
+ }>;
641
+ }, "strip", import("zod").ZodTypeAny, {
642
+ pool_current_price: string;
643
+ pool_current_sqrt_price: string;
644
+ pool_current_fdv: string;
645
+ pool_current_liquidity: string;
646
+ pool_current_tick: number;
647
+ pool_current_market_cap: string;
648
+ pool_address: `0x${string}`;
649
+ pool_migration_timestamp: number | null;
650
+ pool_type: string;
651
+ base_token: {
652
+ token_address: `0x${string}`;
653
+ token_name: string;
654
+ token_symbol: string;
655
+ token_image_public_url: string | null;
656
+ token_creator_address: `0x${string}`;
657
+ token_fee_receiver_address: `0x${string}`;
658
+ token_vesting_recipient_addresses: `0x${string}`[];
659
+ integrator_address: string;
660
+ token_uri_data?: any;
661
+ };
662
+ }, {
663
+ pool_current_price: string;
664
+ pool_current_sqrt_price: string;
665
+ pool_current_fdv: string;
666
+ pool_current_liquidity: string;
667
+ pool_current_tick: number;
668
+ pool_current_market_cap: string;
669
+ pool_address: string;
670
+ pool_migration_timestamp: number | null;
671
+ pool_type: string;
672
+ base_token: {
673
+ token_address: string;
674
+ token_name: string;
675
+ token_symbol: string;
676
+ token_image_public_url: string | null;
677
+ token_creator_address: string;
678
+ token_fee_receiver_address: string;
679
+ token_vesting_recipient_addresses: string[];
680
+ integrator_address: string;
681
+ token_uri_data?: any;
682
+ };
683
+ }>;
684
+ }, "strip", import("zod").ZodTypeAny, {
685
+ asset_address: `0x${string}`;
686
+ asset_numeraire_address: `0x${string}`;
687
+ asset_creation_timestamp: number;
688
+ asset_migration_timestamp: number | null;
689
+ auction_pool: {
690
+ pool_current_price: string;
691
+ pool_current_sqrt_price: string;
692
+ pool_current_fdv: string;
693
+ pool_current_liquidity: string;
694
+ pool_current_tick: number;
695
+ pool_last_epoch: number;
696
+ pool_current_market_cap: string;
697
+ pool_current_fees_accrued: string;
698
+ pool_current_total_proceeds: string;
699
+ pool_current_total_tokens_sold: string;
700
+ pool_last_epoch_total_tokens_sold: string;
701
+ pool_current_sale_progress_percentage: number;
702
+ pool_config_max_proceeds: string;
703
+ pool_config_min_proceeds: string;
704
+ pool_id: string;
705
+ pool_address: `0x${string}`;
706
+ pool_config_starting_time: string;
707
+ pool_config_ending_time: string;
708
+ pool_migration_timestamp: number | null;
709
+ pool_type: string;
710
+ base_token: {
711
+ token_address: `0x${string}`;
712
+ token_name: string;
713
+ token_symbol: string;
714
+ token_image_public_url: string | null;
715
+ token_creator_address: `0x${string}`;
716
+ token_fee_receiver_address: `0x${string}`;
717
+ token_vesting_recipient_addresses: `0x${string}`[];
718
+ token_uri_data?: any;
719
+ };
720
+ };
721
+ graduation_pool: {
722
+ pool_current_price: string;
723
+ pool_current_sqrt_price: string;
724
+ pool_current_fdv: string;
725
+ pool_current_liquidity: string;
726
+ pool_current_tick: number;
727
+ pool_current_market_cap: string;
728
+ pool_address: `0x${string}`;
729
+ pool_migration_timestamp: number | null;
730
+ pool_type: string;
731
+ base_token: {
732
+ token_address: `0x${string}`;
733
+ token_name: string;
734
+ token_symbol: string;
735
+ token_image_public_url: string | null;
736
+ token_creator_address: `0x${string}`;
737
+ token_fee_receiver_address: `0x${string}`;
738
+ token_vesting_recipient_addresses: `0x${string}`[];
739
+ integrator_address: string;
740
+ token_uri_data?: any;
741
+ };
742
+ };
743
+ }, {
744
+ asset_address: string;
745
+ asset_numeraire_address: string;
746
+ asset_creation_timestamp: number;
747
+ asset_migration_timestamp: number | null;
748
+ auction_pool: {
749
+ pool_current_price: string;
750
+ pool_current_sqrt_price: string;
751
+ pool_current_fdv: string;
752
+ pool_current_liquidity: string;
753
+ pool_current_tick: number;
754
+ pool_last_epoch: number;
755
+ pool_current_market_cap: string;
756
+ pool_current_fees_accrued: string;
757
+ pool_current_total_proceeds: string;
758
+ pool_current_total_tokens_sold: string;
759
+ pool_last_epoch_total_tokens_sold: string;
760
+ pool_current_sale_progress_percentage: number;
761
+ pool_config_max_proceeds: string;
762
+ pool_config_min_proceeds: string;
763
+ pool_id: string;
764
+ pool_address: string;
765
+ pool_config_starting_time: string;
766
+ pool_config_ending_time: string;
767
+ pool_migration_timestamp: number | null;
768
+ pool_type: string;
769
+ base_token: {
770
+ token_address: string;
771
+ token_name: string;
772
+ token_symbol: string;
773
+ token_image_public_url: string | null;
774
+ token_creator_address: string;
775
+ token_fee_receiver_address: string;
776
+ token_vesting_recipient_addresses: string[];
777
+ token_uri_data?: any;
778
+ };
779
+ };
780
+ graduation_pool: {
781
+ pool_current_price: string;
782
+ pool_current_sqrt_price: string;
783
+ pool_current_fdv: string;
784
+ pool_current_liquidity: string;
785
+ pool_current_tick: number;
786
+ pool_current_market_cap: string;
787
+ pool_address: string;
788
+ pool_migration_timestamp: number | null;
789
+ pool_type: string;
790
+ base_token: {
791
+ token_address: string;
792
+ token_name: string;
793
+ token_symbol: string;
794
+ token_image_public_url: string | null;
795
+ token_creator_address: string;
796
+ token_fee_receiver_address: string;
797
+ token_vesting_recipient_addresses: string[];
798
+ integrator_address: string;
799
+ token_uri_data?: any;
800
+ };
801
+ };
802
+ }>, "many">;
803
+ }, "strip", import("zod").ZodTypeAny, {
804
+ result: {
805
+ asset_address: `0x${string}`;
806
+ asset_numeraire_address: `0x${string}`;
807
+ asset_creation_timestamp: number;
808
+ asset_migration_timestamp: number | null;
809
+ auction_pool: {
810
+ pool_current_price: string;
811
+ pool_current_sqrt_price: string;
812
+ pool_current_fdv: string;
813
+ pool_current_liquidity: string;
814
+ pool_current_tick: number;
815
+ pool_last_epoch: number;
816
+ pool_current_market_cap: string;
817
+ pool_current_fees_accrued: string;
818
+ pool_current_total_proceeds: string;
819
+ pool_current_total_tokens_sold: string;
820
+ pool_last_epoch_total_tokens_sold: string;
821
+ pool_current_sale_progress_percentage: number;
822
+ pool_config_max_proceeds: string;
823
+ pool_config_min_proceeds: string;
824
+ pool_id: string;
825
+ pool_address: `0x${string}`;
826
+ pool_config_starting_time: string;
827
+ pool_config_ending_time: string;
828
+ pool_migration_timestamp: number | null;
829
+ pool_type: string;
830
+ base_token: {
831
+ token_address: `0x${string}`;
832
+ token_name: string;
833
+ token_symbol: string;
834
+ token_image_public_url: string | null;
835
+ token_creator_address: `0x${string}`;
836
+ token_fee_receiver_address: `0x${string}`;
837
+ token_vesting_recipient_addresses: `0x${string}`[];
838
+ token_uri_data?: any;
839
+ };
840
+ };
841
+ graduation_pool: {
842
+ pool_current_price: string;
843
+ pool_current_sqrt_price: string;
844
+ pool_current_fdv: string;
845
+ pool_current_liquidity: string;
846
+ pool_current_tick: number;
847
+ pool_current_market_cap: string;
848
+ pool_address: `0x${string}`;
849
+ pool_migration_timestamp: number | null;
850
+ pool_type: string;
851
+ base_token: {
852
+ token_address: `0x${string}`;
853
+ token_name: string;
854
+ token_symbol: string;
855
+ token_image_public_url: string | null;
856
+ token_creator_address: `0x${string}`;
857
+ token_fee_receiver_address: `0x${string}`;
858
+ token_vesting_recipient_addresses: `0x${string}`[];
859
+ integrator_address: string;
860
+ token_uri_data?: any;
861
+ };
862
+ };
863
+ }[];
864
+ }, {
865
+ result: {
866
+ asset_address: string;
867
+ asset_numeraire_address: string;
868
+ asset_creation_timestamp: number;
869
+ asset_migration_timestamp: number | null;
870
+ auction_pool: {
871
+ pool_current_price: string;
872
+ pool_current_sqrt_price: string;
873
+ pool_current_fdv: string;
874
+ pool_current_liquidity: string;
875
+ pool_current_tick: number;
876
+ pool_last_epoch: number;
877
+ pool_current_market_cap: string;
878
+ pool_current_fees_accrued: string;
879
+ pool_current_total_proceeds: string;
880
+ pool_current_total_tokens_sold: string;
881
+ pool_last_epoch_total_tokens_sold: string;
882
+ pool_current_sale_progress_percentage: number;
883
+ pool_config_max_proceeds: string;
884
+ pool_config_min_proceeds: string;
885
+ pool_id: string;
886
+ pool_address: string;
887
+ pool_config_starting_time: string;
888
+ pool_config_ending_time: string;
889
+ pool_migration_timestamp: number | null;
890
+ pool_type: string;
891
+ base_token: {
892
+ token_address: string;
893
+ token_name: string;
894
+ token_symbol: string;
895
+ token_image_public_url: string | null;
896
+ token_creator_address: string;
897
+ token_fee_receiver_address: string;
898
+ token_vesting_recipient_addresses: string[];
899
+ token_uri_data?: any;
900
+ };
901
+ };
902
+ graduation_pool: {
903
+ pool_current_price: string;
904
+ pool_current_sqrt_price: string;
905
+ pool_current_fdv: string;
906
+ pool_current_liquidity: string;
907
+ pool_current_tick: number;
908
+ pool_current_market_cap: string;
909
+ pool_address: string;
910
+ pool_migration_timestamp: number | null;
911
+ pool_type: string;
912
+ base_token: {
913
+ token_address: string;
914
+ token_name: string;
915
+ token_symbol: string;
916
+ token_image_public_url: string | null;
917
+ token_creator_address: string;
918
+ token_fee_receiver_address: string;
919
+ token_vesting_recipient_addresses: string[];
920
+ integrator_address: string;
921
+ token_uri_data?: any;
922
+ };
923
+ };
924
+ }[];
925
+ }>;
926
+ };
927
+ };
928
+ getAsset: {
929
+ pathParams: import("zod").ZodObject<{
930
+ assetAddress: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
931
+ }, "strip", import("zod").ZodTypeAny, {
932
+ assetAddress: `0x${string}`;
933
+ }, {
934
+ assetAddress: string;
935
+ }>;
936
+ description: "Get an asset by its address";
937
+ method: "GET";
938
+ path: "/assets/:assetAddress";
939
+ responses: {
940
+ 200: import("zod").ZodObject<{
941
+ result: import("zod").ZodObject<{
942
+ asset_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
943
+ asset_numeraire_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
944
+ asset_creation_timestamp: import("zod").ZodNumber;
945
+ asset_migration_timestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
946
+ auction_pool: import("zod").ZodObject<{
947
+ pool_current_price: import("zod").ZodString;
948
+ pool_current_sqrt_price: import("zod").ZodString;
949
+ pool_current_fdv: import("zod").ZodString;
950
+ pool_current_liquidity: import("zod").ZodString;
951
+ pool_current_tick: import("zod").ZodNumber;
952
+ pool_last_epoch: import("zod").ZodNumber;
953
+ pool_current_market_cap: import("zod").ZodString;
954
+ pool_current_fees_accrued: import("zod").ZodString;
955
+ pool_current_total_proceeds: import("zod").ZodString;
956
+ pool_current_total_tokens_sold: import("zod").ZodString;
957
+ pool_last_epoch_total_tokens_sold: import("zod").ZodString;
958
+ pool_current_sale_progress_percentage: import("zod").ZodNumber;
959
+ pool_config_max_proceeds: import("zod").ZodString;
960
+ pool_config_min_proceeds: import("zod").ZodString;
961
+ pool_id: import("zod").ZodString;
962
+ pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
963
+ pool_config_starting_time: import("zod").ZodString;
964
+ pool_config_ending_time: import("zod").ZodString;
965
+ pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
966
+ pool_type: import("zod").ZodString;
967
+ base_token: import("zod").ZodObject<{
968
+ token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
969
+ token_name: import("zod").ZodString;
970
+ token_symbol: import("zod").ZodString;
971
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
972
+ token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
973
+ token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
974
+ token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
975
+ token_vesting_recipient_addresses: import("zod").ZodArray<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>, "many">;
976
+ }, "strip", import("zod").ZodTypeAny, {
977
+ token_address: `0x${string}`;
978
+ token_name: string;
979
+ token_symbol: string;
980
+ token_image_public_url: string | null;
981
+ token_creator_address: `0x${string}`;
982
+ token_fee_receiver_address: `0x${string}`;
983
+ token_vesting_recipient_addresses: `0x${string}`[];
984
+ token_uri_data?: any;
985
+ }, {
986
+ token_address: string;
987
+ token_name: string;
988
+ token_symbol: string;
989
+ token_image_public_url: string | null;
990
+ token_creator_address: string;
991
+ token_fee_receiver_address: string;
992
+ token_vesting_recipient_addresses: string[];
993
+ token_uri_data?: any;
994
+ }>;
995
+ }, "strip", import("zod").ZodTypeAny, {
996
+ pool_current_price: string;
997
+ pool_current_sqrt_price: string;
998
+ pool_current_fdv: string;
999
+ pool_current_liquidity: string;
1000
+ pool_current_tick: number;
1001
+ pool_last_epoch: number;
1002
+ pool_current_market_cap: string;
1003
+ pool_current_fees_accrued: string;
1004
+ pool_current_total_proceeds: string;
1005
+ pool_current_total_tokens_sold: string;
1006
+ pool_last_epoch_total_tokens_sold: string;
1007
+ pool_current_sale_progress_percentage: number;
1008
+ pool_config_max_proceeds: string;
1009
+ pool_config_min_proceeds: string;
1010
+ pool_id: string;
1011
+ pool_address: `0x${string}`;
1012
+ pool_config_starting_time: string;
1013
+ pool_config_ending_time: string;
1014
+ pool_migration_timestamp: number | null;
1015
+ pool_type: string;
1016
+ base_token: {
1017
+ token_address: `0x${string}`;
1018
+ token_name: string;
1019
+ token_symbol: string;
1020
+ token_image_public_url: string | null;
1021
+ token_creator_address: `0x${string}`;
1022
+ token_fee_receiver_address: `0x${string}`;
1023
+ token_vesting_recipient_addresses: `0x${string}`[];
1024
+ token_uri_data?: any;
1025
+ };
1026
+ }, {
1027
+ pool_current_price: string;
1028
+ pool_current_sqrt_price: string;
1029
+ pool_current_fdv: string;
1030
+ pool_current_liquidity: string;
1031
+ pool_current_tick: number;
1032
+ pool_last_epoch: number;
1033
+ pool_current_market_cap: string;
1034
+ pool_current_fees_accrued: string;
1035
+ pool_current_total_proceeds: string;
1036
+ pool_current_total_tokens_sold: string;
1037
+ pool_last_epoch_total_tokens_sold: string;
1038
+ pool_current_sale_progress_percentage: number;
1039
+ pool_config_max_proceeds: string;
1040
+ pool_config_min_proceeds: string;
1041
+ pool_id: string;
1042
+ pool_address: string;
1043
+ pool_config_starting_time: string;
1044
+ pool_config_ending_time: string;
1045
+ pool_migration_timestamp: number | null;
1046
+ pool_type: string;
1047
+ base_token: {
1048
+ token_address: string;
1049
+ token_name: string;
1050
+ token_symbol: string;
1051
+ token_image_public_url: string | null;
1052
+ token_creator_address: string;
1053
+ token_fee_receiver_address: string;
1054
+ token_vesting_recipient_addresses: string[];
1055
+ token_uri_data?: any;
1056
+ };
1057
+ }>;
1058
+ graduation_pool: import("zod").ZodObject<{
1059
+ pool_current_price: import("zod").ZodString;
1060
+ pool_current_sqrt_price: import("zod").ZodString;
1061
+ pool_current_fdv: import("zod").ZodString;
1062
+ pool_current_liquidity: import("zod").ZodString;
1063
+ pool_current_tick: import("zod").ZodNumber;
1064
+ pool_current_market_cap: import("zod").ZodString;
1065
+ pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
1066
+ pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodNumber>;
1067
+ pool_type: import("zod").ZodString;
1068
+ base_token: import("zod").ZodObject<{
1069
+ token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
1070
+ token_name: import("zod").ZodString;
1071
+ token_symbol: import("zod").ZodString;
1072
+ token_uri_data: import("zod").ZodNullable<import("zod").ZodAny>;
1073
+ token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
1074
+ token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
1075
+ token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
1076
+ token_vesting_recipient_addresses: import("zod").ZodArray<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>, "many">;
1077
+ integrator_address: import("zod").ZodString;
1078
+ }, "strip", import("zod").ZodTypeAny, {
1079
+ token_address: `0x${string}`;
1080
+ token_name: string;
1081
+ token_symbol: string;
1082
+ token_image_public_url: string | null;
1083
+ token_creator_address: `0x${string}`;
1084
+ token_fee_receiver_address: `0x${string}`;
1085
+ token_vesting_recipient_addresses: `0x${string}`[];
1086
+ integrator_address: string;
1087
+ token_uri_data?: any;
1088
+ }, {
1089
+ token_address: string;
1090
+ token_name: string;
1091
+ token_symbol: string;
1092
+ token_image_public_url: string | null;
1093
+ token_creator_address: string;
1094
+ token_fee_receiver_address: string;
1095
+ token_vesting_recipient_addresses: string[];
1096
+ integrator_address: string;
1097
+ token_uri_data?: any;
1098
+ }>;
1099
+ }, "strip", import("zod").ZodTypeAny, {
1100
+ pool_current_price: string;
1101
+ pool_current_sqrt_price: string;
1102
+ pool_current_fdv: string;
1103
+ pool_current_liquidity: string;
1104
+ pool_current_tick: number;
1105
+ pool_current_market_cap: string;
1106
+ pool_address: `0x${string}`;
1107
+ pool_migration_timestamp: number | null;
1108
+ pool_type: string;
1109
+ base_token: {
1110
+ token_address: `0x${string}`;
1111
+ token_name: string;
1112
+ token_symbol: string;
1113
+ token_image_public_url: string | null;
1114
+ token_creator_address: `0x${string}`;
1115
+ token_fee_receiver_address: `0x${string}`;
1116
+ token_vesting_recipient_addresses: `0x${string}`[];
1117
+ integrator_address: string;
1118
+ token_uri_data?: any;
1119
+ };
1120
+ }, {
1121
+ pool_current_price: string;
1122
+ pool_current_sqrt_price: string;
1123
+ pool_current_fdv: string;
1124
+ pool_current_liquidity: string;
1125
+ pool_current_tick: number;
1126
+ pool_current_market_cap: string;
1127
+ pool_address: string;
1128
+ pool_migration_timestamp: number | null;
1129
+ pool_type: string;
1130
+ base_token: {
1131
+ token_address: string;
1132
+ token_name: string;
1133
+ token_symbol: string;
1134
+ token_image_public_url: string | null;
1135
+ token_creator_address: string;
1136
+ token_fee_receiver_address: string;
1137
+ token_vesting_recipient_addresses: string[];
1138
+ integrator_address: string;
1139
+ token_uri_data?: any;
1140
+ };
1141
+ }>;
1142
+ }, "strip", import("zod").ZodTypeAny, {
1143
+ asset_address: `0x${string}`;
1144
+ asset_numeraire_address: `0x${string}`;
1145
+ asset_creation_timestamp: number;
1146
+ asset_migration_timestamp: number | null;
1147
+ auction_pool: {
1148
+ pool_current_price: string;
1149
+ pool_current_sqrt_price: string;
1150
+ pool_current_fdv: string;
1151
+ pool_current_liquidity: string;
1152
+ pool_current_tick: number;
1153
+ pool_last_epoch: number;
1154
+ pool_current_market_cap: string;
1155
+ pool_current_fees_accrued: string;
1156
+ pool_current_total_proceeds: string;
1157
+ pool_current_total_tokens_sold: string;
1158
+ pool_last_epoch_total_tokens_sold: string;
1159
+ pool_current_sale_progress_percentage: number;
1160
+ pool_config_max_proceeds: string;
1161
+ pool_config_min_proceeds: string;
1162
+ pool_id: string;
1163
+ pool_address: `0x${string}`;
1164
+ pool_config_starting_time: string;
1165
+ pool_config_ending_time: string;
1166
+ pool_migration_timestamp: number | null;
1167
+ pool_type: string;
1168
+ base_token: {
1169
+ token_address: `0x${string}`;
1170
+ token_name: string;
1171
+ token_symbol: string;
1172
+ token_image_public_url: string | null;
1173
+ token_creator_address: `0x${string}`;
1174
+ token_fee_receiver_address: `0x${string}`;
1175
+ token_vesting_recipient_addresses: `0x${string}`[];
1176
+ token_uri_data?: any;
1177
+ };
1178
+ };
1179
+ graduation_pool: {
1180
+ pool_current_price: string;
1181
+ pool_current_sqrt_price: string;
1182
+ pool_current_fdv: string;
1183
+ pool_current_liquidity: string;
1184
+ pool_current_tick: number;
1185
+ pool_current_market_cap: string;
1186
+ pool_address: `0x${string}`;
1187
+ pool_migration_timestamp: number | null;
1188
+ pool_type: string;
1189
+ base_token: {
1190
+ token_address: `0x${string}`;
1191
+ token_name: string;
1192
+ token_symbol: string;
1193
+ token_image_public_url: string | null;
1194
+ token_creator_address: `0x${string}`;
1195
+ token_fee_receiver_address: `0x${string}`;
1196
+ token_vesting_recipient_addresses: `0x${string}`[];
1197
+ integrator_address: string;
1198
+ token_uri_data?: any;
1199
+ };
1200
+ };
1201
+ }, {
1202
+ asset_address: string;
1203
+ asset_numeraire_address: string;
1204
+ asset_creation_timestamp: number;
1205
+ asset_migration_timestamp: number | null;
1206
+ auction_pool: {
1207
+ pool_current_price: string;
1208
+ pool_current_sqrt_price: string;
1209
+ pool_current_fdv: string;
1210
+ pool_current_liquidity: string;
1211
+ pool_current_tick: number;
1212
+ pool_last_epoch: number;
1213
+ pool_current_market_cap: string;
1214
+ pool_current_fees_accrued: string;
1215
+ pool_current_total_proceeds: string;
1216
+ pool_current_total_tokens_sold: string;
1217
+ pool_last_epoch_total_tokens_sold: string;
1218
+ pool_current_sale_progress_percentage: number;
1219
+ pool_config_max_proceeds: string;
1220
+ pool_config_min_proceeds: string;
1221
+ pool_id: string;
1222
+ pool_address: string;
1223
+ pool_config_starting_time: string;
1224
+ pool_config_ending_time: string;
1225
+ pool_migration_timestamp: number | null;
1226
+ pool_type: string;
1227
+ base_token: {
1228
+ token_address: string;
1229
+ token_name: string;
1230
+ token_symbol: string;
1231
+ token_image_public_url: string | null;
1232
+ token_creator_address: string;
1233
+ token_fee_receiver_address: string;
1234
+ token_vesting_recipient_addresses: string[];
1235
+ token_uri_data?: any;
1236
+ };
1237
+ };
1238
+ graduation_pool: {
1239
+ pool_current_price: string;
1240
+ pool_current_sqrt_price: string;
1241
+ pool_current_fdv: string;
1242
+ pool_current_liquidity: string;
1243
+ pool_current_tick: number;
1244
+ pool_current_market_cap: string;
1245
+ pool_address: string;
1246
+ pool_migration_timestamp: number | null;
1247
+ pool_type: string;
1248
+ base_token: {
1249
+ token_address: string;
1250
+ token_name: string;
1251
+ token_symbol: string;
1252
+ token_image_public_url: string | null;
1253
+ token_creator_address: string;
1254
+ token_fee_receiver_address: string;
1255
+ token_vesting_recipient_addresses: string[];
1256
+ integrator_address: string;
1257
+ token_uri_data?: any;
1258
+ };
1259
+ };
1260
+ }>;
1261
+ }, "strip", import("zod").ZodTypeAny, {
1262
+ result: {
1263
+ asset_address: `0x${string}`;
1264
+ asset_numeraire_address: `0x${string}`;
1265
+ asset_creation_timestamp: number;
1266
+ asset_migration_timestamp: number | null;
1267
+ auction_pool: {
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_id: string;
1283
+ pool_address: `0x${string}`;
1284
+ pool_config_starting_time: string;
1285
+ pool_config_ending_time: string;
1286
+ pool_migration_timestamp: number | null;
1287
+ pool_type: string;
1288
+ base_token: {
1289
+ token_address: `0x${string}`;
1290
+ token_name: string;
1291
+ token_symbol: string;
1292
+ token_image_public_url: string | null;
1293
+ token_creator_address: `0x${string}`;
1294
+ token_fee_receiver_address: `0x${string}`;
1295
+ token_vesting_recipient_addresses: `0x${string}`[];
1296
+ token_uri_data?: any;
1297
+ };
1298
+ };
1299
+ graduation_pool: {
1300
+ pool_current_price: string;
1301
+ pool_current_sqrt_price: string;
1302
+ pool_current_fdv: string;
1303
+ pool_current_liquidity: string;
1304
+ pool_current_tick: number;
1305
+ pool_current_market_cap: string;
1306
+ pool_address: `0x${string}`;
1307
+ pool_migration_timestamp: number | null;
1308
+ pool_type: string;
1309
+ base_token: {
1310
+ token_address: `0x${string}`;
1311
+ token_name: string;
1312
+ token_symbol: string;
1313
+ token_image_public_url: string | null;
1314
+ token_creator_address: `0x${string}`;
1315
+ token_fee_receiver_address: `0x${string}`;
1316
+ token_vesting_recipient_addresses: `0x${string}`[];
1317
+ integrator_address: string;
1318
+ token_uri_data?: any;
1319
+ };
1320
+ };
1321
+ };
1322
+ }, {
1323
+ result: {
1324
+ asset_address: string;
1325
+ asset_numeraire_address: string;
1326
+ asset_creation_timestamp: number;
1327
+ asset_migration_timestamp: number | null;
1328
+ auction_pool: {
1329
+ pool_current_price: string;
1330
+ pool_current_sqrt_price: string;
1331
+ pool_current_fdv: string;
1332
+ pool_current_liquidity: string;
1333
+ pool_current_tick: number;
1334
+ pool_last_epoch: number;
1335
+ pool_current_market_cap: string;
1336
+ pool_current_fees_accrued: string;
1337
+ pool_current_total_proceeds: string;
1338
+ pool_current_total_tokens_sold: string;
1339
+ pool_last_epoch_total_tokens_sold: string;
1340
+ pool_current_sale_progress_percentage: number;
1341
+ pool_config_max_proceeds: string;
1342
+ pool_config_min_proceeds: string;
1343
+ pool_id: string;
1344
+ pool_address: string;
1345
+ pool_config_starting_time: string;
1346
+ pool_config_ending_time: string;
1347
+ pool_migration_timestamp: number | null;
1348
+ pool_type: string;
1349
+ base_token: {
1350
+ token_address: string;
1351
+ token_name: string;
1352
+ token_symbol: string;
1353
+ token_image_public_url: string | null;
1354
+ token_creator_address: string;
1355
+ token_fee_receiver_address: string;
1356
+ token_vesting_recipient_addresses: string[];
1357
+ token_uri_data?: any;
1358
+ };
1359
+ };
1360
+ graduation_pool: {
1361
+ pool_current_price: string;
1362
+ pool_current_sqrt_price: string;
1363
+ pool_current_fdv: string;
1364
+ pool_current_liquidity: string;
1365
+ pool_current_tick: number;
1366
+ pool_current_market_cap: string;
1367
+ pool_address: string;
1368
+ pool_migration_timestamp: number | null;
1369
+ pool_type: string;
1370
+ base_token: {
1371
+ token_address: string;
1372
+ token_name: string;
1373
+ token_symbol: string;
1374
+ token_image_public_url: string | null;
1375
+ token_creator_address: string;
1376
+ token_fee_receiver_address: string;
1377
+ token_vesting_recipient_addresses: string[];
1378
+ integrator_address: string;
1379
+ token_uri_data?: any;
1380
+ };
1381
+ };
1382
+ };
1383
+ }>;
1384
+ };
1385
+ };
1386
+ };
2
1387
  auctions: {
3
1388
  listAuctions: {
4
1389
  method: "GET";
@@ -264,8 +1649,8 @@ export declare const rootContract: {
264
1649
  token_factory: `0x${string}`;
265
1650
  token_factory_data: `0x${string}`;
266
1651
  } | undefined;
267
- hook_address?: `0x${string}` | undefined;
268
1652
  token_address?: `0x${string}` | undefined;
1653
+ hook_address?: `0x${string}` | undefined;
269
1654
  }, {
270
1655
  encoded_payload: string;
271
1656
  params?: {
@@ -283,8 +1668,8 @@ export declare const rootContract: {
283
1668
  token_factory: string;
284
1669
  token_factory_data: string;
285
1670
  } | undefined;
286
- hook_address?: string | undefined;
287
1671
  token_address?: string | undefined;
1672
+ hook_address?: string | undefined;
288
1673
  }>;
289
1674
  }, "strip", import("zod").ZodTypeAny, {
290
1675
  result: {
@@ -304,8 +1689,8 @@ export declare const rootContract: {
304
1689
  token_factory: `0x${string}`;
305
1690
  token_factory_data: `0x${string}`;
306
1691
  } | undefined;
307
- hook_address?: `0x${string}` | undefined;
308
1692
  token_address?: `0x${string}` | undefined;
1693
+ hook_address?: `0x${string}` | undefined;
309
1694
  };
310
1695
  }, {
311
1696
  result: {
@@ -325,8 +1710,8 @@ export declare const rootContract: {
325
1710
  token_factory: string;
326
1711
  token_factory_data: string;
327
1712
  } | undefined;
328
- hook_address?: string | undefined;
329
1713
  token_address?: string | undefined;
1714
+ hook_address?: string | undefined;
330
1715
  };
331
1716
  }>;
332
1717
  };
@@ -343,25 +1728,25 @@ export declare const rootContract: {
343
1728
  name: import("zod").ZodString;
344
1729
  description: import("zod").ZodNullable<import("zod").ZodString>;
345
1730
  }, "strip", import("zod").ZodTypeAny, {
1731
+ description: string | null;
346
1732
  id: string;
347
1733
  name: string;
348
- description: string | null;
349
1734
  }, {
1735
+ description: string | null;
350
1736
  id: string;
351
1737
  name: string;
352
- description: string | null;
353
1738
  }>, "many">;
354
1739
  }, "strip", import("zod").ZodTypeAny, {
355
1740
  result: {
1741
+ description: string | null;
356
1742
  id: string;
357
1743
  name: string;
358
- description: string | null;
359
1744
  }[];
360
1745
  }, {
361
1746
  result: {
1747
+ description: string | null;
362
1748
  id: string;
363
1749
  name: string;
364
- description: string | null;
365
1750
  }[];
366
1751
  }>;
367
1752
  };
@@ -380,30 +1765,30 @@ export declare const rootContract: {
380
1765
  funding_amount: import("zod").ZodNumber;
381
1766
  image_url: import("zod").ZodNullable<import("zod").ZodString>;
382
1767
  }, "strip", import("zod").ZodTypeAny, {
383
- id: number;
384
1768
  description: string | null;
1769
+ id: number;
385
1770
  label: string;
386
1771
  funding_amount: number;
387
1772
  image_url: string | null;
388
1773
  }, {
389
- id: number;
390
1774
  description: string | null;
1775
+ id: number;
391
1776
  label: string;
392
1777
  funding_amount: number;
393
1778
  image_url: string | null;
394
1779
  }>, "many">;
395
1780
  }, "strip", import("zod").ZodTypeAny, {
396
1781
  result: {
397
- id: number;
398
1782
  description: string | null;
1783
+ id: number;
399
1784
  label: string;
400
1785
  funding_amount: number;
401
1786
  image_url: string | null;
402
1787
  }[];
403
1788
  }, {
404
1789
  result: {
405
- id: number;
406
1790
  description: string | null;
1791
+ id: number;
407
1792
  label: string;
408
1793
  funding_amount: number;
409
1794
  image_url: string | null;
@@ -430,30 +1815,30 @@ export declare const rootContract: {
430
1815
  funding_amount: import("zod").ZodNumber;
431
1816
  image_url: import("zod").ZodNullable<import("zod").ZodString>;
432
1817
  }, "strip", import("zod").ZodTypeAny, {
433
- id: number;
434
1818
  description: string | null;
1819
+ id: number;
435
1820
  label: string;
436
1821
  funding_amount: number;
437
1822
  image_url: string | null;
438
1823
  }, {
439
- id: number;
440
1824
  description: string | null;
1825
+ id: number;
441
1826
  label: string;
442
1827
  funding_amount: number;
443
1828
  image_url: string | null;
444
1829
  }>;
445
1830
  }, "strip", import("zod").ZodTypeAny, {
446
1831
  result: {
447
- id: number;
448
1832
  description: string | null;
1833
+ id: number;
449
1834
  label: string;
450
1835
  funding_amount: number;
451
1836
  image_url: string | null;
452
1837
  };
453
1838
  }, {
454
1839
  result: {
455
- id: number;
456
1840
  description: string | null;
1841
+ id: number;
457
1842
  label: string;
458
1843
  funding_amount: number;
459
1844
  image_url: string | null;
@@ -508,8 +1893,8 @@ export declare const rootContract: {
508
1893
  }>, "many">;
509
1894
  fee_receiver: import("zod").ZodString;
510
1895
  }, "strip", import("zod").ZodTypeAny, {
511
- name: string;
512
1896
  description: string;
1897
+ name: string;
513
1898
  image_hash: string;
514
1899
  social_links: {
515
1900
  label: string;
@@ -521,8 +1906,8 @@ export declare const rootContract: {
521
1906
  }[];
522
1907
  fee_receiver: string;
523
1908
  }, {
524
- name: string;
525
1909
  description: string;
1910
+ name: string;
526
1911
  image_hash: string;
527
1912
  social_links: {
528
1913
  label: string;
@@ -820,6 +2205,7 @@ export declare const rootContract: {
820
2205
  };
821
2206
  };
822
2207
  };
2208
+ export * from "./asset.contract";
823
2209
  export * from "./auction.contract";
824
2210
  export * from "./auction-template.contract";
825
2211
  export * from "./community.contract";