@longdotxyz/shared 0.0.30 → 0.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/contracts/asset.contract.d.ts +959 -71
- package/dist/contracts/asset.contract.js +102 -60
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.d.ts +6 -6
- package/dist/contracts/auction.contract.d.ts +1 -1
- package/dist/contracts/index.d.ts +762 -66
- package/dist/contracts/ipfs.contract.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare const rootContract: {
|
|
2
2
|
assets: {
|
|
3
3
|
listAssets: {
|
|
4
|
+
description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
|
|
4
5
|
query: import("zod").ZodObject<{
|
|
5
6
|
status: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").AssetStatus>>>;
|
|
6
7
|
limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -14,7 +15,6 @@ export declare const rootContract: {
|
|
|
14
15
|
limit?: number | undefined;
|
|
15
16
|
offset?: number | undefined;
|
|
16
17
|
}>;
|
|
17
|
-
description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
|
|
18
18
|
method: "GET";
|
|
19
19
|
path: "/assets/";
|
|
20
20
|
responses: {
|
|
@@ -50,7 +50,43 @@ export declare const rootContract: {
|
|
|
50
50
|
token_name: import("zod").ZodString;
|
|
51
51
|
token_description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
52
52
|
token_symbol: import("zod").ZodString;
|
|
53
|
-
token_uri_data: import("zod").ZodNullable<import("zod").
|
|
53
|
+
token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
54
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
55
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
56
|
+
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
57
|
+
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
58
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
59
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
60
|
+
address: import("zod").ZodString;
|
|
61
|
+
percentage: import("zod").ZodNumber;
|
|
62
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
63
|
+
address: string;
|
|
64
|
+
percentage: number;
|
|
65
|
+
}, {
|
|
66
|
+
address: string;
|
|
67
|
+
percentage: number;
|
|
68
|
+
}>, "many">>;
|
|
69
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
70
|
+
name?: string | undefined;
|
|
71
|
+
description?: string | undefined;
|
|
72
|
+
image_hash?: string | undefined;
|
|
73
|
+
fee_receiver?: string | undefined;
|
|
74
|
+
social_links?: string[] | undefined;
|
|
75
|
+
vesting_recipients?: {
|
|
76
|
+
address: string;
|
|
77
|
+
percentage: number;
|
|
78
|
+
}[] | undefined;
|
|
79
|
+
}, {
|
|
80
|
+
name?: string | undefined;
|
|
81
|
+
description?: string | undefined;
|
|
82
|
+
image_hash?: string | undefined;
|
|
83
|
+
fee_receiver?: string | undefined;
|
|
84
|
+
social_links?: string[] | undefined;
|
|
85
|
+
vesting_recipients?: {
|
|
86
|
+
address: string;
|
|
87
|
+
percentage: number;
|
|
88
|
+
}[] | undefined;
|
|
89
|
+
}>>;
|
|
54
90
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
55
91
|
token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
56
92
|
token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -60,21 +96,41 @@ export declare const rootContract: {
|
|
|
60
96
|
token_name: string;
|
|
61
97
|
token_description: string | null;
|
|
62
98
|
token_symbol: string;
|
|
99
|
+
token_uri_data: {
|
|
100
|
+
name?: string | undefined;
|
|
101
|
+
description?: string | undefined;
|
|
102
|
+
image_hash?: string | undefined;
|
|
103
|
+
fee_receiver?: string | undefined;
|
|
104
|
+
social_links?: string[] | undefined;
|
|
105
|
+
vesting_recipients?: {
|
|
106
|
+
address: string;
|
|
107
|
+
percentage: number;
|
|
108
|
+
}[] | undefined;
|
|
109
|
+
} | null;
|
|
63
110
|
token_image_public_url: string | null;
|
|
64
111
|
token_creator_address: `0x${string}`;
|
|
65
112
|
token_fee_receiver_address: `0x${string}`;
|
|
66
113
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
67
|
-
token_uri_data?: any;
|
|
68
114
|
}, {
|
|
69
115
|
token_address: string;
|
|
70
116
|
token_name: string;
|
|
71
117
|
token_description: string | null;
|
|
72
118
|
token_symbol: string;
|
|
119
|
+
token_uri_data: {
|
|
120
|
+
name?: string | undefined;
|
|
121
|
+
description?: string | undefined;
|
|
122
|
+
image_hash?: string | undefined;
|
|
123
|
+
fee_receiver?: string | undefined;
|
|
124
|
+
social_links?: string[] | undefined;
|
|
125
|
+
vesting_recipients?: {
|
|
126
|
+
address: string;
|
|
127
|
+
percentage: number;
|
|
128
|
+
}[] | undefined;
|
|
129
|
+
} | null;
|
|
73
130
|
token_image_public_url: string | null;
|
|
74
131
|
token_creator_address: string;
|
|
75
132
|
token_fee_receiver_address: string;
|
|
76
133
|
token_vesting_recipient_addresses: string[];
|
|
77
|
-
token_uri_data?: any;
|
|
78
134
|
}>;
|
|
79
135
|
}, "strip", import("zod").ZodTypeAny, {
|
|
80
136
|
pool_current_price: string;
|
|
@@ -102,11 +158,21 @@ export declare const rootContract: {
|
|
|
102
158
|
token_name: string;
|
|
103
159
|
token_description: string | null;
|
|
104
160
|
token_symbol: string;
|
|
161
|
+
token_uri_data: {
|
|
162
|
+
name?: string | undefined;
|
|
163
|
+
description?: string | undefined;
|
|
164
|
+
image_hash?: string | undefined;
|
|
165
|
+
fee_receiver?: string | undefined;
|
|
166
|
+
social_links?: string[] | undefined;
|
|
167
|
+
vesting_recipients?: {
|
|
168
|
+
address: string;
|
|
169
|
+
percentage: number;
|
|
170
|
+
}[] | undefined;
|
|
171
|
+
} | null;
|
|
105
172
|
token_image_public_url: string | null;
|
|
106
173
|
token_creator_address: `0x${string}`;
|
|
107
174
|
token_fee_receiver_address: `0x${string}`;
|
|
108
175
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
109
|
-
token_uri_data?: any;
|
|
110
176
|
};
|
|
111
177
|
}, {
|
|
112
178
|
pool_current_price: string;
|
|
@@ -134,11 +200,21 @@ export declare const rootContract: {
|
|
|
134
200
|
token_name: string;
|
|
135
201
|
token_description: string | null;
|
|
136
202
|
token_symbol: string;
|
|
203
|
+
token_uri_data: {
|
|
204
|
+
name?: string | undefined;
|
|
205
|
+
description?: string | undefined;
|
|
206
|
+
image_hash?: string | undefined;
|
|
207
|
+
fee_receiver?: string | undefined;
|
|
208
|
+
social_links?: string[] | undefined;
|
|
209
|
+
vesting_recipients?: {
|
|
210
|
+
address: string;
|
|
211
|
+
percentage: number;
|
|
212
|
+
}[] | undefined;
|
|
213
|
+
} | null;
|
|
137
214
|
token_image_public_url: string | null;
|
|
138
215
|
token_creator_address: string;
|
|
139
216
|
token_fee_receiver_address: string;
|
|
140
217
|
token_vesting_recipient_addresses: string[];
|
|
141
|
-
token_uri_data?: any;
|
|
142
218
|
};
|
|
143
219
|
}>;
|
|
144
220
|
graduation_pool: import("zod").ZodObject<{
|
|
@@ -156,7 +232,43 @@ export declare const rootContract: {
|
|
|
156
232
|
token_name: import("zod").ZodString;
|
|
157
233
|
token_description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
158
234
|
token_symbol: import("zod").ZodString;
|
|
159
|
-
token_uri_data: import("zod").ZodNullable<import("zod").
|
|
235
|
+
token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
236
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
237
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
238
|
+
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
239
|
+
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
240
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
241
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
242
|
+
address: import("zod").ZodString;
|
|
243
|
+
percentage: import("zod").ZodNumber;
|
|
244
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
245
|
+
address: string;
|
|
246
|
+
percentage: number;
|
|
247
|
+
}, {
|
|
248
|
+
address: string;
|
|
249
|
+
percentage: number;
|
|
250
|
+
}>, "many">>;
|
|
251
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
252
|
+
name?: string | undefined;
|
|
253
|
+
description?: string | undefined;
|
|
254
|
+
image_hash?: string | undefined;
|
|
255
|
+
fee_receiver?: string | undefined;
|
|
256
|
+
social_links?: string[] | undefined;
|
|
257
|
+
vesting_recipients?: {
|
|
258
|
+
address: string;
|
|
259
|
+
percentage: number;
|
|
260
|
+
}[] | undefined;
|
|
261
|
+
}, {
|
|
262
|
+
name?: string | undefined;
|
|
263
|
+
description?: string | undefined;
|
|
264
|
+
image_hash?: string | undefined;
|
|
265
|
+
fee_receiver?: string | undefined;
|
|
266
|
+
social_links?: string[] | undefined;
|
|
267
|
+
vesting_recipients?: {
|
|
268
|
+
address: string;
|
|
269
|
+
percentage: number;
|
|
270
|
+
}[] | undefined;
|
|
271
|
+
}>>;
|
|
160
272
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
161
273
|
token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
162
274
|
token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -167,23 +279,43 @@ export declare const rootContract: {
|
|
|
167
279
|
token_name: string;
|
|
168
280
|
token_description: string | null;
|
|
169
281
|
token_symbol: string;
|
|
282
|
+
token_uri_data: {
|
|
283
|
+
name?: string | undefined;
|
|
284
|
+
description?: string | undefined;
|
|
285
|
+
image_hash?: string | undefined;
|
|
286
|
+
fee_receiver?: string | undefined;
|
|
287
|
+
social_links?: string[] | undefined;
|
|
288
|
+
vesting_recipients?: {
|
|
289
|
+
address: string;
|
|
290
|
+
percentage: number;
|
|
291
|
+
}[] | undefined;
|
|
292
|
+
} | null;
|
|
170
293
|
token_image_public_url: string | null;
|
|
171
294
|
token_creator_address: `0x${string}`;
|
|
172
295
|
token_fee_receiver_address: `0x${string}`;
|
|
173
296
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
174
297
|
integrator_address: string;
|
|
175
|
-
token_uri_data?: any;
|
|
176
298
|
}, {
|
|
177
299
|
token_address: string;
|
|
178
300
|
token_name: string;
|
|
179
301
|
token_description: string | null;
|
|
180
302
|
token_symbol: string;
|
|
303
|
+
token_uri_data: {
|
|
304
|
+
name?: string | undefined;
|
|
305
|
+
description?: string | undefined;
|
|
306
|
+
image_hash?: string | undefined;
|
|
307
|
+
fee_receiver?: string | undefined;
|
|
308
|
+
social_links?: string[] | undefined;
|
|
309
|
+
vesting_recipients?: {
|
|
310
|
+
address: string;
|
|
311
|
+
percentage: number;
|
|
312
|
+
}[] | undefined;
|
|
313
|
+
} | null;
|
|
181
314
|
token_image_public_url: string | null;
|
|
182
315
|
token_creator_address: string;
|
|
183
316
|
token_fee_receiver_address: string;
|
|
184
317
|
token_vesting_recipient_addresses: string[];
|
|
185
318
|
integrator_address: string;
|
|
186
|
-
token_uri_data?: any;
|
|
187
319
|
}>;
|
|
188
320
|
}, "strip", import("zod").ZodTypeAny, {
|
|
189
321
|
pool_current_price: string;
|
|
@@ -200,12 +332,22 @@ export declare const rootContract: {
|
|
|
200
332
|
token_name: string;
|
|
201
333
|
token_description: string | null;
|
|
202
334
|
token_symbol: string;
|
|
335
|
+
token_uri_data: {
|
|
336
|
+
name?: string | undefined;
|
|
337
|
+
description?: string | undefined;
|
|
338
|
+
image_hash?: string | undefined;
|
|
339
|
+
fee_receiver?: string | undefined;
|
|
340
|
+
social_links?: string[] | undefined;
|
|
341
|
+
vesting_recipients?: {
|
|
342
|
+
address: string;
|
|
343
|
+
percentage: number;
|
|
344
|
+
}[] | undefined;
|
|
345
|
+
} | null;
|
|
203
346
|
token_image_public_url: string | null;
|
|
204
347
|
token_creator_address: `0x${string}`;
|
|
205
348
|
token_fee_receiver_address: `0x${string}`;
|
|
206
349
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
207
350
|
integrator_address: string;
|
|
208
|
-
token_uri_data?: any;
|
|
209
351
|
};
|
|
210
352
|
}, {
|
|
211
353
|
pool_current_price: string;
|
|
@@ -222,12 +364,22 @@ export declare const rootContract: {
|
|
|
222
364
|
token_name: string;
|
|
223
365
|
token_description: string | null;
|
|
224
366
|
token_symbol: string;
|
|
367
|
+
token_uri_data: {
|
|
368
|
+
name?: string | undefined;
|
|
369
|
+
description?: string | undefined;
|
|
370
|
+
image_hash?: string | undefined;
|
|
371
|
+
fee_receiver?: string | undefined;
|
|
372
|
+
social_links?: string[] | undefined;
|
|
373
|
+
vesting_recipients?: {
|
|
374
|
+
address: string;
|
|
375
|
+
percentage: number;
|
|
376
|
+
}[] | undefined;
|
|
377
|
+
} | null;
|
|
225
378
|
token_image_public_url: string | null;
|
|
226
379
|
token_creator_address: string;
|
|
227
380
|
token_fee_receiver_address: string;
|
|
228
381
|
token_vesting_recipient_addresses: string[];
|
|
229
382
|
integrator_address: string;
|
|
230
|
-
token_uri_data?: any;
|
|
231
383
|
};
|
|
232
384
|
}>;
|
|
233
385
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -261,11 +413,21 @@ export declare const rootContract: {
|
|
|
261
413
|
token_name: string;
|
|
262
414
|
token_description: string | null;
|
|
263
415
|
token_symbol: string;
|
|
416
|
+
token_uri_data: {
|
|
417
|
+
name?: string | undefined;
|
|
418
|
+
description?: string | undefined;
|
|
419
|
+
image_hash?: string | undefined;
|
|
420
|
+
fee_receiver?: string | undefined;
|
|
421
|
+
social_links?: string[] | undefined;
|
|
422
|
+
vesting_recipients?: {
|
|
423
|
+
address: string;
|
|
424
|
+
percentage: number;
|
|
425
|
+
}[] | undefined;
|
|
426
|
+
} | null;
|
|
264
427
|
token_image_public_url: string | null;
|
|
265
428
|
token_creator_address: `0x${string}`;
|
|
266
429
|
token_fee_receiver_address: `0x${string}`;
|
|
267
430
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
268
|
-
token_uri_data?: any;
|
|
269
431
|
};
|
|
270
432
|
};
|
|
271
433
|
graduation_pool: {
|
|
@@ -283,12 +445,22 @@ export declare const rootContract: {
|
|
|
283
445
|
token_name: string;
|
|
284
446
|
token_description: string | null;
|
|
285
447
|
token_symbol: string;
|
|
448
|
+
token_uri_data: {
|
|
449
|
+
name?: string | undefined;
|
|
450
|
+
description?: string | undefined;
|
|
451
|
+
image_hash?: string | undefined;
|
|
452
|
+
fee_receiver?: string | undefined;
|
|
453
|
+
social_links?: string[] | undefined;
|
|
454
|
+
vesting_recipients?: {
|
|
455
|
+
address: string;
|
|
456
|
+
percentage: number;
|
|
457
|
+
}[] | undefined;
|
|
458
|
+
} | null;
|
|
286
459
|
token_image_public_url: string | null;
|
|
287
460
|
token_creator_address: `0x${string}`;
|
|
288
461
|
token_fee_receiver_address: `0x${string}`;
|
|
289
462
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
290
463
|
integrator_address: string;
|
|
291
|
-
token_uri_data?: any;
|
|
292
464
|
};
|
|
293
465
|
};
|
|
294
466
|
}, {
|
|
@@ -322,11 +494,21 @@ export declare const rootContract: {
|
|
|
322
494
|
token_name: string;
|
|
323
495
|
token_description: string | null;
|
|
324
496
|
token_symbol: string;
|
|
497
|
+
token_uri_data: {
|
|
498
|
+
name?: string | undefined;
|
|
499
|
+
description?: string | undefined;
|
|
500
|
+
image_hash?: string | undefined;
|
|
501
|
+
fee_receiver?: string | undefined;
|
|
502
|
+
social_links?: string[] | undefined;
|
|
503
|
+
vesting_recipients?: {
|
|
504
|
+
address: string;
|
|
505
|
+
percentage: number;
|
|
506
|
+
}[] | undefined;
|
|
507
|
+
} | null;
|
|
325
508
|
token_image_public_url: string | null;
|
|
326
509
|
token_creator_address: string;
|
|
327
510
|
token_fee_receiver_address: string;
|
|
328
511
|
token_vesting_recipient_addresses: string[];
|
|
329
|
-
token_uri_data?: any;
|
|
330
512
|
};
|
|
331
513
|
};
|
|
332
514
|
graduation_pool: {
|
|
@@ -344,12 +526,22 @@ export declare const rootContract: {
|
|
|
344
526
|
token_name: string;
|
|
345
527
|
token_description: string | null;
|
|
346
528
|
token_symbol: string;
|
|
529
|
+
token_uri_data: {
|
|
530
|
+
name?: string | undefined;
|
|
531
|
+
description?: string | undefined;
|
|
532
|
+
image_hash?: string | undefined;
|
|
533
|
+
fee_receiver?: string | undefined;
|
|
534
|
+
social_links?: string[] | undefined;
|
|
535
|
+
vesting_recipients?: {
|
|
536
|
+
address: string;
|
|
537
|
+
percentage: number;
|
|
538
|
+
}[] | undefined;
|
|
539
|
+
} | null;
|
|
347
540
|
token_image_public_url: string | null;
|
|
348
541
|
token_creator_address: string;
|
|
349
542
|
token_fee_receiver_address: string;
|
|
350
543
|
token_vesting_recipient_addresses: string[];
|
|
351
544
|
integrator_address: string;
|
|
352
|
-
token_uri_data?: any;
|
|
353
545
|
};
|
|
354
546
|
};
|
|
355
547
|
}>, "many">;
|
|
@@ -385,11 +577,21 @@ export declare const rootContract: {
|
|
|
385
577
|
token_name: string;
|
|
386
578
|
token_description: string | null;
|
|
387
579
|
token_symbol: string;
|
|
580
|
+
token_uri_data: {
|
|
581
|
+
name?: string | undefined;
|
|
582
|
+
description?: string | undefined;
|
|
583
|
+
image_hash?: string | undefined;
|
|
584
|
+
fee_receiver?: string | undefined;
|
|
585
|
+
social_links?: string[] | undefined;
|
|
586
|
+
vesting_recipients?: {
|
|
587
|
+
address: string;
|
|
588
|
+
percentage: number;
|
|
589
|
+
}[] | undefined;
|
|
590
|
+
} | null;
|
|
388
591
|
token_image_public_url: string | null;
|
|
389
592
|
token_creator_address: `0x${string}`;
|
|
390
593
|
token_fee_receiver_address: `0x${string}`;
|
|
391
594
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
392
|
-
token_uri_data?: any;
|
|
393
595
|
};
|
|
394
596
|
};
|
|
395
597
|
graduation_pool: {
|
|
@@ -407,12 +609,22 @@ export declare const rootContract: {
|
|
|
407
609
|
token_name: string;
|
|
408
610
|
token_description: string | null;
|
|
409
611
|
token_symbol: string;
|
|
612
|
+
token_uri_data: {
|
|
613
|
+
name?: string | undefined;
|
|
614
|
+
description?: string | undefined;
|
|
615
|
+
image_hash?: string | undefined;
|
|
616
|
+
fee_receiver?: string | undefined;
|
|
617
|
+
social_links?: string[] | undefined;
|
|
618
|
+
vesting_recipients?: {
|
|
619
|
+
address: string;
|
|
620
|
+
percentage: number;
|
|
621
|
+
}[] | undefined;
|
|
622
|
+
} | null;
|
|
410
623
|
token_image_public_url: string | null;
|
|
411
624
|
token_creator_address: `0x${string}`;
|
|
412
625
|
token_fee_receiver_address: `0x${string}`;
|
|
413
626
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
414
627
|
integrator_address: string;
|
|
415
|
-
token_uri_data?: any;
|
|
416
628
|
};
|
|
417
629
|
};
|
|
418
630
|
}[];
|
|
@@ -448,11 +660,21 @@ export declare const rootContract: {
|
|
|
448
660
|
token_name: string;
|
|
449
661
|
token_description: string | null;
|
|
450
662
|
token_symbol: string;
|
|
663
|
+
token_uri_data: {
|
|
664
|
+
name?: string | undefined;
|
|
665
|
+
description?: string | undefined;
|
|
666
|
+
image_hash?: string | undefined;
|
|
667
|
+
fee_receiver?: string | undefined;
|
|
668
|
+
social_links?: string[] | undefined;
|
|
669
|
+
vesting_recipients?: {
|
|
670
|
+
address: string;
|
|
671
|
+
percentage: number;
|
|
672
|
+
}[] | undefined;
|
|
673
|
+
} | null;
|
|
451
674
|
token_image_public_url: string | null;
|
|
452
675
|
token_creator_address: string;
|
|
453
676
|
token_fee_receiver_address: string;
|
|
454
677
|
token_vesting_recipient_addresses: string[];
|
|
455
|
-
token_uri_data?: any;
|
|
456
678
|
};
|
|
457
679
|
};
|
|
458
680
|
graduation_pool: {
|
|
@@ -470,12 +692,22 @@ export declare const rootContract: {
|
|
|
470
692
|
token_name: string;
|
|
471
693
|
token_description: string | null;
|
|
472
694
|
token_symbol: string;
|
|
695
|
+
token_uri_data: {
|
|
696
|
+
name?: string | undefined;
|
|
697
|
+
description?: string | undefined;
|
|
698
|
+
image_hash?: string | undefined;
|
|
699
|
+
fee_receiver?: string | undefined;
|
|
700
|
+
social_links?: string[] | undefined;
|
|
701
|
+
vesting_recipients?: {
|
|
702
|
+
address: string;
|
|
703
|
+
percentage: number;
|
|
704
|
+
}[] | undefined;
|
|
705
|
+
} | null;
|
|
473
706
|
token_image_public_url: string | null;
|
|
474
707
|
token_creator_address: string;
|
|
475
708
|
token_fee_receiver_address: string;
|
|
476
709
|
token_vesting_recipient_addresses: string[];
|
|
477
710
|
integrator_address: string;
|
|
478
|
-
token_uri_data?: any;
|
|
479
711
|
};
|
|
480
712
|
};
|
|
481
713
|
}[];
|
|
@@ -483,6 +715,7 @@ export declare const rootContract: {
|
|
|
483
715
|
};
|
|
484
716
|
};
|
|
485
717
|
searchAssets: {
|
|
718
|
+
description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
|
|
486
719
|
query: import("zod").ZodObject<{
|
|
487
720
|
term: import("zod").ZodString;
|
|
488
721
|
limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -493,7 +726,6 @@ export declare const rootContract: {
|
|
|
493
726
|
term: string;
|
|
494
727
|
limit?: number | undefined;
|
|
495
728
|
}>;
|
|
496
|
-
description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
|
|
497
729
|
method: "GET";
|
|
498
730
|
path: "/assets/search";
|
|
499
731
|
responses: {
|
|
@@ -529,7 +761,43 @@ export declare const rootContract: {
|
|
|
529
761
|
token_name: import("zod").ZodString;
|
|
530
762
|
token_description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
531
763
|
token_symbol: import("zod").ZodString;
|
|
532
|
-
token_uri_data: import("zod").ZodNullable<import("zod").
|
|
764
|
+
token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
765
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
766
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
767
|
+
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
768
|
+
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
769
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
770
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
771
|
+
address: import("zod").ZodString;
|
|
772
|
+
percentage: import("zod").ZodNumber;
|
|
773
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
774
|
+
address: string;
|
|
775
|
+
percentage: number;
|
|
776
|
+
}, {
|
|
777
|
+
address: string;
|
|
778
|
+
percentage: number;
|
|
779
|
+
}>, "many">>;
|
|
780
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
781
|
+
name?: string | undefined;
|
|
782
|
+
description?: string | undefined;
|
|
783
|
+
image_hash?: string | undefined;
|
|
784
|
+
fee_receiver?: string | undefined;
|
|
785
|
+
social_links?: string[] | undefined;
|
|
786
|
+
vesting_recipients?: {
|
|
787
|
+
address: string;
|
|
788
|
+
percentage: number;
|
|
789
|
+
}[] | undefined;
|
|
790
|
+
}, {
|
|
791
|
+
name?: string | undefined;
|
|
792
|
+
description?: string | undefined;
|
|
793
|
+
image_hash?: string | undefined;
|
|
794
|
+
fee_receiver?: string | undefined;
|
|
795
|
+
social_links?: string[] | undefined;
|
|
796
|
+
vesting_recipients?: {
|
|
797
|
+
address: string;
|
|
798
|
+
percentage: number;
|
|
799
|
+
}[] | undefined;
|
|
800
|
+
}>>;
|
|
533
801
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
534
802
|
token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
535
803
|
token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -539,21 +807,41 @@ export declare const rootContract: {
|
|
|
539
807
|
token_name: string;
|
|
540
808
|
token_description: string | null;
|
|
541
809
|
token_symbol: string;
|
|
810
|
+
token_uri_data: {
|
|
811
|
+
name?: string | undefined;
|
|
812
|
+
description?: string | undefined;
|
|
813
|
+
image_hash?: string | undefined;
|
|
814
|
+
fee_receiver?: string | undefined;
|
|
815
|
+
social_links?: string[] | undefined;
|
|
816
|
+
vesting_recipients?: {
|
|
817
|
+
address: string;
|
|
818
|
+
percentage: number;
|
|
819
|
+
}[] | undefined;
|
|
820
|
+
} | null;
|
|
542
821
|
token_image_public_url: string | null;
|
|
543
822
|
token_creator_address: `0x${string}`;
|
|
544
823
|
token_fee_receiver_address: `0x${string}`;
|
|
545
824
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
546
|
-
token_uri_data?: any;
|
|
547
825
|
}, {
|
|
548
826
|
token_address: string;
|
|
549
827
|
token_name: string;
|
|
550
828
|
token_description: string | null;
|
|
551
829
|
token_symbol: string;
|
|
830
|
+
token_uri_data: {
|
|
831
|
+
name?: string | undefined;
|
|
832
|
+
description?: string | undefined;
|
|
833
|
+
image_hash?: string | undefined;
|
|
834
|
+
fee_receiver?: string | undefined;
|
|
835
|
+
social_links?: string[] | undefined;
|
|
836
|
+
vesting_recipients?: {
|
|
837
|
+
address: string;
|
|
838
|
+
percentage: number;
|
|
839
|
+
}[] | undefined;
|
|
840
|
+
} | null;
|
|
552
841
|
token_image_public_url: string | null;
|
|
553
842
|
token_creator_address: string;
|
|
554
843
|
token_fee_receiver_address: string;
|
|
555
844
|
token_vesting_recipient_addresses: string[];
|
|
556
|
-
token_uri_data?: any;
|
|
557
845
|
}>;
|
|
558
846
|
}, "strip", import("zod").ZodTypeAny, {
|
|
559
847
|
pool_current_price: string;
|
|
@@ -581,11 +869,21 @@ export declare const rootContract: {
|
|
|
581
869
|
token_name: string;
|
|
582
870
|
token_description: string | null;
|
|
583
871
|
token_symbol: string;
|
|
872
|
+
token_uri_data: {
|
|
873
|
+
name?: string | undefined;
|
|
874
|
+
description?: string | undefined;
|
|
875
|
+
image_hash?: string | undefined;
|
|
876
|
+
fee_receiver?: string | undefined;
|
|
877
|
+
social_links?: string[] | undefined;
|
|
878
|
+
vesting_recipients?: {
|
|
879
|
+
address: string;
|
|
880
|
+
percentage: number;
|
|
881
|
+
}[] | undefined;
|
|
882
|
+
} | null;
|
|
584
883
|
token_image_public_url: string | null;
|
|
585
884
|
token_creator_address: `0x${string}`;
|
|
586
885
|
token_fee_receiver_address: `0x${string}`;
|
|
587
886
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
588
|
-
token_uri_data?: any;
|
|
589
887
|
};
|
|
590
888
|
}, {
|
|
591
889
|
pool_current_price: string;
|
|
@@ -613,11 +911,21 @@ export declare const rootContract: {
|
|
|
613
911
|
token_name: string;
|
|
614
912
|
token_description: string | null;
|
|
615
913
|
token_symbol: string;
|
|
914
|
+
token_uri_data: {
|
|
915
|
+
name?: string | undefined;
|
|
916
|
+
description?: string | undefined;
|
|
917
|
+
image_hash?: string | undefined;
|
|
918
|
+
fee_receiver?: string | undefined;
|
|
919
|
+
social_links?: string[] | undefined;
|
|
920
|
+
vesting_recipients?: {
|
|
921
|
+
address: string;
|
|
922
|
+
percentage: number;
|
|
923
|
+
}[] | undefined;
|
|
924
|
+
} | null;
|
|
616
925
|
token_image_public_url: string | null;
|
|
617
926
|
token_creator_address: string;
|
|
618
927
|
token_fee_receiver_address: string;
|
|
619
928
|
token_vesting_recipient_addresses: string[];
|
|
620
|
-
token_uri_data?: any;
|
|
621
929
|
};
|
|
622
930
|
}>;
|
|
623
931
|
graduation_pool: import("zod").ZodObject<{
|
|
@@ -635,7 +943,43 @@ export declare const rootContract: {
|
|
|
635
943
|
token_name: import("zod").ZodString;
|
|
636
944
|
token_description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
637
945
|
token_symbol: import("zod").ZodString;
|
|
638
|
-
token_uri_data: import("zod").ZodNullable<import("zod").
|
|
946
|
+
token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
947
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
948
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
949
|
+
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
950
|
+
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
951
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
952
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
953
|
+
address: import("zod").ZodString;
|
|
954
|
+
percentage: import("zod").ZodNumber;
|
|
955
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
956
|
+
address: string;
|
|
957
|
+
percentage: number;
|
|
958
|
+
}, {
|
|
959
|
+
address: string;
|
|
960
|
+
percentage: number;
|
|
961
|
+
}>, "many">>;
|
|
962
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
963
|
+
name?: string | undefined;
|
|
964
|
+
description?: string | undefined;
|
|
965
|
+
image_hash?: string | undefined;
|
|
966
|
+
fee_receiver?: string | undefined;
|
|
967
|
+
social_links?: string[] | undefined;
|
|
968
|
+
vesting_recipients?: {
|
|
969
|
+
address: string;
|
|
970
|
+
percentage: number;
|
|
971
|
+
}[] | undefined;
|
|
972
|
+
}, {
|
|
973
|
+
name?: string | undefined;
|
|
974
|
+
description?: string | undefined;
|
|
975
|
+
image_hash?: string | undefined;
|
|
976
|
+
fee_receiver?: string | undefined;
|
|
977
|
+
social_links?: string[] | undefined;
|
|
978
|
+
vesting_recipients?: {
|
|
979
|
+
address: string;
|
|
980
|
+
percentage: number;
|
|
981
|
+
}[] | undefined;
|
|
982
|
+
}>>;
|
|
639
983
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
640
984
|
token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
641
985
|
token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -646,23 +990,43 @@ export declare const rootContract: {
|
|
|
646
990
|
token_name: string;
|
|
647
991
|
token_description: string | null;
|
|
648
992
|
token_symbol: string;
|
|
993
|
+
token_uri_data: {
|
|
994
|
+
name?: string | undefined;
|
|
995
|
+
description?: string | undefined;
|
|
996
|
+
image_hash?: string | undefined;
|
|
997
|
+
fee_receiver?: string | undefined;
|
|
998
|
+
social_links?: string[] | undefined;
|
|
999
|
+
vesting_recipients?: {
|
|
1000
|
+
address: string;
|
|
1001
|
+
percentage: number;
|
|
1002
|
+
}[] | undefined;
|
|
1003
|
+
} | null;
|
|
649
1004
|
token_image_public_url: string | null;
|
|
650
1005
|
token_creator_address: `0x${string}`;
|
|
651
1006
|
token_fee_receiver_address: `0x${string}`;
|
|
652
1007
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
653
1008
|
integrator_address: string;
|
|
654
|
-
token_uri_data?: any;
|
|
655
1009
|
}, {
|
|
656
1010
|
token_address: string;
|
|
657
1011
|
token_name: string;
|
|
658
1012
|
token_description: string | null;
|
|
659
1013
|
token_symbol: string;
|
|
1014
|
+
token_uri_data: {
|
|
1015
|
+
name?: string | undefined;
|
|
1016
|
+
description?: string | undefined;
|
|
1017
|
+
image_hash?: string | undefined;
|
|
1018
|
+
fee_receiver?: string | undefined;
|
|
1019
|
+
social_links?: string[] | undefined;
|
|
1020
|
+
vesting_recipients?: {
|
|
1021
|
+
address: string;
|
|
1022
|
+
percentage: number;
|
|
1023
|
+
}[] | undefined;
|
|
1024
|
+
} | null;
|
|
660
1025
|
token_image_public_url: string | null;
|
|
661
1026
|
token_creator_address: string;
|
|
662
1027
|
token_fee_receiver_address: string;
|
|
663
1028
|
token_vesting_recipient_addresses: string[];
|
|
664
1029
|
integrator_address: string;
|
|
665
|
-
token_uri_data?: any;
|
|
666
1030
|
}>;
|
|
667
1031
|
}, "strip", import("zod").ZodTypeAny, {
|
|
668
1032
|
pool_current_price: string;
|
|
@@ -679,12 +1043,22 @@ export declare const rootContract: {
|
|
|
679
1043
|
token_name: string;
|
|
680
1044
|
token_description: string | null;
|
|
681
1045
|
token_symbol: string;
|
|
1046
|
+
token_uri_data: {
|
|
1047
|
+
name?: string | undefined;
|
|
1048
|
+
description?: string | undefined;
|
|
1049
|
+
image_hash?: string | undefined;
|
|
1050
|
+
fee_receiver?: string | undefined;
|
|
1051
|
+
social_links?: string[] | undefined;
|
|
1052
|
+
vesting_recipients?: {
|
|
1053
|
+
address: string;
|
|
1054
|
+
percentage: number;
|
|
1055
|
+
}[] | undefined;
|
|
1056
|
+
} | null;
|
|
682
1057
|
token_image_public_url: string | null;
|
|
683
1058
|
token_creator_address: `0x${string}`;
|
|
684
1059
|
token_fee_receiver_address: `0x${string}`;
|
|
685
1060
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
686
1061
|
integrator_address: string;
|
|
687
|
-
token_uri_data?: any;
|
|
688
1062
|
};
|
|
689
1063
|
}, {
|
|
690
1064
|
pool_current_price: string;
|
|
@@ -701,12 +1075,22 @@ export declare const rootContract: {
|
|
|
701
1075
|
token_name: string;
|
|
702
1076
|
token_description: string | null;
|
|
703
1077
|
token_symbol: string;
|
|
1078
|
+
token_uri_data: {
|
|
1079
|
+
name?: string | undefined;
|
|
1080
|
+
description?: string | undefined;
|
|
1081
|
+
image_hash?: string | undefined;
|
|
1082
|
+
fee_receiver?: string | undefined;
|
|
1083
|
+
social_links?: string[] | undefined;
|
|
1084
|
+
vesting_recipients?: {
|
|
1085
|
+
address: string;
|
|
1086
|
+
percentage: number;
|
|
1087
|
+
}[] | undefined;
|
|
1088
|
+
} | null;
|
|
704
1089
|
token_image_public_url: string | null;
|
|
705
1090
|
token_creator_address: string;
|
|
706
1091
|
token_fee_receiver_address: string;
|
|
707
1092
|
token_vesting_recipient_addresses: string[];
|
|
708
1093
|
integrator_address: string;
|
|
709
|
-
token_uri_data?: any;
|
|
710
1094
|
};
|
|
711
1095
|
}>;
|
|
712
1096
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -740,11 +1124,21 @@ export declare const rootContract: {
|
|
|
740
1124
|
token_name: string;
|
|
741
1125
|
token_description: string | null;
|
|
742
1126
|
token_symbol: string;
|
|
1127
|
+
token_uri_data: {
|
|
1128
|
+
name?: string | undefined;
|
|
1129
|
+
description?: string | undefined;
|
|
1130
|
+
image_hash?: string | undefined;
|
|
1131
|
+
fee_receiver?: string | undefined;
|
|
1132
|
+
social_links?: string[] | undefined;
|
|
1133
|
+
vesting_recipients?: {
|
|
1134
|
+
address: string;
|
|
1135
|
+
percentage: number;
|
|
1136
|
+
}[] | undefined;
|
|
1137
|
+
} | null;
|
|
743
1138
|
token_image_public_url: string | null;
|
|
744
1139
|
token_creator_address: `0x${string}`;
|
|
745
1140
|
token_fee_receiver_address: `0x${string}`;
|
|
746
1141
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
747
|
-
token_uri_data?: any;
|
|
748
1142
|
};
|
|
749
1143
|
};
|
|
750
1144
|
graduation_pool: {
|
|
@@ -762,12 +1156,22 @@ export declare const rootContract: {
|
|
|
762
1156
|
token_name: string;
|
|
763
1157
|
token_description: string | null;
|
|
764
1158
|
token_symbol: string;
|
|
1159
|
+
token_uri_data: {
|
|
1160
|
+
name?: string | undefined;
|
|
1161
|
+
description?: string | undefined;
|
|
1162
|
+
image_hash?: string | undefined;
|
|
1163
|
+
fee_receiver?: string | undefined;
|
|
1164
|
+
social_links?: string[] | undefined;
|
|
1165
|
+
vesting_recipients?: {
|
|
1166
|
+
address: string;
|
|
1167
|
+
percentage: number;
|
|
1168
|
+
}[] | undefined;
|
|
1169
|
+
} | null;
|
|
765
1170
|
token_image_public_url: string | null;
|
|
766
1171
|
token_creator_address: `0x${string}`;
|
|
767
1172
|
token_fee_receiver_address: `0x${string}`;
|
|
768
1173
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
769
1174
|
integrator_address: string;
|
|
770
|
-
token_uri_data?: any;
|
|
771
1175
|
};
|
|
772
1176
|
};
|
|
773
1177
|
}, {
|
|
@@ -801,11 +1205,21 @@ export declare const rootContract: {
|
|
|
801
1205
|
token_name: string;
|
|
802
1206
|
token_description: string | null;
|
|
803
1207
|
token_symbol: string;
|
|
1208
|
+
token_uri_data: {
|
|
1209
|
+
name?: string | undefined;
|
|
1210
|
+
description?: string | undefined;
|
|
1211
|
+
image_hash?: string | undefined;
|
|
1212
|
+
fee_receiver?: string | undefined;
|
|
1213
|
+
social_links?: string[] | undefined;
|
|
1214
|
+
vesting_recipients?: {
|
|
1215
|
+
address: string;
|
|
1216
|
+
percentage: number;
|
|
1217
|
+
}[] | undefined;
|
|
1218
|
+
} | null;
|
|
804
1219
|
token_image_public_url: string | null;
|
|
805
1220
|
token_creator_address: string;
|
|
806
1221
|
token_fee_receiver_address: string;
|
|
807
1222
|
token_vesting_recipient_addresses: string[];
|
|
808
|
-
token_uri_data?: any;
|
|
809
1223
|
};
|
|
810
1224
|
};
|
|
811
1225
|
graduation_pool: {
|
|
@@ -823,12 +1237,22 @@ export declare const rootContract: {
|
|
|
823
1237
|
token_name: string;
|
|
824
1238
|
token_description: string | null;
|
|
825
1239
|
token_symbol: string;
|
|
1240
|
+
token_uri_data: {
|
|
1241
|
+
name?: string | undefined;
|
|
1242
|
+
description?: string | undefined;
|
|
1243
|
+
image_hash?: string | undefined;
|
|
1244
|
+
fee_receiver?: string | undefined;
|
|
1245
|
+
social_links?: string[] | undefined;
|
|
1246
|
+
vesting_recipients?: {
|
|
1247
|
+
address: string;
|
|
1248
|
+
percentage: number;
|
|
1249
|
+
}[] | undefined;
|
|
1250
|
+
} | null;
|
|
826
1251
|
token_image_public_url: string | null;
|
|
827
1252
|
token_creator_address: string;
|
|
828
1253
|
token_fee_receiver_address: string;
|
|
829
1254
|
token_vesting_recipient_addresses: string[];
|
|
830
1255
|
integrator_address: string;
|
|
831
|
-
token_uri_data?: any;
|
|
832
1256
|
};
|
|
833
1257
|
};
|
|
834
1258
|
}>, "many">;
|
|
@@ -864,11 +1288,21 @@ export declare const rootContract: {
|
|
|
864
1288
|
token_name: string;
|
|
865
1289
|
token_description: string | null;
|
|
866
1290
|
token_symbol: string;
|
|
1291
|
+
token_uri_data: {
|
|
1292
|
+
name?: string | undefined;
|
|
1293
|
+
description?: string | undefined;
|
|
1294
|
+
image_hash?: string | undefined;
|
|
1295
|
+
fee_receiver?: string | undefined;
|
|
1296
|
+
social_links?: string[] | undefined;
|
|
1297
|
+
vesting_recipients?: {
|
|
1298
|
+
address: string;
|
|
1299
|
+
percentage: number;
|
|
1300
|
+
}[] | undefined;
|
|
1301
|
+
} | null;
|
|
867
1302
|
token_image_public_url: string | null;
|
|
868
1303
|
token_creator_address: `0x${string}`;
|
|
869
1304
|
token_fee_receiver_address: `0x${string}`;
|
|
870
1305
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
871
|
-
token_uri_data?: any;
|
|
872
1306
|
};
|
|
873
1307
|
};
|
|
874
1308
|
graduation_pool: {
|
|
@@ -886,12 +1320,22 @@ export declare const rootContract: {
|
|
|
886
1320
|
token_name: string;
|
|
887
1321
|
token_description: string | null;
|
|
888
1322
|
token_symbol: string;
|
|
1323
|
+
token_uri_data: {
|
|
1324
|
+
name?: string | undefined;
|
|
1325
|
+
description?: string | undefined;
|
|
1326
|
+
image_hash?: string | undefined;
|
|
1327
|
+
fee_receiver?: string | undefined;
|
|
1328
|
+
social_links?: string[] | undefined;
|
|
1329
|
+
vesting_recipients?: {
|
|
1330
|
+
address: string;
|
|
1331
|
+
percentage: number;
|
|
1332
|
+
}[] | undefined;
|
|
1333
|
+
} | null;
|
|
889
1334
|
token_image_public_url: string | null;
|
|
890
1335
|
token_creator_address: `0x${string}`;
|
|
891
1336
|
token_fee_receiver_address: `0x${string}`;
|
|
892
1337
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
893
1338
|
integrator_address: string;
|
|
894
|
-
token_uri_data?: any;
|
|
895
1339
|
};
|
|
896
1340
|
};
|
|
897
1341
|
}[];
|
|
@@ -927,11 +1371,21 @@ export declare const rootContract: {
|
|
|
927
1371
|
token_name: string;
|
|
928
1372
|
token_description: string | null;
|
|
929
1373
|
token_symbol: string;
|
|
1374
|
+
token_uri_data: {
|
|
1375
|
+
name?: string | undefined;
|
|
1376
|
+
description?: string | undefined;
|
|
1377
|
+
image_hash?: string | undefined;
|
|
1378
|
+
fee_receiver?: string | undefined;
|
|
1379
|
+
social_links?: string[] | undefined;
|
|
1380
|
+
vesting_recipients?: {
|
|
1381
|
+
address: string;
|
|
1382
|
+
percentage: number;
|
|
1383
|
+
}[] | undefined;
|
|
1384
|
+
} | null;
|
|
930
1385
|
token_image_public_url: string | null;
|
|
931
1386
|
token_creator_address: string;
|
|
932
1387
|
token_fee_receiver_address: string;
|
|
933
1388
|
token_vesting_recipient_addresses: string[];
|
|
934
|
-
token_uri_data?: any;
|
|
935
1389
|
};
|
|
936
1390
|
};
|
|
937
1391
|
graduation_pool: {
|
|
@@ -949,12 +1403,22 @@ export declare const rootContract: {
|
|
|
949
1403
|
token_name: string;
|
|
950
1404
|
token_description: string | null;
|
|
951
1405
|
token_symbol: string;
|
|
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?: string[] | undefined;
|
|
1412
|
+
vesting_recipients?: {
|
|
1413
|
+
address: string;
|
|
1414
|
+
percentage: number;
|
|
1415
|
+
}[] | undefined;
|
|
1416
|
+
} | null;
|
|
952
1417
|
token_image_public_url: string | null;
|
|
953
1418
|
token_creator_address: string;
|
|
954
1419
|
token_fee_receiver_address: string;
|
|
955
1420
|
token_vesting_recipient_addresses: string[];
|
|
956
1421
|
integrator_address: string;
|
|
957
|
-
token_uri_data?: any;
|
|
958
1422
|
};
|
|
959
1423
|
};
|
|
960
1424
|
}[];
|
|
@@ -962,6 +1426,7 @@ export declare const rootContract: {
|
|
|
962
1426
|
};
|
|
963
1427
|
};
|
|
964
1428
|
getAsset: {
|
|
1429
|
+
description: "Get an asset by its address";
|
|
965
1430
|
pathParams: import("zod").ZodObject<{
|
|
966
1431
|
assetAddress: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
967
1432
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -969,7 +1434,6 @@ export declare const rootContract: {
|
|
|
969
1434
|
}, {
|
|
970
1435
|
assetAddress: string;
|
|
971
1436
|
}>;
|
|
972
|
-
description: "Get an asset by its address";
|
|
973
1437
|
method: "GET";
|
|
974
1438
|
path: "/assets/:assetAddress";
|
|
975
1439
|
responses: {
|
|
@@ -1005,7 +1469,43 @@ export declare const rootContract: {
|
|
|
1005
1469
|
token_name: import("zod").ZodString;
|
|
1006
1470
|
token_description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1007
1471
|
token_symbol: import("zod").ZodString;
|
|
1008
|
-
token_uri_data: import("zod").ZodNullable<import("zod").
|
|
1472
|
+
token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1473
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1474
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1475
|
+
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1476
|
+
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1477
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
1478
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1479
|
+
address: import("zod").ZodString;
|
|
1480
|
+
percentage: import("zod").ZodNumber;
|
|
1481
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1482
|
+
address: string;
|
|
1483
|
+
percentage: number;
|
|
1484
|
+
}, {
|
|
1485
|
+
address: string;
|
|
1486
|
+
percentage: number;
|
|
1487
|
+
}>, "many">>;
|
|
1488
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1489
|
+
name?: string | undefined;
|
|
1490
|
+
description?: string | undefined;
|
|
1491
|
+
image_hash?: string | undefined;
|
|
1492
|
+
fee_receiver?: string | undefined;
|
|
1493
|
+
social_links?: string[] | undefined;
|
|
1494
|
+
vesting_recipients?: {
|
|
1495
|
+
address: string;
|
|
1496
|
+
percentage: number;
|
|
1497
|
+
}[] | undefined;
|
|
1498
|
+
}, {
|
|
1499
|
+
name?: string | undefined;
|
|
1500
|
+
description?: string | undefined;
|
|
1501
|
+
image_hash?: string | undefined;
|
|
1502
|
+
fee_receiver?: string | undefined;
|
|
1503
|
+
social_links?: string[] | undefined;
|
|
1504
|
+
vesting_recipients?: {
|
|
1505
|
+
address: string;
|
|
1506
|
+
percentage: number;
|
|
1507
|
+
}[] | undefined;
|
|
1508
|
+
}>>;
|
|
1009
1509
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1010
1510
|
token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1011
1511
|
token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -1015,21 +1515,41 @@ export declare const rootContract: {
|
|
|
1015
1515
|
token_name: string;
|
|
1016
1516
|
token_description: string | null;
|
|
1017
1517
|
token_symbol: string;
|
|
1518
|
+
token_uri_data: {
|
|
1519
|
+
name?: string | undefined;
|
|
1520
|
+
description?: string | undefined;
|
|
1521
|
+
image_hash?: string | undefined;
|
|
1522
|
+
fee_receiver?: string | undefined;
|
|
1523
|
+
social_links?: string[] | undefined;
|
|
1524
|
+
vesting_recipients?: {
|
|
1525
|
+
address: string;
|
|
1526
|
+
percentage: number;
|
|
1527
|
+
}[] | undefined;
|
|
1528
|
+
} | null;
|
|
1018
1529
|
token_image_public_url: string | null;
|
|
1019
1530
|
token_creator_address: `0x${string}`;
|
|
1020
1531
|
token_fee_receiver_address: `0x${string}`;
|
|
1021
1532
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1022
|
-
token_uri_data?: any;
|
|
1023
1533
|
}, {
|
|
1024
1534
|
token_address: string;
|
|
1025
1535
|
token_name: string;
|
|
1026
1536
|
token_description: string | null;
|
|
1027
1537
|
token_symbol: string;
|
|
1538
|
+
token_uri_data: {
|
|
1539
|
+
name?: string | undefined;
|
|
1540
|
+
description?: string | undefined;
|
|
1541
|
+
image_hash?: string | undefined;
|
|
1542
|
+
fee_receiver?: string | undefined;
|
|
1543
|
+
social_links?: string[] | undefined;
|
|
1544
|
+
vesting_recipients?: {
|
|
1545
|
+
address: string;
|
|
1546
|
+
percentage: number;
|
|
1547
|
+
}[] | undefined;
|
|
1548
|
+
} | null;
|
|
1028
1549
|
token_image_public_url: string | null;
|
|
1029
1550
|
token_creator_address: string;
|
|
1030
1551
|
token_fee_receiver_address: string;
|
|
1031
1552
|
token_vesting_recipient_addresses: string[];
|
|
1032
|
-
token_uri_data?: any;
|
|
1033
1553
|
}>;
|
|
1034
1554
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1035
1555
|
pool_current_price: string;
|
|
@@ -1057,11 +1577,21 @@ export declare const rootContract: {
|
|
|
1057
1577
|
token_name: string;
|
|
1058
1578
|
token_description: string | null;
|
|
1059
1579
|
token_symbol: string;
|
|
1580
|
+
token_uri_data: {
|
|
1581
|
+
name?: string | undefined;
|
|
1582
|
+
description?: string | undefined;
|
|
1583
|
+
image_hash?: string | undefined;
|
|
1584
|
+
fee_receiver?: string | undefined;
|
|
1585
|
+
social_links?: string[] | undefined;
|
|
1586
|
+
vesting_recipients?: {
|
|
1587
|
+
address: string;
|
|
1588
|
+
percentage: number;
|
|
1589
|
+
}[] | undefined;
|
|
1590
|
+
} | null;
|
|
1060
1591
|
token_image_public_url: string | null;
|
|
1061
1592
|
token_creator_address: `0x${string}`;
|
|
1062
1593
|
token_fee_receiver_address: `0x${string}`;
|
|
1063
1594
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1064
|
-
token_uri_data?: any;
|
|
1065
1595
|
};
|
|
1066
1596
|
}, {
|
|
1067
1597
|
pool_current_price: string;
|
|
@@ -1089,11 +1619,21 @@ export declare const rootContract: {
|
|
|
1089
1619
|
token_name: string;
|
|
1090
1620
|
token_description: string | null;
|
|
1091
1621
|
token_symbol: string;
|
|
1622
|
+
token_uri_data: {
|
|
1623
|
+
name?: string | undefined;
|
|
1624
|
+
description?: string | undefined;
|
|
1625
|
+
image_hash?: string | undefined;
|
|
1626
|
+
fee_receiver?: string | undefined;
|
|
1627
|
+
social_links?: string[] | undefined;
|
|
1628
|
+
vesting_recipients?: {
|
|
1629
|
+
address: string;
|
|
1630
|
+
percentage: number;
|
|
1631
|
+
}[] | undefined;
|
|
1632
|
+
} | null;
|
|
1092
1633
|
token_image_public_url: string | null;
|
|
1093
1634
|
token_creator_address: string;
|
|
1094
1635
|
token_fee_receiver_address: string;
|
|
1095
1636
|
token_vesting_recipient_addresses: string[];
|
|
1096
|
-
token_uri_data?: any;
|
|
1097
1637
|
};
|
|
1098
1638
|
}>;
|
|
1099
1639
|
graduation_pool: import("zod").ZodObject<{
|
|
@@ -1111,7 +1651,43 @@ export declare const rootContract: {
|
|
|
1111
1651
|
token_name: import("zod").ZodString;
|
|
1112
1652
|
token_description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1113
1653
|
token_symbol: import("zod").ZodString;
|
|
1114
|
-
token_uri_data: import("zod").ZodNullable<import("zod").
|
|
1654
|
+
token_uri_data: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1655
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1656
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1657
|
+
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1658
|
+
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1659
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
1660
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1661
|
+
address: import("zod").ZodString;
|
|
1662
|
+
percentage: import("zod").ZodNumber;
|
|
1663
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1664
|
+
address: string;
|
|
1665
|
+
percentage: number;
|
|
1666
|
+
}, {
|
|
1667
|
+
address: string;
|
|
1668
|
+
percentage: number;
|
|
1669
|
+
}>, "many">>;
|
|
1670
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1671
|
+
name?: string | undefined;
|
|
1672
|
+
description?: string | undefined;
|
|
1673
|
+
image_hash?: string | undefined;
|
|
1674
|
+
fee_receiver?: string | undefined;
|
|
1675
|
+
social_links?: string[] | undefined;
|
|
1676
|
+
vesting_recipients?: {
|
|
1677
|
+
address: string;
|
|
1678
|
+
percentage: number;
|
|
1679
|
+
}[] | undefined;
|
|
1680
|
+
}, {
|
|
1681
|
+
name?: string | undefined;
|
|
1682
|
+
description?: string | undefined;
|
|
1683
|
+
image_hash?: string | undefined;
|
|
1684
|
+
fee_receiver?: string | undefined;
|
|
1685
|
+
social_links?: string[] | undefined;
|
|
1686
|
+
vesting_recipients?: {
|
|
1687
|
+
address: string;
|
|
1688
|
+
percentage: number;
|
|
1689
|
+
}[] | undefined;
|
|
1690
|
+
}>>;
|
|
1115
1691
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1116
1692
|
token_creator_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1117
1693
|
token_fee_receiver_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -1122,23 +1698,43 @@ export declare const rootContract: {
|
|
|
1122
1698
|
token_name: string;
|
|
1123
1699
|
token_description: string | null;
|
|
1124
1700
|
token_symbol: string;
|
|
1701
|
+
token_uri_data: {
|
|
1702
|
+
name?: string | undefined;
|
|
1703
|
+
description?: string | undefined;
|
|
1704
|
+
image_hash?: string | undefined;
|
|
1705
|
+
fee_receiver?: string | undefined;
|
|
1706
|
+
social_links?: string[] | undefined;
|
|
1707
|
+
vesting_recipients?: {
|
|
1708
|
+
address: string;
|
|
1709
|
+
percentage: number;
|
|
1710
|
+
}[] | undefined;
|
|
1711
|
+
} | null;
|
|
1125
1712
|
token_image_public_url: string | null;
|
|
1126
1713
|
token_creator_address: `0x${string}`;
|
|
1127
1714
|
token_fee_receiver_address: `0x${string}`;
|
|
1128
1715
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1129
1716
|
integrator_address: string;
|
|
1130
|
-
token_uri_data?: any;
|
|
1131
1717
|
}, {
|
|
1132
1718
|
token_address: string;
|
|
1133
1719
|
token_name: string;
|
|
1134
1720
|
token_description: string | null;
|
|
1135
1721
|
token_symbol: string;
|
|
1722
|
+
token_uri_data: {
|
|
1723
|
+
name?: string | undefined;
|
|
1724
|
+
description?: string | undefined;
|
|
1725
|
+
image_hash?: string | undefined;
|
|
1726
|
+
fee_receiver?: string | undefined;
|
|
1727
|
+
social_links?: string[] | undefined;
|
|
1728
|
+
vesting_recipients?: {
|
|
1729
|
+
address: string;
|
|
1730
|
+
percentage: number;
|
|
1731
|
+
}[] | undefined;
|
|
1732
|
+
} | null;
|
|
1136
1733
|
token_image_public_url: string | null;
|
|
1137
1734
|
token_creator_address: string;
|
|
1138
1735
|
token_fee_receiver_address: string;
|
|
1139
1736
|
token_vesting_recipient_addresses: string[];
|
|
1140
1737
|
integrator_address: string;
|
|
1141
|
-
token_uri_data?: any;
|
|
1142
1738
|
}>;
|
|
1143
1739
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1144
1740
|
pool_current_price: string;
|
|
@@ -1155,12 +1751,22 @@ export declare const rootContract: {
|
|
|
1155
1751
|
token_name: string;
|
|
1156
1752
|
token_description: string | null;
|
|
1157
1753
|
token_symbol: string;
|
|
1754
|
+
token_uri_data: {
|
|
1755
|
+
name?: string | undefined;
|
|
1756
|
+
description?: string | undefined;
|
|
1757
|
+
image_hash?: string | undefined;
|
|
1758
|
+
fee_receiver?: string | undefined;
|
|
1759
|
+
social_links?: string[] | undefined;
|
|
1760
|
+
vesting_recipients?: {
|
|
1761
|
+
address: string;
|
|
1762
|
+
percentage: number;
|
|
1763
|
+
}[] | undefined;
|
|
1764
|
+
} | null;
|
|
1158
1765
|
token_image_public_url: string | null;
|
|
1159
1766
|
token_creator_address: `0x${string}`;
|
|
1160
1767
|
token_fee_receiver_address: `0x${string}`;
|
|
1161
1768
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1162
1769
|
integrator_address: string;
|
|
1163
|
-
token_uri_data?: any;
|
|
1164
1770
|
};
|
|
1165
1771
|
}, {
|
|
1166
1772
|
pool_current_price: string;
|
|
@@ -1177,12 +1783,22 @@ export declare const rootContract: {
|
|
|
1177
1783
|
token_name: string;
|
|
1178
1784
|
token_description: string | null;
|
|
1179
1785
|
token_symbol: string;
|
|
1786
|
+
token_uri_data: {
|
|
1787
|
+
name?: string | undefined;
|
|
1788
|
+
description?: string | undefined;
|
|
1789
|
+
image_hash?: string | undefined;
|
|
1790
|
+
fee_receiver?: string | undefined;
|
|
1791
|
+
social_links?: string[] | undefined;
|
|
1792
|
+
vesting_recipients?: {
|
|
1793
|
+
address: string;
|
|
1794
|
+
percentage: number;
|
|
1795
|
+
}[] | undefined;
|
|
1796
|
+
} | null;
|
|
1180
1797
|
token_image_public_url: string | null;
|
|
1181
1798
|
token_creator_address: string;
|
|
1182
1799
|
token_fee_receiver_address: string;
|
|
1183
1800
|
token_vesting_recipient_addresses: string[];
|
|
1184
1801
|
integrator_address: string;
|
|
1185
|
-
token_uri_data?: any;
|
|
1186
1802
|
};
|
|
1187
1803
|
}>;
|
|
1188
1804
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -1216,11 +1832,21 @@ export declare const rootContract: {
|
|
|
1216
1832
|
token_name: string;
|
|
1217
1833
|
token_description: string | null;
|
|
1218
1834
|
token_symbol: string;
|
|
1835
|
+
token_uri_data: {
|
|
1836
|
+
name?: string | undefined;
|
|
1837
|
+
description?: string | undefined;
|
|
1838
|
+
image_hash?: string | undefined;
|
|
1839
|
+
fee_receiver?: string | undefined;
|
|
1840
|
+
social_links?: string[] | undefined;
|
|
1841
|
+
vesting_recipients?: {
|
|
1842
|
+
address: string;
|
|
1843
|
+
percentage: number;
|
|
1844
|
+
}[] | undefined;
|
|
1845
|
+
} | null;
|
|
1219
1846
|
token_image_public_url: string | null;
|
|
1220
1847
|
token_creator_address: `0x${string}`;
|
|
1221
1848
|
token_fee_receiver_address: `0x${string}`;
|
|
1222
1849
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1223
|
-
token_uri_data?: any;
|
|
1224
1850
|
};
|
|
1225
1851
|
};
|
|
1226
1852
|
graduation_pool: {
|
|
@@ -1238,12 +1864,22 @@ export declare const rootContract: {
|
|
|
1238
1864
|
token_name: string;
|
|
1239
1865
|
token_description: string | null;
|
|
1240
1866
|
token_symbol: string;
|
|
1867
|
+
token_uri_data: {
|
|
1868
|
+
name?: string | undefined;
|
|
1869
|
+
description?: string | undefined;
|
|
1870
|
+
image_hash?: string | undefined;
|
|
1871
|
+
fee_receiver?: string | undefined;
|
|
1872
|
+
social_links?: string[] | undefined;
|
|
1873
|
+
vesting_recipients?: {
|
|
1874
|
+
address: string;
|
|
1875
|
+
percentage: number;
|
|
1876
|
+
}[] | undefined;
|
|
1877
|
+
} | null;
|
|
1241
1878
|
token_image_public_url: string | null;
|
|
1242
1879
|
token_creator_address: `0x${string}`;
|
|
1243
1880
|
token_fee_receiver_address: `0x${string}`;
|
|
1244
1881
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1245
1882
|
integrator_address: string;
|
|
1246
|
-
token_uri_data?: any;
|
|
1247
1883
|
};
|
|
1248
1884
|
};
|
|
1249
1885
|
}, {
|
|
@@ -1277,11 +1913,21 @@ export declare const rootContract: {
|
|
|
1277
1913
|
token_name: string;
|
|
1278
1914
|
token_description: string | null;
|
|
1279
1915
|
token_symbol: string;
|
|
1916
|
+
token_uri_data: {
|
|
1917
|
+
name?: string | undefined;
|
|
1918
|
+
description?: string | undefined;
|
|
1919
|
+
image_hash?: string | undefined;
|
|
1920
|
+
fee_receiver?: string | undefined;
|
|
1921
|
+
social_links?: string[] | undefined;
|
|
1922
|
+
vesting_recipients?: {
|
|
1923
|
+
address: string;
|
|
1924
|
+
percentage: number;
|
|
1925
|
+
}[] | undefined;
|
|
1926
|
+
} | null;
|
|
1280
1927
|
token_image_public_url: string | null;
|
|
1281
1928
|
token_creator_address: string;
|
|
1282
1929
|
token_fee_receiver_address: string;
|
|
1283
1930
|
token_vesting_recipient_addresses: string[];
|
|
1284
|
-
token_uri_data?: any;
|
|
1285
1931
|
};
|
|
1286
1932
|
};
|
|
1287
1933
|
graduation_pool: {
|
|
@@ -1299,12 +1945,22 @@ export declare const rootContract: {
|
|
|
1299
1945
|
token_name: string;
|
|
1300
1946
|
token_description: string | null;
|
|
1301
1947
|
token_symbol: string;
|
|
1948
|
+
token_uri_data: {
|
|
1949
|
+
name?: string | undefined;
|
|
1950
|
+
description?: string | undefined;
|
|
1951
|
+
image_hash?: string | undefined;
|
|
1952
|
+
fee_receiver?: string | undefined;
|
|
1953
|
+
social_links?: string[] | undefined;
|
|
1954
|
+
vesting_recipients?: {
|
|
1955
|
+
address: string;
|
|
1956
|
+
percentage: number;
|
|
1957
|
+
}[] | undefined;
|
|
1958
|
+
} | null;
|
|
1302
1959
|
token_image_public_url: string | null;
|
|
1303
1960
|
token_creator_address: string;
|
|
1304
1961
|
token_fee_receiver_address: string;
|
|
1305
1962
|
token_vesting_recipient_addresses: string[];
|
|
1306
1963
|
integrator_address: string;
|
|
1307
|
-
token_uri_data?: any;
|
|
1308
1964
|
};
|
|
1309
1965
|
};
|
|
1310
1966
|
}>;
|
|
@@ -1340,11 +1996,21 @@ export declare const rootContract: {
|
|
|
1340
1996
|
token_name: string;
|
|
1341
1997
|
token_description: string | null;
|
|
1342
1998
|
token_symbol: string;
|
|
1999
|
+
token_uri_data: {
|
|
2000
|
+
name?: string | undefined;
|
|
2001
|
+
description?: string | undefined;
|
|
2002
|
+
image_hash?: string | undefined;
|
|
2003
|
+
fee_receiver?: string | undefined;
|
|
2004
|
+
social_links?: string[] | undefined;
|
|
2005
|
+
vesting_recipients?: {
|
|
2006
|
+
address: string;
|
|
2007
|
+
percentage: number;
|
|
2008
|
+
}[] | undefined;
|
|
2009
|
+
} | null;
|
|
1343
2010
|
token_image_public_url: string | null;
|
|
1344
2011
|
token_creator_address: `0x${string}`;
|
|
1345
2012
|
token_fee_receiver_address: `0x${string}`;
|
|
1346
2013
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1347
|
-
token_uri_data?: any;
|
|
1348
2014
|
};
|
|
1349
2015
|
};
|
|
1350
2016
|
graduation_pool: {
|
|
@@ -1362,12 +2028,22 @@ export declare const rootContract: {
|
|
|
1362
2028
|
token_name: string;
|
|
1363
2029
|
token_description: string | null;
|
|
1364
2030
|
token_symbol: string;
|
|
2031
|
+
token_uri_data: {
|
|
2032
|
+
name?: string | undefined;
|
|
2033
|
+
description?: string | undefined;
|
|
2034
|
+
image_hash?: string | undefined;
|
|
2035
|
+
fee_receiver?: string | undefined;
|
|
2036
|
+
social_links?: string[] | undefined;
|
|
2037
|
+
vesting_recipients?: {
|
|
2038
|
+
address: string;
|
|
2039
|
+
percentage: number;
|
|
2040
|
+
}[] | undefined;
|
|
2041
|
+
} | null;
|
|
1365
2042
|
token_image_public_url: string | null;
|
|
1366
2043
|
token_creator_address: `0x${string}`;
|
|
1367
2044
|
token_fee_receiver_address: `0x${string}`;
|
|
1368
2045
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1369
2046
|
integrator_address: string;
|
|
1370
|
-
token_uri_data?: any;
|
|
1371
2047
|
};
|
|
1372
2048
|
};
|
|
1373
2049
|
};
|
|
@@ -1403,11 +2079,21 @@ export declare const rootContract: {
|
|
|
1403
2079
|
token_name: string;
|
|
1404
2080
|
token_description: string | null;
|
|
1405
2081
|
token_symbol: string;
|
|
2082
|
+
token_uri_data: {
|
|
2083
|
+
name?: string | undefined;
|
|
2084
|
+
description?: string | undefined;
|
|
2085
|
+
image_hash?: string | undefined;
|
|
2086
|
+
fee_receiver?: string | undefined;
|
|
2087
|
+
social_links?: string[] | undefined;
|
|
2088
|
+
vesting_recipients?: {
|
|
2089
|
+
address: string;
|
|
2090
|
+
percentage: number;
|
|
2091
|
+
}[] | undefined;
|
|
2092
|
+
} | null;
|
|
1406
2093
|
token_image_public_url: string | null;
|
|
1407
2094
|
token_creator_address: string;
|
|
1408
2095
|
token_fee_receiver_address: string;
|
|
1409
2096
|
token_vesting_recipient_addresses: string[];
|
|
1410
|
-
token_uri_data?: any;
|
|
1411
2097
|
};
|
|
1412
2098
|
};
|
|
1413
2099
|
graduation_pool: {
|
|
@@ -1425,12 +2111,22 @@ export declare const rootContract: {
|
|
|
1425
2111
|
token_name: string;
|
|
1426
2112
|
token_description: string | null;
|
|
1427
2113
|
token_symbol: string;
|
|
2114
|
+
token_uri_data: {
|
|
2115
|
+
name?: string | undefined;
|
|
2116
|
+
description?: string | undefined;
|
|
2117
|
+
image_hash?: string | undefined;
|
|
2118
|
+
fee_receiver?: string | undefined;
|
|
2119
|
+
social_links?: string[] | undefined;
|
|
2120
|
+
vesting_recipients?: {
|
|
2121
|
+
address: string;
|
|
2122
|
+
percentage: number;
|
|
2123
|
+
}[] | undefined;
|
|
2124
|
+
} | null;
|
|
1428
2125
|
token_image_public_url: string | null;
|
|
1429
2126
|
token_creator_address: string;
|
|
1430
2127
|
token_fee_receiver_address: string;
|
|
1431
2128
|
token_vesting_recipient_addresses: string[];
|
|
1432
2129
|
integrator_address: string;
|
|
1433
|
-
token_uri_data?: any;
|
|
1434
2130
|
};
|
|
1435
2131
|
};
|
|
1436
2132
|
};
|
|
@@ -1499,6 +2195,7 @@ export declare const rootContract: {
|
|
|
1499
2195
|
};
|
|
1500
2196
|
};
|
|
1501
2197
|
getAuctionByPoolAddress: {
|
|
2198
|
+
description: "Get an auction by its pool address";
|
|
1502
2199
|
pathParams: import("zod").ZodObject<{
|
|
1503
2200
|
poolAddress: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1504
2201
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -1506,7 +2203,6 @@ export declare const rootContract: {
|
|
|
1506
2203
|
}, {
|
|
1507
2204
|
poolAddress: string;
|
|
1508
2205
|
}>;
|
|
1509
|
-
description: "Get an auction by its pool address";
|
|
1510
2206
|
method: "GET";
|
|
1511
2207
|
path: "/auctions/:poolAddress";
|
|
1512
2208
|
responses: {
|
|
@@ -1755,25 +2451,25 @@ export declare const rootContract: {
|
|
|
1755
2451
|
name: import("zod").ZodString;
|
|
1756
2452
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1757
2453
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2454
|
+
name: string;
|
|
1758
2455
|
description: string | null;
|
|
1759
2456
|
id: string;
|
|
1760
|
-
name: string;
|
|
1761
2457
|
}, {
|
|
2458
|
+
name: string;
|
|
1762
2459
|
description: string | null;
|
|
1763
2460
|
id: string;
|
|
1764
|
-
name: string;
|
|
1765
2461
|
}>, "many">;
|
|
1766
2462
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1767
2463
|
result: {
|
|
2464
|
+
name: string;
|
|
1768
2465
|
description: string | null;
|
|
1769
2466
|
id: string;
|
|
1770
|
-
name: string;
|
|
1771
2467
|
}[];
|
|
1772
2468
|
}, {
|
|
1773
2469
|
result: {
|
|
2470
|
+
name: string;
|
|
1774
2471
|
description: string | null;
|
|
1775
2472
|
id: string;
|
|
1776
|
-
name: string;
|
|
1777
2473
|
}[];
|
|
1778
2474
|
}>;
|
|
1779
2475
|
};
|
|
@@ -1922,9 +2618,10 @@ export declare const rootContract: {
|
|
|
1922
2618
|
}>, "many">;
|
|
1923
2619
|
fee_receiver: import("zod").ZodString;
|
|
1924
2620
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1925
|
-
description: string;
|
|
1926
2621
|
name: string;
|
|
2622
|
+
description: string;
|
|
1927
2623
|
image_hash: string;
|
|
2624
|
+
fee_receiver: string;
|
|
1928
2625
|
social_links: {
|
|
1929
2626
|
label: string;
|
|
1930
2627
|
url: string;
|
|
@@ -1933,11 +2630,11 @@ export declare const rootContract: {
|
|
|
1933
2630
|
address: string;
|
|
1934
2631
|
percentage: number;
|
|
1935
2632
|
}[];
|
|
1936
|
-
fee_receiver: string;
|
|
1937
2633
|
}, {
|
|
1938
|
-
description: string;
|
|
1939
2634
|
name: string;
|
|
2635
|
+
description: string;
|
|
1940
2636
|
image_hash: string;
|
|
2637
|
+
fee_receiver: string;
|
|
1941
2638
|
social_links: {
|
|
1942
2639
|
label: string;
|
|
1943
2640
|
url: string;
|
|
@@ -1946,7 +2643,6 @@ export declare const rootContract: {
|
|
|
1946
2643
|
address: string;
|
|
1947
2644
|
percentage: number;
|
|
1948
2645
|
}[];
|
|
1949
|
-
fee_receiver: string;
|
|
1950
2646
|
}>;
|
|
1951
2647
|
path: "/ipfs/upload-metadata";
|
|
1952
2648
|
responses: {
|