@longdotxyz/shared 0.0.29 → 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/auction.contract.js +10 -10
- package/dist/contracts/auction.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +762 -66
- package/dist/contracts/ipfs.contract.d.ts +4 -4
- package/package.json +1 -1
|
@@ -31,7 +31,43 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
31
31
|
token_name: z.ZodString;
|
|
32
32
|
token_description: z.ZodNullable<z.ZodString>;
|
|
33
33
|
token_symbol: z.ZodString;
|
|
34
|
-
token_uri_data: z.ZodNullable<z.
|
|
34
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
35
|
+
name: z.ZodOptional<z.ZodString>;
|
|
36
|
+
description: z.ZodOptional<z.ZodString>;
|
|
37
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
38
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
39
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
40
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
41
|
+
address: z.ZodString;
|
|
42
|
+
percentage: z.ZodNumber;
|
|
43
|
+
}, "strip", z.ZodTypeAny, {
|
|
44
|
+
address: string;
|
|
45
|
+
percentage: number;
|
|
46
|
+
}, {
|
|
47
|
+
address: string;
|
|
48
|
+
percentage: number;
|
|
49
|
+
}>, "many">>;
|
|
50
|
+
}, "strip", z.ZodTypeAny, {
|
|
51
|
+
name?: string | undefined;
|
|
52
|
+
description?: string | undefined;
|
|
53
|
+
image_hash?: string | undefined;
|
|
54
|
+
fee_receiver?: string | undefined;
|
|
55
|
+
social_links?: string[] | undefined;
|
|
56
|
+
vesting_recipients?: {
|
|
57
|
+
address: string;
|
|
58
|
+
percentage: number;
|
|
59
|
+
}[] | undefined;
|
|
60
|
+
}, {
|
|
61
|
+
name?: string | undefined;
|
|
62
|
+
description?: string | undefined;
|
|
63
|
+
image_hash?: string | undefined;
|
|
64
|
+
fee_receiver?: string | undefined;
|
|
65
|
+
social_links?: string[] | undefined;
|
|
66
|
+
vesting_recipients?: {
|
|
67
|
+
address: string;
|
|
68
|
+
percentage: number;
|
|
69
|
+
}[] | undefined;
|
|
70
|
+
}>>;
|
|
35
71
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
36
72
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
37
73
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -41,21 +77,41 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
41
77
|
token_name: string;
|
|
42
78
|
token_description: string | null;
|
|
43
79
|
token_symbol: string;
|
|
80
|
+
token_uri_data: {
|
|
81
|
+
name?: string | undefined;
|
|
82
|
+
description?: string | undefined;
|
|
83
|
+
image_hash?: string | undefined;
|
|
84
|
+
fee_receiver?: string | undefined;
|
|
85
|
+
social_links?: string[] | undefined;
|
|
86
|
+
vesting_recipients?: {
|
|
87
|
+
address: string;
|
|
88
|
+
percentage: number;
|
|
89
|
+
}[] | undefined;
|
|
90
|
+
} | null;
|
|
44
91
|
token_image_public_url: string | null;
|
|
45
92
|
token_creator_address: `0x${string}`;
|
|
46
93
|
token_fee_receiver_address: `0x${string}`;
|
|
47
94
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
48
|
-
token_uri_data?: any;
|
|
49
95
|
}, {
|
|
50
96
|
token_address: string;
|
|
51
97
|
token_name: string;
|
|
52
98
|
token_description: string | null;
|
|
53
99
|
token_symbol: string;
|
|
100
|
+
token_uri_data: {
|
|
101
|
+
name?: string | undefined;
|
|
102
|
+
description?: string | undefined;
|
|
103
|
+
image_hash?: string | undefined;
|
|
104
|
+
fee_receiver?: string | undefined;
|
|
105
|
+
social_links?: string[] | undefined;
|
|
106
|
+
vesting_recipients?: {
|
|
107
|
+
address: string;
|
|
108
|
+
percentage: number;
|
|
109
|
+
}[] | undefined;
|
|
110
|
+
} | null;
|
|
54
111
|
token_image_public_url: string | null;
|
|
55
112
|
token_creator_address: string;
|
|
56
113
|
token_fee_receiver_address: string;
|
|
57
114
|
token_vesting_recipient_addresses: string[];
|
|
58
|
-
token_uri_data?: any;
|
|
59
115
|
}>;
|
|
60
116
|
}, "strip", z.ZodTypeAny, {
|
|
61
117
|
pool_current_price: string;
|
|
@@ -83,11 +139,21 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
83
139
|
token_name: string;
|
|
84
140
|
token_description: string | null;
|
|
85
141
|
token_symbol: string;
|
|
142
|
+
token_uri_data: {
|
|
143
|
+
name?: string | undefined;
|
|
144
|
+
description?: string | undefined;
|
|
145
|
+
image_hash?: string | undefined;
|
|
146
|
+
fee_receiver?: string | undefined;
|
|
147
|
+
social_links?: string[] | undefined;
|
|
148
|
+
vesting_recipients?: {
|
|
149
|
+
address: string;
|
|
150
|
+
percentage: number;
|
|
151
|
+
}[] | undefined;
|
|
152
|
+
} | null;
|
|
86
153
|
token_image_public_url: string | null;
|
|
87
154
|
token_creator_address: `0x${string}`;
|
|
88
155
|
token_fee_receiver_address: `0x${string}`;
|
|
89
156
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
90
|
-
token_uri_data?: any;
|
|
91
157
|
};
|
|
92
158
|
}, {
|
|
93
159
|
pool_current_price: string;
|
|
@@ -115,11 +181,21 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
115
181
|
token_name: string;
|
|
116
182
|
token_description: string | null;
|
|
117
183
|
token_symbol: string;
|
|
184
|
+
token_uri_data: {
|
|
185
|
+
name?: string | undefined;
|
|
186
|
+
description?: string | undefined;
|
|
187
|
+
image_hash?: string | undefined;
|
|
188
|
+
fee_receiver?: string | undefined;
|
|
189
|
+
social_links?: string[] | undefined;
|
|
190
|
+
vesting_recipients?: {
|
|
191
|
+
address: string;
|
|
192
|
+
percentage: number;
|
|
193
|
+
}[] | undefined;
|
|
194
|
+
} | null;
|
|
118
195
|
token_image_public_url: string | null;
|
|
119
196
|
token_creator_address: string;
|
|
120
197
|
token_fee_receiver_address: string;
|
|
121
198
|
token_vesting_recipient_addresses: string[];
|
|
122
|
-
token_uri_data?: any;
|
|
123
199
|
};
|
|
124
200
|
}>;
|
|
125
201
|
graduation_pool: z.ZodObject<{
|
|
@@ -137,7 +213,43 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
137
213
|
token_name: z.ZodString;
|
|
138
214
|
token_description: z.ZodNullable<z.ZodString>;
|
|
139
215
|
token_symbol: z.ZodString;
|
|
140
|
-
token_uri_data: z.ZodNullable<z.
|
|
216
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
217
|
+
name: z.ZodOptional<z.ZodString>;
|
|
218
|
+
description: z.ZodOptional<z.ZodString>;
|
|
219
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
220
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
221
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
222
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
223
|
+
address: z.ZodString;
|
|
224
|
+
percentage: z.ZodNumber;
|
|
225
|
+
}, "strip", z.ZodTypeAny, {
|
|
226
|
+
address: string;
|
|
227
|
+
percentage: number;
|
|
228
|
+
}, {
|
|
229
|
+
address: string;
|
|
230
|
+
percentage: number;
|
|
231
|
+
}>, "many">>;
|
|
232
|
+
}, "strip", z.ZodTypeAny, {
|
|
233
|
+
name?: string | undefined;
|
|
234
|
+
description?: string | undefined;
|
|
235
|
+
image_hash?: string | undefined;
|
|
236
|
+
fee_receiver?: string | undefined;
|
|
237
|
+
social_links?: string[] | undefined;
|
|
238
|
+
vesting_recipients?: {
|
|
239
|
+
address: string;
|
|
240
|
+
percentage: number;
|
|
241
|
+
}[] | undefined;
|
|
242
|
+
}, {
|
|
243
|
+
name?: string | undefined;
|
|
244
|
+
description?: string | undefined;
|
|
245
|
+
image_hash?: string | undefined;
|
|
246
|
+
fee_receiver?: string | undefined;
|
|
247
|
+
social_links?: string[] | undefined;
|
|
248
|
+
vesting_recipients?: {
|
|
249
|
+
address: string;
|
|
250
|
+
percentage: number;
|
|
251
|
+
}[] | undefined;
|
|
252
|
+
}>>;
|
|
141
253
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
142
254
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
143
255
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -148,23 +260,43 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
148
260
|
token_name: string;
|
|
149
261
|
token_description: string | null;
|
|
150
262
|
token_symbol: string;
|
|
263
|
+
token_uri_data: {
|
|
264
|
+
name?: string | undefined;
|
|
265
|
+
description?: string | undefined;
|
|
266
|
+
image_hash?: string | undefined;
|
|
267
|
+
fee_receiver?: string | undefined;
|
|
268
|
+
social_links?: string[] | undefined;
|
|
269
|
+
vesting_recipients?: {
|
|
270
|
+
address: string;
|
|
271
|
+
percentage: number;
|
|
272
|
+
}[] | undefined;
|
|
273
|
+
} | null;
|
|
151
274
|
token_image_public_url: string | null;
|
|
152
275
|
token_creator_address: `0x${string}`;
|
|
153
276
|
token_fee_receiver_address: `0x${string}`;
|
|
154
277
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
155
278
|
integrator_address: string;
|
|
156
|
-
token_uri_data?: any;
|
|
157
279
|
}, {
|
|
158
280
|
token_address: string;
|
|
159
281
|
token_name: string;
|
|
160
282
|
token_description: string | null;
|
|
161
283
|
token_symbol: string;
|
|
284
|
+
token_uri_data: {
|
|
285
|
+
name?: string | undefined;
|
|
286
|
+
description?: string | undefined;
|
|
287
|
+
image_hash?: string | undefined;
|
|
288
|
+
fee_receiver?: string | undefined;
|
|
289
|
+
social_links?: string[] | undefined;
|
|
290
|
+
vesting_recipients?: {
|
|
291
|
+
address: string;
|
|
292
|
+
percentage: number;
|
|
293
|
+
}[] | undefined;
|
|
294
|
+
} | null;
|
|
162
295
|
token_image_public_url: string | null;
|
|
163
296
|
token_creator_address: string;
|
|
164
297
|
token_fee_receiver_address: string;
|
|
165
298
|
token_vesting_recipient_addresses: string[];
|
|
166
299
|
integrator_address: string;
|
|
167
|
-
token_uri_data?: any;
|
|
168
300
|
}>;
|
|
169
301
|
}, "strip", z.ZodTypeAny, {
|
|
170
302
|
pool_current_price: string;
|
|
@@ -181,12 +313,22 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
181
313
|
token_name: string;
|
|
182
314
|
token_description: string | null;
|
|
183
315
|
token_symbol: string;
|
|
316
|
+
token_uri_data: {
|
|
317
|
+
name?: string | undefined;
|
|
318
|
+
description?: string | undefined;
|
|
319
|
+
image_hash?: string | undefined;
|
|
320
|
+
fee_receiver?: string | undefined;
|
|
321
|
+
social_links?: string[] | undefined;
|
|
322
|
+
vesting_recipients?: {
|
|
323
|
+
address: string;
|
|
324
|
+
percentage: number;
|
|
325
|
+
}[] | undefined;
|
|
326
|
+
} | null;
|
|
184
327
|
token_image_public_url: string | null;
|
|
185
328
|
token_creator_address: `0x${string}`;
|
|
186
329
|
token_fee_receiver_address: `0x${string}`;
|
|
187
330
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
188
331
|
integrator_address: string;
|
|
189
|
-
token_uri_data?: any;
|
|
190
332
|
};
|
|
191
333
|
}, {
|
|
192
334
|
pool_current_price: string;
|
|
@@ -203,12 +345,22 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
203
345
|
token_name: string;
|
|
204
346
|
token_description: string | null;
|
|
205
347
|
token_symbol: string;
|
|
348
|
+
token_uri_data: {
|
|
349
|
+
name?: string | undefined;
|
|
350
|
+
description?: string | undefined;
|
|
351
|
+
image_hash?: string | undefined;
|
|
352
|
+
fee_receiver?: string | undefined;
|
|
353
|
+
social_links?: string[] | undefined;
|
|
354
|
+
vesting_recipients?: {
|
|
355
|
+
address: string;
|
|
356
|
+
percentage: number;
|
|
357
|
+
}[] | undefined;
|
|
358
|
+
} | null;
|
|
206
359
|
token_image_public_url: string | null;
|
|
207
360
|
token_creator_address: string;
|
|
208
361
|
token_fee_receiver_address: string;
|
|
209
362
|
token_vesting_recipient_addresses: string[];
|
|
210
363
|
integrator_address: string;
|
|
211
|
-
token_uri_data?: any;
|
|
212
364
|
};
|
|
213
365
|
}>;
|
|
214
366
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -242,11 +394,21 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
242
394
|
token_name: string;
|
|
243
395
|
token_description: string | null;
|
|
244
396
|
token_symbol: string;
|
|
397
|
+
token_uri_data: {
|
|
398
|
+
name?: string | undefined;
|
|
399
|
+
description?: string | undefined;
|
|
400
|
+
image_hash?: string | undefined;
|
|
401
|
+
fee_receiver?: string | undefined;
|
|
402
|
+
social_links?: string[] | undefined;
|
|
403
|
+
vesting_recipients?: {
|
|
404
|
+
address: string;
|
|
405
|
+
percentage: number;
|
|
406
|
+
}[] | undefined;
|
|
407
|
+
} | null;
|
|
245
408
|
token_image_public_url: string | null;
|
|
246
409
|
token_creator_address: `0x${string}`;
|
|
247
410
|
token_fee_receiver_address: `0x${string}`;
|
|
248
411
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
249
|
-
token_uri_data?: any;
|
|
250
412
|
};
|
|
251
413
|
};
|
|
252
414
|
graduation_pool: {
|
|
@@ -264,12 +426,22 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
264
426
|
token_name: string;
|
|
265
427
|
token_description: string | null;
|
|
266
428
|
token_symbol: string;
|
|
429
|
+
token_uri_data: {
|
|
430
|
+
name?: string | undefined;
|
|
431
|
+
description?: string | undefined;
|
|
432
|
+
image_hash?: string | undefined;
|
|
433
|
+
fee_receiver?: string | undefined;
|
|
434
|
+
social_links?: string[] | undefined;
|
|
435
|
+
vesting_recipients?: {
|
|
436
|
+
address: string;
|
|
437
|
+
percentage: number;
|
|
438
|
+
}[] | undefined;
|
|
439
|
+
} | null;
|
|
267
440
|
token_image_public_url: string | null;
|
|
268
441
|
token_creator_address: `0x${string}`;
|
|
269
442
|
token_fee_receiver_address: `0x${string}`;
|
|
270
443
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
271
444
|
integrator_address: string;
|
|
272
|
-
token_uri_data?: any;
|
|
273
445
|
};
|
|
274
446
|
};
|
|
275
447
|
}, {
|
|
@@ -303,11 +475,21 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
303
475
|
token_name: string;
|
|
304
476
|
token_description: string | null;
|
|
305
477
|
token_symbol: string;
|
|
478
|
+
token_uri_data: {
|
|
479
|
+
name?: string | undefined;
|
|
480
|
+
description?: string | undefined;
|
|
481
|
+
image_hash?: string | undefined;
|
|
482
|
+
fee_receiver?: string | undefined;
|
|
483
|
+
social_links?: string[] | undefined;
|
|
484
|
+
vesting_recipients?: {
|
|
485
|
+
address: string;
|
|
486
|
+
percentage: number;
|
|
487
|
+
}[] | undefined;
|
|
488
|
+
} | null;
|
|
306
489
|
token_image_public_url: string | null;
|
|
307
490
|
token_creator_address: string;
|
|
308
491
|
token_fee_receiver_address: string;
|
|
309
492
|
token_vesting_recipient_addresses: string[];
|
|
310
|
-
token_uri_data?: any;
|
|
311
493
|
};
|
|
312
494
|
};
|
|
313
495
|
graduation_pool: {
|
|
@@ -325,17 +507,28 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
325
507
|
token_name: string;
|
|
326
508
|
token_description: string | null;
|
|
327
509
|
token_symbol: string;
|
|
510
|
+
token_uri_data: {
|
|
511
|
+
name?: string | undefined;
|
|
512
|
+
description?: string | undefined;
|
|
513
|
+
image_hash?: string | undefined;
|
|
514
|
+
fee_receiver?: string | undefined;
|
|
515
|
+
social_links?: string[] | undefined;
|
|
516
|
+
vesting_recipients?: {
|
|
517
|
+
address: string;
|
|
518
|
+
percentage: number;
|
|
519
|
+
}[] | undefined;
|
|
520
|
+
} | null;
|
|
328
521
|
token_image_public_url: string | null;
|
|
329
522
|
token_creator_address: string;
|
|
330
523
|
token_fee_receiver_address: string;
|
|
331
524
|
token_vesting_recipient_addresses: string[];
|
|
332
525
|
integrator_address: string;
|
|
333
|
-
token_uri_data?: any;
|
|
334
526
|
};
|
|
335
527
|
};
|
|
336
528
|
}>;
|
|
337
529
|
declare const assetContract: {
|
|
338
530
|
listAssets: {
|
|
531
|
+
description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
|
|
339
532
|
query: z.ZodObject<{
|
|
340
533
|
status: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof AssetStatus>>>;
|
|
341
534
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -349,7 +542,6 @@ declare const assetContract: {
|
|
|
349
542
|
limit?: number | undefined;
|
|
350
543
|
offset?: number | undefined;
|
|
351
544
|
}>;
|
|
352
|
-
description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
|
|
353
545
|
method: "GET";
|
|
354
546
|
path: "/assets/";
|
|
355
547
|
responses: {
|
|
@@ -385,7 +577,43 @@ declare const assetContract: {
|
|
|
385
577
|
token_name: z.ZodString;
|
|
386
578
|
token_description: z.ZodNullable<z.ZodString>;
|
|
387
579
|
token_symbol: z.ZodString;
|
|
388
|
-
token_uri_data: z.ZodNullable<z.
|
|
580
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
581
|
+
name: z.ZodOptional<z.ZodString>;
|
|
582
|
+
description: z.ZodOptional<z.ZodString>;
|
|
583
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
584
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
585
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
586
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
587
|
+
address: z.ZodString;
|
|
588
|
+
percentage: z.ZodNumber;
|
|
589
|
+
}, "strip", z.ZodTypeAny, {
|
|
590
|
+
address: string;
|
|
591
|
+
percentage: number;
|
|
592
|
+
}, {
|
|
593
|
+
address: string;
|
|
594
|
+
percentage: number;
|
|
595
|
+
}>, "many">>;
|
|
596
|
+
}, "strip", z.ZodTypeAny, {
|
|
597
|
+
name?: string | undefined;
|
|
598
|
+
description?: string | undefined;
|
|
599
|
+
image_hash?: string | undefined;
|
|
600
|
+
fee_receiver?: string | undefined;
|
|
601
|
+
social_links?: string[] | undefined;
|
|
602
|
+
vesting_recipients?: {
|
|
603
|
+
address: string;
|
|
604
|
+
percentage: number;
|
|
605
|
+
}[] | undefined;
|
|
606
|
+
}, {
|
|
607
|
+
name?: string | undefined;
|
|
608
|
+
description?: string | undefined;
|
|
609
|
+
image_hash?: string | undefined;
|
|
610
|
+
fee_receiver?: string | undefined;
|
|
611
|
+
social_links?: string[] | undefined;
|
|
612
|
+
vesting_recipients?: {
|
|
613
|
+
address: string;
|
|
614
|
+
percentage: number;
|
|
615
|
+
}[] | undefined;
|
|
616
|
+
}>>;
|
|
389
617
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
390
618
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
391
619
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -395,21 +623,41 @@ declare const assetContract: {
|
|
|
395
623
|
token_name: string;
|
|
396
624
|
token_description: string | null;
|
|
397
625
|
token_symbol: string;
|
|
626
|
+
token_uri_data: {
|
|
627
|
+
name?: string | undefined;
|
|
628
|
+
description?: string | undefined;
|
|
629
|
+
image_hash?: string | undefined;
|
|
630
|
+
fee_receiver?: string | undefined;
|
|
631
|
+
social_links?: string[] | undefined;
|
|
632
|
+
vesting_recipients?: {
|
|
633
|
+
address: string;
|
|
634
|
+
percentage: number;
|
|
635
|
+
}[] | undefined;
|
|
636
|
+
} | null;
|
|
398
637
|
token_image_public_url: string | null;
|
|
399
638
|
token_creator_address: `0x${string}`;
|
|
400
639
|
token_fee_receiver_address: `0x${string}`;
|
|
401
640
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
402
|
-
token_uri_data?: any;
|
|
403
641
|
}, {
|
|
404
642
|
token_address: string;
|
|
405
643
|
token_name: string;
|
|
406
644
|
token_description: string | null;
|
|
407
645
|
token_symbol: string;
|
|
646
|
+
token_uri_data: {
|
|
647
|
+
name?: string | undefined;
|
|
648
|
+
description?: string | undefined;
|
|
649
|
+
image_hash?: string | undefined;
|
|
650
|
+
fee_receiver?: string | undefined;
|
|
651
|
+
social_links?: string[] | undefined;
|
|
652
|
+
vesting_recipients?: {
|
|
653
|
+
address: string;
|
|
654
|
+
percentage: number;
|
|
655
|
+
}[] | undefined;
|
|
656
|
+
} | null;
|
|
408
657
|
token_image_public_url: string | null;
|
|
409
658
|
token_creator_address: string;
|
|
410
659
|
token_fee_receiver_address: string;
|
|
411
660
|
token_vesting_recipient_addresses: string[];
|
|
412
|
-
token_uri_data?: any;
|
|
413
661
|
}>;
|
|
414
662
|
}, "strip", z.ZodTypeAny, {
|
|
415
663
|
pool_current_price: string;
|
|
@@ -437,11 +685,21 @@ declare const assetContract: {
|
|
|
437
685
|
token_name: string;
|
|
438
686
|
token_description: string | null;
|
|
439
687
|
token_symbol: string;
|
|
688
|
+
token_uri_data: {
|
|
689
|
+
name?: string | undefined;
|
|
690
|
+
description?: string | undefined;
|
|
691
|
+
image_hash?: string | undefined;
|
|
692
|
+
fee_receiver?: string | undefined;
|
|
693
|
+
social_links?: string[] | undefined;
|
|
694
|
+
vesting_recipients?: {
|
|
695
|
+
address: string;
|
|
696
|
+
percentage: number;
|
|
697
|
+
}[] | undefined;
|
|
698
|
+
} | null;
|
|
440
699
|
token_image_public_url: string | null;
|
|
441
700
|
token_creator_address: `0x${string}`;
|
|
442
701
|
token_fee_receiver_address: `0x${string}`;
|
|
443
702
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
444
|
-
token_uri_data?: any;
|
|
445
703
|
};
|
|
446
704
|
}, {
|
|
447
705
|
pool_current_price: string;
|
|
@@ -469,11 +727,21 @@ declare const assetContract: {
|
|
|
469
727
|
token_name: string;
|
|
470
728
|
token_description: string | null;
|
|
471
729
|
token_symbol: string;
|
|
730
|
+
token_uri_data: {
|
|
731
|
+
name?: string | undefined;
|
|
732
|
+
description?: string | undefined;
|
|
733
|
+
image_hash?: string | undefined;
|
|
734
|
+
fee_receiver?: string | undefined;
|
|
735
|
+
social_links?: string[] | undefined;
|
|
736
|
+
vesting_recipients?: {
|
|
737
|
+
address: string;
|
|
738
|
+
percentage: number;
|
|
739
|
+
}[] | undefined;
|
|
740
|
+
} | null;
|
|
472
741
|
token_image_public_url: string | null;
|
|
473
742
|
token_creator_address: string;
|
|
474
743
|
token_fee_receiver_address: string;
|
|
475
744
|
token_vesting_recipient_addresses: string[];
|
|
476
|
-
token_uri_data?: any;
|
|
477
745
|
};
|
|
478
746
|
}>;
|
|
479
747
|
graduation_pool: z.ZodObject<{
|
|
@@ -491,7 +759,43 @@ declare const assetContract: {
|
|
|
491
759
|
token_name: z.ZodString;
|
|
492
760
|
token_description: z.ZodNullable<z.ZodString>;
|
|
493
761
|
token_symbol: z.ZodString;
|
|
494
|
-
token_uri_data: z.ZodNullable<z.
|
|
762
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
763
|
+
name: z.ZodOptional<z.ZodString>;
|
|
764
|
+
description: z.ZodOptional<z.ZodString>;
|
|
765
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
766
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
767
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
768
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
769
|
+
address: z.ZodString;
|
|
770
|
+
percentage: z.ZodNumber;
|
|
771
|
+
}, "strip", z.ZodTypeAny, {
|
|
772
|
+
address: string;
|
|
773
|
+
percentage: number;
|
|
774
|
+
}, {
|
|
775
|
+
address: string;
|
|
776
|
+
percentage: number;
|
|
777
|
+
}>, "many">>;
|
|
778
|
+
}, "strip", z.ZodTypeAny, {
|
|
779
|
+
name?: string | undefined;
|
|
780
|
+
description?: string | undefined;
|
|
781
|
+
image_hash?: string | undefined;
|
|
782
|
+
fee_receiver?: string | undefined;
|
|
783
|
+
social_links?: string[] | undefined;
|
|
784
|
+
vesting_recipients?: {
|
|
785
|
+
address: string;
|
|
786
|
+
percentage: number;
|
|
787
|
+
}[] | undefined;
|
|
788
|
+
}, {
|
|
789
|
+
name?: string | undefined;
|
|
790
|
+
description?: string | undefined;
|
|
791
|
+
image_hash?: string | undefined;
|
|
792
|
+
fee_receiver?: string | undefined;
|
|
793
|
+
social_links?: string[] | undefined;
|
|
794
|
+
vesting_recipients?: {
|
|
795
|
+
address: string;
|
|
796
|
+
percentage: number;
|
|
797
|
+
}[] | undefined;
|
|
798
|
+
}>>;
|
|
495
799
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
496
800
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
497
801
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -502,23 +806,43 @@ declare const assetContract: {
|
|
|
502
806
|
token_name: string;
|
|
503
807
|
token_description: string | null;
|
|
504
808
|
token_symbol: string;
|
|
809
|
+
token_uri_data: {
|
|
810
|
+
name?: string | undefined;
|
|
811
|
+
description?: string | undefined;
|
|
812
|
+
image_hash?: string | undefined;
|
|
813
|
+
fee_receiver?: string | undefined;
|
|
814
|
+
social_links?: string[] | undefined;
|
|
815
|
+
vesting_recipients?: {
|
|
816
|
+
address: string;
|
|
817
|
+
percentage: number;
|
|
818
|
+
}[] | undefined;
|
|
819
|
+
} | null;
|
|
505
820
|
token_image_public_url: string | null;
|
|
506
821
|
token_creator_address: `0x${string}`;
|
|
507
822
|
token_fee_receiver_address: `0x${string}`;
|
|
508
823
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
509
824
|
integrator_address: string;
|
|
510
|
-
token_uri_data?: any;
|
|
511
825
|
}, {
|
|
512
826
|
token_address: string;
|
|
513
827
|
token_name: string;
|
|
514
828
|
token_description: string | null;
|
|
515
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;
|
|
516
841
|
token_image_public_url: string | null;
|
|
517
842
|
token_creator_address: string;
|
|
518
843
|
token_fee_receiver_address: string;
|
|
519
844
|
token_vesting_recipient_addresses: string[];
|
|
520
845
|
integrator_address: string;
|
|
521
|
-
token_uri_data?: any;
|
|
522
846
|
}>;
|
|
523
847
|
}, "strip", z.ZodTypeAny, {
|
|
524
848
|
pool_current_price: string;
|
|
@@ -535,12 +859,22 @@ declare const assetContract: {
|
|
|
535
859
|
token_name: string;
|
|
536
860
|
token_description: string | null;
|
|
537
861
|
token_symbol: string;
|
|
862
|
+
token_uri_data: {
|
|
863
|
+
name?: string | undefined;
|
|
864
|
+
description?: string | undefined;
|
|
865
|
+
image_hash?: string | undefined;
|
|
866
|
+
fee_receiver?: string | undefined;
|
|
867
|
+
social_links?: string[] | undefined;
|
|
868
|
+
vesting_recipients?: {
|
|
869
|
+
address: string;
|
|
870
|
+
percentage: number;
|
|
871
|
+
}[] | undefined;
|
|
872
|
+
} | null;
|
|
538
873
|
token_image_public_url: string | null;
|
|
539
874
|
token_creator_address: `0x${string}`;
|
|
540
875
|
token_fee_receiver_address: `0x${string}`;
|
|
541
876
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
542
877
|
integrator_address: string;
|
|
543
|
-
token_uri_data?: any;
|
|
544
878
|
};
|
|
545
879
|
}, {
|
|
546
880
|
pool_current_price: string;
|
|
@@ -557,12 +891,22 @@ declare const assetContract: {
|
|
|
557
891
|
token_name: string;
|
|
558
892
|
token_description: string | null;
|
|
559
893
|
token_symbol: string;
|
|
894
|
+
token_uri_data: {
|
|
895
|
+
name?: string | undefined;
|
|
896
|
+
description?: string | undefined;
|
|
897
|
+
image_hash?: string | undefined;
|
|
898
|
+
fee_receiver?: string | undefined;
|
|
899
|
+
social_links?: string[] | undefined;
|
|
900
|
+
vesting_recipients?: {
|
|
901
|
+
address: string;
|
|
902
|
+
percentage: number;
|
|
903
|
+
}[] | undefined;
|
|
904
|
+
} | null;
|
|
560
905
|
token_image_public_url: string | null;
|
|
561
906
|
token_creator_address: string;
|
|
562
907
|
token_fee_receiver_address: string;
|
|
563
908
|
token_vesting_recipient_addresses: string[];
|
|
564
909
|
integrator_address: string;
|
|
565
|
-
token_uri_data?: any;
|
|
566
910
|
};
|
|
567
911
|
}>;
|
|
568
912
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -596,11 +940,21 @@ declare const assetContract: {
|
|
|
596
940
|
token_name: string;
|
|
597
941
|
token_description: string | null;
|
|
598
942
|
token_symbol: string;
|
|
943
|
+
token_uri_data: {
|
|
944
|
+
name?: string | undefined;
|
|
945
|
+
description?: string | undefined;
|
|
946
|
+
image_hash?: string | undefined;
|
|
947
|
+
fee_receiver?: string | undefined;
|
|
948
|
+
social_links?: string[] | undefined;
|
|
949
|
+
vesting_recipients?: {
|
|
950
|
+
address: string;
|
|
951
|
+
percentage: number;
|
|
952
|
+
}[] | undefined;
|
|
953
|
+
} | null;
|
|
599
954
|
token_image_public_url: string | null;
|
|
600
955
|
token_creator_address: `0x${string}`;
|
|
601
956
|
token_fee_receiver_address: `0x${string}`;
|
|
602
957
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
603
|
-
token_uri_data?: any;
|
|
604
958
|
};
|
|
605
959
|
};
|
|
606
960
|
graduation_pool: {
|
|
@@ -618,12 +972,22 @@ declare const assetContract: {
|
|
|
618
972
|
token_name: string;
|
|
619
973
|
token_description: string | null;
|
|
620
974
|
token_symbol: string;
|
|
975
|
+
token_uri_data: {
|
|
976
|
+
name?: string | undefined;
|
|
977
|
+
description?: string | undefined;
|
|
978
|
+
image_hash?: string | undefined;
|
|
979
|
+
fee_receiver?: string | undefined;
|
|
980
|
+
social_links?: string[] | undefined;
|
|
981
|
+
vesting_recipients?: {
|
|
982
|
+
address: string;
|
|
983
|
+
percentage: number;
|
|
984
|
+
}[] | undefined;
|
|
985
|
+
} | null;
|
|
621
986
|
token_image_public_url: string | null;
|
|
622
987
|
token_creator_address: `0x${string}`;
|
|
623
988
|
token_fee_receiver_address: `0x${string}`;
|
|
624
989
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
625
990
|
integrator_address: string;
|
|
626
|
-
token_uri_data?: any;
|
|
627
991
|
};
|
|
628
992
|
};
|
|
629
993
|
}, {
|
|
@@ -657,11 +1021,21 @@ declare const assetContract: {
|
|
|
657
1021
|
token_name: string;
|
|
658
1022
|
token_description: string | null;
|
|
659
1023
|
token_symbol: string;
|
|
1024
|
+
token_uri_data: {
|
|
1025
|
+
name?: string | undefined;
|
|
1026
|
+
description?: string | undefined;
|
|
1027
|
+
image_hash?: string | undefined;
|
|
1028
|
+
fee_receiver?: string | undefined;
|
|
1029
|
+
social_links?: string[] | undefined;
|
|
1030
|
+
vesting_recipients?: {
|
|
1031
|
+
address: string;
|
|
1032
|
+
percentage: number;
|
|
1033
|
+
}[] | undefined;
|
|
1034
|
+
} | null;
|
|
660
1035
|
token_image_public_url: string | null;
|
|
661
1036
|
token_creator_address: string;
|
|
662
1037
|
token_fee_receiver_address: string;
|
|
663
1038
|
token_vesting_recipient_addresses: string[];
|
|
664
|
-
token_uri_data?: any;
|
|
665
1039
|
};
|
|
666
1040
|
};
|
|
667
1041
|
graduation_pool: {
|
|
@@ -679,12 +1053,22 @@ declare const assetContract: {
|
|
|
679
1053
|
token_name: string;
|
|
680
1054
|
token_description: string | null;
|
|
681
1055
|
token_symbol: string;
|
|
1056
|
+
token_uri_data: {
|
|
1057
|
+
name?: string | undefined;
|
|
1058
|
+
description?: string | undefined;
|
|
1059
|
+
image_hash?: string | undefined;
|
|
1060
|
+
fee_receiver?: string | undefined;
|
|
1061
|
+
social_links?: string[] | undefined;
|
|
1062
|
+
vesting_recipients?: {
|
|
1063
|
+
address: string;
|
|
1064
|
+
percentage: number;
|
|
1065
|
+
}[] | undefined;
|
|
1066
|
+
} | null;
|
|
682
1067
|
token_image_public_url: string | null;
|
|
683
1068
|
token_creator_address: string;
|
|
684
1069
|
token_fee_receiver_address: string;
|
|
685
1070
|
token_vesting_recipient_addresses: string[];
|
|
686
1071
|
integrator_address: string;
|
|
687
|
-
token_uri_data?: any;
|
|
688
1072
|
};
|
|
689
1073
|
};
|
|
690
1074
|
}>, "many">;
|
|
@@ -720,11 +1104,21 @@ declare const assetContract: {
|
|
|
720
1104
|
token_name: string;
|
|
721
1105
|
token_description: string | null;
|
|
722
1106
|
token_symbol: string;
|
|
1107
|
+
token_uri_data: {
|
|
1108
|
+
name?: string | undefined;
|
|
1109
|
+
description?: string | undefined;
|
|
1110
|
+
image_hash?: string | undefined;
|
|
1111
|
+
fee_receiver?: string | undefined;
|
|
1112
|
+
social_links?: string[] | undefined;
|
|
1113
|
+
vesting_recipients?: {
|
|
1114
|
+
address: string;
|
|
1115
|
+
percentage: number;
|
|
1116
|
+
}[] | undefined;
|
|
1117
|
+
} | null;
|
|
723
1118
|
token_image_public_url: string | null;
|
|
724
1119
|
token_creator_address: `0x${string}`;
|
|
725
1120
|
token_fee_receiver_address: `0x${string}`;
|
|
726
1121
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
727
|
-
token_uri_data?: any;
|
|
728
1122
|
};
|
|
729
1123
|
};
|
|
730
1124
|
graduation_pool: {
|
|
@@ -742,12 +1136,22 @@ declare const assetContract: {
|
|
|
742
1136
|
token_name: string;
|
|
743
1137
|
token_description: string | null;
|
|
744
1138
|
token_symbol: string;
|
|
1139
|
+
token_uri_data: {
|
|
1140
|
+
name?: string | undefined;
|
|
1141
|
+
description?: string | undefined;
|
|
1142
|
+
image_hash?: string | undefined;
|
|
1143
|
+
fee_receiver?: string | undefined;
|
|
1144
|
+
social_links?: string[] | undefined;
|
|
1145
|
+
vesting_recipients?: {
|
|
1146
|
+
address: string;
|
|
1147
|
+
percentage: number;
|
|
1148
|
+
}[] | undefined;
|
|
1149
|
+
} | null;
|
|
745
1150
|
token_image_public_url: string | null;
|
|
746
1151
|
token_creator_address: `0x${string}`;
|
|
747
1152
|
token_fee_receiver_address: `0x${string}`;
|
|
748
1153
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
749
1154
|
integrator_address: string;
|
|
750
|
-
token_uri_data?: any;
|
|
751
1155
|
};
|
|
752
1156
|
};
|
|
753
1157
|
}[];
|
|
@@ -783,11 +1187,21 @@ declare const assetContract: {
|
|
|
783
1187
|
token_name: string;
|
|
784
1188
|
token_description: string | null;
|
|
785
1189
|
token_symbol: string;
|
|
1190
|
+
token_uri_data: {
|
|
1191
|
+
name?: string | undefined;
|
|
1192
|
+
description?: string | undefined;
|
|
1193
|
+
image_hash?: string | undefined;
|
|
1194
|
+
fee_receiver?: string | undefined;
|
|
1195
|
+
social_links?: string[] | undefined;
|
|
1196
|
+
vesting_recipients?: {
|
|
1197
|
+
address: string;
|
|
1198
|
+
percentage: number;
|
|
1199
|
+
}[] | undefined;
|
|
1200
|
+
} | null;
|
|
786
1201
|
token_image_public_url: string | null;
|
|
787
1202
|
token_creator_address: string;
|
|
788
1203
|
token_fee_receiver_address: string;
|
|
789
1204
|
token_vesting_recipient_addresses: string[];
|
|
790
|
-
token_uri_data?: any;
|
|
791
1205
|
};
|
|
792
1206
|
};
|
|
793
1207
|
graduation_pool: {
|
|
@@ -805,12 +1219,22 @@ declare const assetContract: {
|
|
|
805
1219
|
token_name: string;
|
|
806
1220
|
token_description: string | null;
|
|
807
1221
|
token_symbol: string;
|
|
1222
|
+
token_uri_data: {
|
|
1223
|
+
name?: string | undefined;
|
|
1224
|
+
description?: string | undefined;
|
|
1225
|
+
image_hash?: string | undefined;
|
|
1226
|
+
fee_receiver?: string | undefined;
|
|
1227
|
+
social_links?: string[] | undefined;
|
|
1228
|
+
vesting_recipients?: {
|
|
1229
|
+
address: string;
|
|
1230
|
+
percentage: number;
|
|
1231
|
+
}[] | undefined;
|
|
1232
|
+
} | null;
|
|
808
1233
|
token_image_public_url: string | null;
|
|
809
1234
|
token_creator_address: string;
|
|
810
1235
|
token_fee_receiver_address: string;
|
|
811
1236
|
token_vesting_recipient_addresses: string[];
|
|
812
1237
|
integrator_address: string;
|
|
813
|
-
token_uri_data?: any;
|
|
814
1238
|
};
|
|
815
1239
|
};
|
|
816
1240
|
}[];
|
|
@@ -818,6 +1242,7 @@ declare const assetContract: {
|
|
|
818
1242
|
};
|
|
819
1243
|
};
|
|
820
1244
|
searchAssets: {
|
|
1245
|
+
description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
|
|
821
1246
|
query: z.ZodObject<{
|
|
822
1247
|
term: z.ZodString;
|
|
823
1248
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -828,7 +1253,6 @@ declare const assetContract: {
|
|
|
828
1253
|
term: string;
|
|
829
1254
|
limit?: number | undefined;
|
|
830
1255
|
}>;
|
|
831
|
-
description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
|
|
832
1256
|
method: "GET";
|
|
833
1257
|
path: "/assets/search";
|
|
834
1258
|
responses: {
|
|
@@ -864,7 +1288,43 @@ declare const assetContract: {
|
|
|
864
1288
|
token_name: z.ZodString;
|
|
865
1289
|
token_description: z.ZodNullable<z.ZodString>;
|
|
866
1290
|
token_symbol: z.ZodString;
|
|
867
|
-
token_uri_data: z.ZodNullable<z.
|
|
1291
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
1292
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1293
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
1295
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
1296
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1297
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1298
|
+
address: z.ZodString;
|
|
1299
|
+
percentage: z.ZodNumber;
|
|
1300
|
+
}, "strip", z.ZodTypeAny, {
|
|
1301
|
+
address: string;
|
|
1302
|
+
percentage: number;
|
|
1303
|
+
}, {
|
|
1304
|
+
address: string;
|
|
1305
|
+
percentage: number;
|
|
1306
|
+
}>, "many">>;
|
|
1307
|
+
}, "strip", z.ZodTypeAny, {
|
|
1308
|
+
name?: string | undefined;
|
|
1309
|
+
description?: string | undefined;
|
|
1310
|
+
image_hash?: string | undefined;
|
|
1311
|
+
fee_receiver?: string | undefined;
|
|
1312
|
+
social_links?: string[] | undefined;
|
|
1313
|
+
vesting_recipients?: {
|
|
1314
|
+
address: string;
|
|
1315
|
+
percentage: number;
|
|
1316
|
+
}[] | undefined;
|
|
1317
|
+
}, {
|
|
1318
|
+
name?: string | undefined;
|
|
1319
|
+
description?: string | undefined;
|
|
1320
|
+
image_hash?: string | undefined;
|
|
1321
|
+
fee_receiver?: string | undefined;
|
|
1322
|
+
social_links?: string[] | undefined;
|
|
1323
|
+
vesting_recipients?: {
|
|
1324
|
+
address: string;
|
|
1325
|
+
percentage: number;
|
|
1326
|
+
}[] | undefined;
|
|
1327
|
+
}>>;
|
|
868
1328
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
869
1329
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
870
1330
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -874,21 +1334,41 @@ declare const assetContract: {
|
|
|
874
1334
|
token_name: string;
|
|
875
1335
|
token_description: string | null;
|
|
876
1336
|
token_symbol: string;
|
|
1337
|
+
token_uri_data: {
|
|
1338
|
+
name?: string | undefined;
|
|
1339
|
+
description?: string | undefined;
|
|
1340
|
+
image_hash?: string | undefined;
|
|
1341
|
+
fee_receiver?: string | undefined;
|
|
1342
|
+
social_links?: string[] | undefined;
|
|
1343
|
+
vesting_recipients?: {
|
|
1344
|
+
address: string;
|
|
1345
|
+
percentage: number;
|
|
1346
|
+
}[] | undefined;
|
|
1347
|
+
} | null;
|
|
877
1348
|
token_image_public_url: string | null;
|
|
878
1349
|
token_creator_address: `0x${string}`;
|
|
879
1350
|
token_fee_receiver_address: `0x${string}`;
|
|
880
1351
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
881
|
-
token_uri_data?: any;
|
|
882
1352
|
}, {
|
|
883
1353
|
token_address: string;
|
|
884
1354
|
token_name: string;
|
|
885
1355
|
token_description: string | null;
|
|
886
1356
|
token_symbol: string;
|
|
1357
|
+
token_uri_data: {
|
|
1358
|
+
name?: string | undefined;
|
|
1359
|
+
description?: string | undefined;
|
|
1360
|
+
image_hash?: string | undefined;
|
|
1361
|
+
fee_receiver?: string | undefined;
|
|
1362
|
+
social_links?: string[] | undefined;
|
|
1363
|
+
vesting_recipients?: {
|
|
1364
|
+
address: string;
|
|
1365
|
+
percentage: number;
|
|
1366
|
+
}[] | undefined;
|
|
1367
|
+
} | null;
|
|
887
1368
|
token_image_public_url: string | null;
|
|
888
1369
|
token_creator_address: string;
|
|
889
1370
|
token_fee_receiver_address: string;
|
|
890
1371
|
token_vesting_recipient_addresses: string[];
|
|
891
|
-
token_uri_data?: any;
|
|
892
1372
|
}>;
|
|
893
1373
|
}, "strip", z.ZodTypeAny, {
|
|
894
1374
|
pool_current_price: string;
|
|
@@ -916,11 +1396,21 @@ declare const assetContract: {
|
|
|
916
1396
|
token_name: string;
|
|
917
1397
|
token_description: string | null;
|
|
918
1398
|
token_symbol: string;
|
|
1399
|
+
token_uri_data: {
|
|
1400
|
+
name?: string | undefined;
|
|
1401
|
+
description?: string | undefined;
|
|
1402
|
+
image_hash?: string | undefined;
|
|
1403
|
+
fee_receiver?: string | undefined;
|
|
1404
|
+
social_links?: string[] | undefined;
|
|
1405
|
+
vesting_recipients?: {
|
|
1406
|
+
address: string;
|
|
1407
|
+
percentage: number;
|
|
1408
|
+
}[] | undefined;
|
|
1409
|
+
} | null;
|
|
919
1410
|
token_image_public_url: string | null;
|
|
920
1411
|
token_creator_address: `0x${string}`;
|
|
921
1412
|
token_fee_receiver_address: `0x${string}`;
|
|
922
1413
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
923
|
-
token_uri_data?: any;
|
|
924
1414
|
};
|
|
925
1415
|
}, {
|
|
926
1416
|
pool_current_price: string;
|
|
@@ -948,11 +1438,21 @@ declare const assetContract: {
|
|
|
948
1438
|
token_name: string;
|
|
949
1439
|
token_description: string | null;
|
|
950
1440
|
token_symbol: string;
|
|
1441
|
+
token_uri_data: {
|
|
1442
|
+
name?: string | undefined;
|
|
1443
|
+
description?: string | undefined;
|
|
1444
|
+
image_hash?: string | undefined;
|
|
1445
|
+
fee_receiver?: string | undefined;
|
|
1446
|
+
social_links?: string[] | undefined;
|
|
1447
|
+
vesting_recipients?: {
|
|
1448
|
+
address: string;
|
|
1449
|
+
percentage: number;
|
|
1450
|
+
}[] | undefined;
|
|
1451
|
+
} | null;
|
|
951
1452
|
token_image_public_url: string | null;
|
|
952
1453
|
token_creator_address: string;
|
|
953
1454
|
token_fee_receiver_address: string;
|
|
954
1455
|
token_vesting_recipient_addresses: string[];
|
|
955
|
-
token_uri_data?: any;
|
|
956
1456
|
};
|
|
957
1457
|
}>;
|
|
958
1458
|
graduation_pool: z.ZodObject<{
|
|
@@ -970,7 +1470,43 @@ declare const assetContract: {
|
|
|
970
1470
|
token_name: z.ZodString;
|
|
971
1471
|
token_description: z.ZodNullable<z.ZodString>;
|
|
972
1472
|
token_symbol: z.ZodString;
|
|
973
|
-
token_uri_data: z.ZodNullable<z.
|
|
1473
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
1474
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1475
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1476
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
1477
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
1478
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1479
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1480
|
+
address: z.ZodString;
|
|
1481
|
+
percentage: z.ZodNumber;
|
|
1482
|
+
}, "strip", z.ZodTypeAny, {
|
|
1483
|
+
address: string;
|
|
1484
|
+
percentage: number;
|
|
1485
|
+
}, {
|
|
1486
|
+
address: string;
|
|
1487
|
+
percentage: number;
|
|
1488
|
+
}>, "many">>;
|
|
1489
|
+
}, "strip", z.ZodTypeAny, {
|
|
1490
|
+
name?: string | undefined;
|
|
1491
|
+
description?: string | undefined;
|
|
1492
|
+
image_hash?: string | undefined;
|
|
1493
|
+
fee_receiver?: string | undefined;
|
|
1494
|
+
social_links?: string[] | undefined;
|
|
1495
|
+
vesting_recipients?: {
|
|
1496
|
+
address: string;
|
|
1497
|
+
percentage: number;
|
|
1498
|
+
}[] | undefined;
|
|
1499
|
+
}, {
|
|
1500
|
+
name?: string | undefined;
|
|
1501
|
+
description?: string | undefined;
|
|
1502
|
+
image_hash?: string | undefined;
|
|
1503
|
+
fee_receiver?: string | undefined;
|
|
1504
|
+
social_links?: string[] | undefined;
|
|
1505
|
+
vesting_recipients?: {
|
|
1506
|
+
address: string;
|
|
1507
|
+
percentage: number;
|
|
1508
|
+
}[] | undefined;
|
|
1509
|
+
}>>;
|
|
974
1510
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
975
1511
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
976
1512
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -981,23 +1517,43 @@ declare const assetContract: {
|
|
|
981
1517
|
token_name: string;
|
|
982
1518
|
token_description: string | null;
|
|
983
1519
|
token_symbol: string;
|
|
1520
|
+
token_uri_data: {
|
|
1521
|
+
name?: string | undefined;
|
|
1522
|
+
description?: string | undefined;
|
|
1523
|
+
image_hash?: string | undefined;
|
|
1524
|
+
fee_receiver?: string | undefined;
|
|
1525
|
+
social_links?: string[] | undefined;
|
|
1526
|
+
vesting_recipients?: {
|
|
1527
|
+
address: string;
|
|
1528
|
+
percentage: number;
|
|
1529
|
+
}[] | undefined;
|
|
1530
|
+
} | null;
|
|
984
1531
|
token_image_public_url: string | null;
|
|
985
1532
|
token_creator_address: `0x${string}`;
|
|
986
1533
|
token_fee_receiver_address: `0x${string}`;
|
|
987
1534
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
988
1535
|
integrator_address: string;
|
|
989
|
-
token_uri_data?: any;
|
|
990
1536
|
}, {
|
|
991
1537
|
token_address: string;
|
|
992
1538
|
token_name: string;
|
|
993
1539
|
token_description: string | null;
|
|
994
1540
|
token_symbol: string;
|
|
1541
|
+
token_uri_data: {
|
|
1542
|
+
name?: string | undefined;
|
|
1543
|
+
description?: string | undefined;
|
|
1544
|
+
image_hash?: string | undefined;
|
|
1545
|
+
fee_receiver?: string | undefined;
|
|
1546
|
+
social_links?: string[] | undefined;
|
|
1547
|
+
vesting_recipients?: {
|
|
1548
|
+
address: string;
|
|
1549
|
+
percentage: number;
|
|
1550
|
+
}[] | undefined;
|
|
1551
|
+
} | null;
|
|
995
1552
|
token_image_public_url: string | null;
|
|
996
1553
|
token_creator_address: string;
|
|
997
1554
|
token_fee_receiver_address: string;
|
|
998
1555
|
token_vesting_recipient_addresses: string[];
|
|
999
1556
|
integrator_address: string;
|
|
1000
|
-
token_uri_data?: any;
|
|
1001
1557
|
}>;
|
|
1002
1558
|
}, "strip", z.ZodTypeAny, {
|
|
1003
1559
|
pool_current_price: string;
|
|
@@ -1014,12 +1570,22 @@ declare const assetContract: {
|
|
|
1014
1570
|
token_name: string;
|
|
1015
1571
|
token_description: string | null;
|
|
1016
1572
|
token_symbol: string;
|
|
1573
|
+
token_uri_data: {
|
|
1574
|
+
name?: string | undefined;
|
|
1575
|
+
description?: string | undefined;
|
|
1576
|
+
image_hash?: string | undefined;
|
|
1577
|
+
fee_receiver?: string | undefined;
|
|
1578
|
+
social_links?: string[] | undefined;
|
|
1579
|
+
vesting_recipients?: {
|
|
1580
|
+
address: string;
|
|
1581
|
+
percentage: number;
|
|
1582
|
+
}[] | undefined;
|
|
1583
|
+
} | null;
|
|
1017
1584
|
token_image_public_url: string | null;
|
|
1018
1585
|
token_creator_address: `0x${string}`;
|
|
1019
1586
|
token_fee_receiver_address: `0x${string}`;
|
|
1020
1587
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1021
1588
|
integrator_address: string;
|
|
1022
|
-
token_uri_data?: any;
|
|
1023
1589
|
};
|
|
1024
1590
|
}, {
|
|
1025
1591
|
pool_current_price: string;
|
|
@@ -1036,12 +1602,22 @@ declare const assetContract: {
|
|
|
1036
1602
|
token_name: string;
|
|
1037
1603
|
token_description: string | null;
|
|
1038
1604
|
token_symbol: string;
|
|
1605
|
+
token_uri_data: {
|
|
1606
|
+
name?: string | undefined;
|
|
1607
|
+
description?: string | undefined;
|
|
1608
|
+
image_hash?: string | undefined;
|
|
1609
|
+
fee_receiver?: string | undefined;
|
|
1610
|
+
social_links?: string[] | undefined;
|
|
1611
|
+
vesting_recipients?: {
|
|
1612
|
+
address: string;
|
|
1613
|
+
percentage: number;
|
|
1614
|
+
}[] | undefined;
|
|
1615
|
+
} | null;
|
|
1039
1616
|
token_image_public_url: string | null;
|
|
1040
1617
|
token_creator_address: string;
|
|
1041
1618
|
token_fee_receiver_address: string;
|
|
1042
1619
|
token_vesting_recipient_addresses: string[];
|
|
1043
1620
|
integrator_address: string;
|
|
1044
|
-
token_uri_data?: any;
|
|
1045
1621
|
};
|
|
1046
1622
|
}>;
|
|
1047
1623
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1075,11 +1651,21 @@ declare const assetContract: {
|
|
|
1075
1651
|
token_name: string;
|
|
1076
1652
|
token_description: string | null;
|
|
1077
1653
|
token_symbol: string;
|
|
1654
|
+
token_uri_data: {
|
|
1655
|
+
name?: string | undefined;
|
|
1656
|
+
description?: string | undefined;
|
|
1657
|
+
image_hash?: string | undefined;
|
|
1658
|
+
fee_receiver?: string | undefined;
|
|
1659
|
+
social_links?: string[] | undefined;
|
|
1660
|
+
vesting_recipients?: {
|
|
1661
|
+
address: string;
|
|
1662
|
+
percentage: number;
|
|
1663
|
+
}[] | undefined;
|
|
1664
|
+
} | null;
|
|
1078
1665
|
token_image_public_url: string | null;
|
|
1079
1666
|
token_creator_address: `0x${string}`;
|
|
1080
1667
|
token_fee_receiver_address: `0x${string}`;
|
|
1081
1668
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1082
|
-
token_uri_data?: any;
|
|
1083
1669
|
};
|
|
1084
1670
|
};
|
|
1085
1671
|
graduation_pool: {
|
|
@@ -1097,12 +1683,22 @@ declare const assetContract: {
|
|
|
1097
1683
|
token_name: string;
|
|
1098
1684
|
token_description: string | null;
|
|
1099
1685
|
token_symbol: string;
|
|
1686
|
+
token_uri_data: {
|
|
1687
|
+
name?: string | undefined;
|
|
1688
|
+
description?: string | undefined;
|
|
1689
|
+
image_hash?: string | undefined;
|
|
1690
|
+
fee_receiver?: string | undefined;
|
|
1691
|
+
social_links?: string[] | undefined;
|
|
1692
|
+
vesting_recipients?: {
|
|
1693
|
+
address: string;
|
|
1694
|
+
percentage: number;
|
|
1695
|
+
}[] | undefined;
|
|
1696
|
+
} | null;
|
|
1100
1697
|
token_image_public_url: string | null;
|
|
1101
1698
|
token_creator_address: `0x${string}`;
|
|
1102
1699
|
token_fee_receiver_address: `0x${string}`;
|
|
1103
1700
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1104
1701
|
integrator_address: string;
|
|
1105
|
-
token_uri_data?: any;
|
|
1106
1702
|
};
|
|
1107
1703
|
};
|
|
1108
1704
|
}, {
|
|
@@ -1136,11 +1732,21 @@ declare const assetContract: {
|
|
|
1136
1732
|
token_name: string;
|
|
1137
1733
|
token_description: string | null;
|
|
1138
1734
|
token_symbol: string;
|
|
1735
|
+
token_uri_data: {
|
|
1736
|
+
name?: string | undefined;
|
|
1737
|
+
description?: string | undefined;
|
|
1738
|
+
image_hash?: string | undefined;
|
|
1739
|
+
fee_receiver?: string | undefined;
|
|
1740
|
+
social_links?: string[] | undefined;
|
|
1741
|
+
vesting_recipients?: {
|
|
1742
|
+
address: string;
|
|
1743
|
+
percentage: number;
|
|
1744
|
+
}[] | undefined;
|
|
1745
|
+
} | null;
|
|
1139
1746
|
token_image_public_url: string | null;
|
|
1140
1747
|
token_creator_address: string;
|
|
1141
1748
|
token_fee_receiver_address: string;
|
|
1142
1749
|
token_vesting_recipient_addresses: string[];
|
|
1143
|
-
token_uri_data?: any;
|
|
1144
1750
|
};
|
|
1145
1751
|
};
|
|
1146
1752
|
graduation_pool: {
|
|
@@ -1158,12 +1764,22 @@ declare const assetContract: {
|
|
|
1158
1764
|
token_name: string;
|
|
1159
1765
|
token_description: string | null;
|
|
1160
1766
|
token_symbol: string;
|
|
1767
|
+
token_uri_data: {
|
|
1768
|
+
name?: string | undefined;
|
|
1769
|
+
description?: string | undefined;
|
|
1770
|
+
image_hash?: string | undefined;
|
|
1771
|
+
fee_receiver?: string | undefined;
|
|
1772
|
+
social_links?: string[] | undefined;
|
|
1773
|
+
vesting_recipients?: {
|
|
1774
|
+
address: string;
|
|
1775
|
+
percentage: number;
|
|
1776
|
+
}[] | undefined;
|
|
1777
|
+
} | null;
|
|
1161
1778
|
token_image_public_url: string | null;
|
|
1162
1779
|
token_creator_address: string;
|
|
1163
1780
|
token_fee_receiver_address: string;
|
|
1164
1781
|
token_vesting_recipient_addresses: string[];
|
|
1165
1782
|
integrator_address: string;
|
|
1166
|
-
token_uri_data?: any;
|
|
1167
1783
|
};
|
|
1168
1784
|
};
|
|
1169
1785
|
}>, "many">;
|
|
@@ -1199,11 +1815,21 @@ declare const assetContract: {
|
|
|
1199
1815
|
token_name: string;
|
|
1200
1816
|
token_description: string | null;
|
|
1201
1817
|
token_symbol: string;
|
|
1818
|
+
token_uri_data: {
|
|
1819
|
+
name?: string | undefined;
|
|
1820
|
+
description?: string | undefined;
|
|
1821
|
+
image_hash?: string | undefined;
|
|
1822
|
+
fee_receiver?: string | undefined;
|
|
1823
|
+
social_links?: string[] | undefined;
|
|
1824
|
+
vesting_recipients?: {
|
|
1825
|
+
address: string;
|
|
1826
|
+
percentage: number;
|
|
1827
|
+
}[] | undefined;
|
|
1828
|
+
} | null;
|
|
1202
1829
|
token_image_public_url: string | null;
|
|
1203
1830
|
token_creator_address: `0x${string}`;
|
|
1204
1831
|
token_fee_receiver_address: `0x${string}`;
|
|
1205
1832
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1206
|
-
token_uri_data?: any;
|
|
1207
1833
|
};
|
|
1208
1834
|
};
|
|
1209
1835
|
graduation_pool: {
|
|
@@ -1221,12 +1847,22 @@ declare const assetContract: {
|
|
|
1221
1847
|
token_name: string;
|
|
1222
1848
|
token_description: string | null;
|
|
1223
1849
|
token_symbol: string;
|
|
1850
|
+
token_uri_data: {
|
|
1851
|
+
name?: string | undefined;
|
|
1852
|
+
description?: string | undefined;
|
|
1853
|
+
image_hash?: string | undefined;
|
|
1854
|
+
fee_receiver?: string | undefined;
|
|
1855
|
+
social_links?: string[] | undefined;
|
|
1856
|
+
vesting_recipients?: {
|
|
1857
|
+
address: string;
|
|
1858
|
+
percentage: number;
|
|
1859
|
+
}[] | undefined;
|
|
1860
|
+
} | null;
|
|
1224
1861
|
token_image_public_url: string | null;
|
|
1225
1862
|
token_creator_address: `0x${string}`;
|
|
1226
1863
|
token_fee_receiver_address: `0x${string}`;
|
|
1227
1864
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1228
1865
|
integrator_address: string;
|
|
1229
|
-
token_uri_data?: any;
|
|
1230
1866
|
};
|
|
1231
1867
|
};
|
|
1232
1868
|
}[];
|
|
@@ -1262,11 +1898,21 @@ declare const assetContract: {
|
|
|
1262
1898
|
token_name: string;
|
|
1263
1899
|
token_description: string | null;
|
|
1264
1900
|
token_symbol: string;
|
|
1901
|
+
token_uri_data: {
|
|
1902
|
+
name?: string | undefined;
|
|
1903
|
+
description?: string | undefined;
|
|
1904
|
+
image_hash?: string | undefined;
|
|
1905
|
+
fee_receiver?: string | undefined;
|
|
1906
|
+
social_links?: string[] | undefined;
|
|
1907
|
+
vesting_recipients?: {
|
|
1908
|
+
address: string;
|
|
1909
|
+
percentage: number;
|
|
1910
|
+
}[] | undefined;
|
|
1911
|
+
} | null;
|
|
1265
1912
|
token_image_public_url: string | null;
|
|
1266
1913
|
token_creator_address: string;
|
|
1267
1914
|
token_fee_receiver_address: string;
|
|
1268
1915
|
token_vesting_recipient_addresses: string[];
|
|
1269
|
-
token_uri_data?: any;
|
|
1270
1916
|
};
|
|
1271
1917
|
};
|
|
1272
1918
|
graduation_pool: {
|
|
@@ -1284,12 +1930,22 @@ declare const assetContract: {
|
|
|
1284
1930
|
token_name: string;
|
|
1285
1931
|
token_description: string | null;
|
|
1286
1932
|
token_symbol: string;
|
|
1933
|
+
token_uri_data: {
|
|
1934
|
+
name?: string | undefined;
|
|
1935
|
+
description?: string | undefined;
|
|
1936
|
+
image_hash?: string | undefined;
|
|
1937
|
+
fee_receiver?: string | undefined;
|
|
1938
|
+
social_links?: string[] | undefined;
|
|
1939
|
+
vesting_recipients?: {
|
|
1940
|
+
address: string;
|
|
1941
|
+
percentage: number;
|
|
1942
|
+
}[] | undefined;
|
|
1943
|
+
} | null;
|
|
1287
1944
|
token_image_public_url: string | null;
|
|
1288
1945
|
token_creator_address: string;
|
|
1289
1946
|
token_fee_receiver_address: string;
|
|
1290
1947
|
token_vesting_recipient_addresses: string[];
|
|
1291
1948
|
integrator_address: string;
|
|
1292
|
-
token_uri_data?: any;
|
|
1293
1949
|
};
|
|
1294
1950
|
};
|
|
1295
1951
|
}[];
|
|
@@ -1297,6 +1953,7 @@ declare const assetContract: {
|
|
|
1297
1953
|
};
|
|
1298
1954
|
};
|
|
1299
1955
|
getAsset: {
|
|
1956
|
+
description: "Get an asset by its address";
|
|
1300
1957
|
pathParams: z.ZodObject<{
|
|
1301
1958
|
assetAddress: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1302
1959
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1304,7 +1961,6 @@ declare const assetContract: {
|
|
|
1304
1961
|
}, {
|
|
1305
1962
|
assetAddress: string;
|
|
1306
1963
|
}>;
|
|
1307
|
-
description: "Get an asset by its address";
|
|
1308
1964
|
method: "GET";
|
|
1309
1965
|
path: "/assets/:assetAddress";
|
|
1310
1966
|
responses: {
|
|
@@ -1340,7 +1996,43 @@ declare const assetContract: {
|
|
|
1340
1996
|
token_name: z.ZodString;
|
|
1341
1997
|
token_description: z.ZodNullable<z.ZodString>;
|
|
1342
1998
|
token_symbol: z.ZodString;
|
|
1343
|
-
token_uri_data: z.ZodNullable<z.
|
|
1999
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
2000
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2001
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2002
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
2003
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
2004
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2005
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2006
|
+
address: z.ZodString;
|
|
2007
|
+
percentage: z.ZodNumber;
|
|
2008
|
+
}, "strip", z.ZodTypeAny, {
|
|
2009
|
+
address: string;
|
|
2010
|
+
percentage: number;
|
|
2011
|
+
}, {
|
|
2012
|
+
address: string;
|
|
2013
|
+
percentage: number;
|
|
2014
|
+
}>, "many">>;
|
|
2015
|
+
}, "strip", z.ZodTypeAny, {
|
|
2016
|
+
name?: string | undefined;
|
|
2017
|
+
description?: string | undefined;
|
|
2018
|
+
image_hash?: string | undefined;
|
|
2019
|
+
fee_receiver?: string | undefined;
|
|
2020
|
+
social_links?: string[] | undefined;
|
|
2021
|
+
vesting_recipients?: {
|
|
2022
|
+
address: string;
|
|
2023
|
+
percentage: number;
|
|
2024
|
+
}[] | undefined;
|
|
2025
|
+
}, {
|
|
2026
|
+
name?: string | undefined;
|
|
2027
|
+
description?: string | undefined;
|
|
2028
|
+
image_hash?: string | undefined;
|
|
2029
|
+
fee_receiver?: string | undefined;
|
|
2030
|
+
social_links?: string[] | undefined;
|
|
2031
|
+
vesting_recipients?: {
|
|
2032
|
+
address: string;
|
|
2033
|
+
percentage: number;
|
|
2034
|
+
}[] | undefined;
|
|
2035
|
+
}>>;
|
|
1344
2036
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
1345
2037
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1346
2038
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -1350,21 +2042,41 @@ declare const assetContract: {
|
|
|
1350
2042
|
token_name: string;
|
|
1351
2043
|
token_description: string | null;
|
|
1352
2044
|
token_symbol: string;
|
|
2045
|
+
token_uri_data: {
|
|
2046
|
+
name?: string | undefined;
|
|
2047
|
+
description?: string | undefined;
|
|
2048
|
+
image_hash?: string | undefined;
|
|
2049
|
+
fee_receiver?: string | undefined;
|
|
2050
|
+
social_links?: string[] | undefined;
|
|
2051
|
+
vesting_recipients?: {
|
|
2052
|
+
address: string;
|
|
2053
|
+
percentage: number;
|
|
2054
|
+
}[] | undefined;
|
|
2055
|
+
} | null;
|
|
1353
2056
|
token_image_public_url: string | null;
|
|
1354
2057
|
token_creator_address: `0x${string}`;
|
|
1355
2058
|
token_fee_receiver_address: `0x${string}`;
|
|
1356
2059
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1357
|
-
token_uri_data?: any;
|
|
1358
2060
|
}, {
|
|
1359
2061
|
token_address: string;
|
|
1360
2062
|
token_name: string;
|
|
1361
2063
|
token_description: string | null;
|
|
1362
2064
|
token_symbol: string;
|
|
2065
|
+
token_uri_data: {
|
|
2066
|
+
name?: string | undefined;
|
|
2067
|
+
description?: string | undefined;
|
|
2068
|
+
image_hash?: string | undefined;
|
|
2069
|
+
fee_receiver?: string | undefined;
|
|
2070
|
+
social_links?: string[] | undefined;
|
|
2071
|
+
vesting_recipients?: {
|
|
2072
|
+
address: string;
|
|
2073
|
+
percentage: number;
|
|
2074
|
+
}[] | undefined;
|
|
2075
|
+
} | null;
|
|
1363
2076
|
token_image_public_url: string | null;
|
|
1364
2077
|
token_creator_address: string;
|
|
1365
2078
|
token_fee_receiver_address: string;
|
|
1366
2079
|
token_vesting_recipient_addresses: string[];
|
|
1367
|
-
token_uri_data?: any;
|
|
1368
2080
|
}>;
|
|
1369
2081
|
}, "strip", z.ZodTypeAny, {
|
|
1370
2082
|
pool_current_price: string;
|
|
@@ -1392,11 +2104,21 @@ declare const assetContract: {
|
|
|
1392
2104
|
token_name: string;
|
|
1393
2105
|
token_description: string | null;
|
|
1394
2106
|
token_symbol: string;
|
|
2107
|
+
token_uri_data: {
|
|
2108
|
+
name?: string | undefined;
|
|
2109
|
+
description?: string | undefined;
|
|
2110
|
+
image_hash?: string | undefined;
|
|
2111
|
+
fee_receiver?: string | undefined;
|
|
2112
|
+
social_links?: string[] | undefined;
|
|
2113
|
+
vesting_recipients?: {
|
|
2114
|
+
address: string;
|
|
2115
|
+
percentage: number;
|
|
2116
|
+
}[] | undefined;
|
|
2117
|
+
} | null;
|
|
1395
2118
|
token_image_public_url: string | null;
|
|
1396
2119
|
token_creator_address: `0x${string}`;
|
|
1397
2120
|
token_fee_receiver_address: `0x${string}`;
|
|
1398
2121
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1399
|
-
token_uri_data?: any;
|
|
1400
2122
|
};
|
|
1401
2123
|
}, {
|
|
1402
2124
|
pool_current_price: string;
|
|
@@ -1424,11 +2146,21 @@ declare const assetContract: {
|
|
|
1424
2146
|
token_name: string;
|
|
1425
2147
|
token_description: string | null;
|
|
1426
2148
|
token_symbol: string;
|
|
2149
|
+
token_uri_data: {
|
|
2150
|
+
name?: string | undefined;
|
|
2151
|
+
description?: string | undefined;
|
|
2152
|
+
image_hash?: string | undefined;
|
|
2153
|
+
fee_receiver?: string | undefined;
|
|
2154
|
+
social_links?: string[] | undefined;
|
|
2155
|
+
vesting_recipients?: {
|
|
2156
|
+
address: string;
|
|
2157
|
+
percentage: number;
|
|
2158
|
+
}[] | undefined;
|
|
2159
|
+
} | null;
|
|
1427
2160
|
token_image_public_url: string | null;
|
|
1428
2161
|
token_creator_address: string;
|
|
1429
2162
|
token_fee_receiver_address: string;
|
|
1430
2163
|
token_vesting_recipient_addresses: string[];
|
|
1431
|
-
token_uri_data?: any;
|
|
1432
2164
|
};
|
|
1433
2165
|
}>;
|
|
1434
2166
|
graduation_pool: z.ZodObject<{
|
|
@@ -1446,7 +2178,43 @@ declare const assetContract: {
|
|
|
1446
2178
|
token_name: z.ZodString;
|
|
1447
2179
|
token_description: z.ZodNullable<z.ZodString>;
|
|
1448
2180
|
token_symbol: z.ZodString;
|
|
1449
|
-
token_uri_data: z.ZodNullable<z.
|
|
2181
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
2182
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2183
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2184
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
2185
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
2186
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2187
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2188
|
+
address: z.ZodString;
|
|
2189
|
+
percentage: z.ZodNumber;
|
|
2190
|
+
}, "strip", z.ZodTypeAny, {
|
|
2191
|
+
address: string;
|
|
2192
|
+
percentage: number;
|
|
2193
|
+
}, {
|
|
2194
|
+
address: string;
|
|
2195
|
+
percentage: number;
|
|
2196
|
+
}>, "many">>;
|
|
2197
|
+
}, "strip", z.ZodTypeAny, {
|
|
2198
|
+
name?: string | undefined;
|
|
2199
|
+
description?: string | undefined;
|
|
2200
|
+
image_hash?: string | undefined;
|
|
2201
|
+
fee_receiver?: string | undefined;
|
|
2202
|
+
social_links?: string[] | undefined;
|
|
2203
|
+
vesting_recipients?: {
|
|
2204
|
+
address: string;
|
|
2205
|
+
percentage: number;
|
|
2206
|
+
}[] | undefined;
|
|
2207
|
+
}, {
|
|
2208
|
+
name?: string | undefined;
|
|
2209
|
+
description?: string | undefined;
|
|
2210
|
+
image_hash?: string | undefined;
|
|
2211
|
+
fee_receiver?: string | undefined;
|
|
2212
|
+
social_links?: string[] | undefined;
|
|
2213
|
+
vesting_recipients?: {
|
|
2214
|
+
address: string;
|
|
2215
|
+
percentage: number;
|
|
2216
|
+
}[] | undefined;
|
|
2217
|
+
}>>;
|
|
1450
2218
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
1451
2219
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1452
2220
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -1457,23 +2225,43 @@ declare const assetContract: {
|
|
|
1457
2225
|
token_name: string;
|
|
1458
2226
|
token_description: string | null;
|
|
1459
2227
|
token_symbol: string;
|
|
2228
|
+
token_uri_data: {
|
|
2229
|
+
name?: string | undefined;
|
|
2230
|
+
description?: string | undefined;
|
|
2231
|
+
image_hash?: string | undefined;
|
|
2232
|
+
fee_receiver?: string | undefined;
|
|
2233
|
+
social_links?: string[] | undefined;
|
|
2234
|
+
vesting_recipients?: {
|
|
2235
|
+
address: string;
|
|
2236
|
+
percentage: number;
|
|
2237
|
+
}[] | undefined;
|
|
2238
|
+
} | null;
|
|
1460
2239
|
token_image_public_url: string | null;
|
|
1461
2240
|
token_creator_address: `0x${string}`;
|
|
1462
2241
|
token_fee_receiver_address: `0x${string}`;
|
|
1463
2242
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1464
2243
|
integrator_address: string;
|
|
1465
|
-
token_uri_data?: any;
|
|
1466
2244
|
}, {
|
|
1467
2245
|
token_address: string;
|
|
1468
2246
|
token_name: string;
|
|
1469
2247
|
token_description: string | null;
|
|
1470
2248
|
token_symbol: string;
|
|
2249
|
+
token_uri_data: {
|
|
2250
|
+
name?: string | undefined;
|
|
2251
|
+
description?: string | undefined;
|
|
2252
|
+
image_hash?: string | undefined;
|
|
2253
|
+
fee_receiver?: string | undefined;
|
|
2254
|
+
social_links?: string[] | undefined;
|
|
2255
|
+
vesting_recipients?: {
|
|
2256
|
+
address: string;
|
|
2257
|
+
percentage: number;
|
|
2258
|
+
}[] | undefined;
|
|
2259
|
+
} | null;
|
|
1471
2260
|
token_image_public_url: string | null;
|
|
1472
2261
|
token_creator_address: string;
|
|
1473
2262
|
token_fee_receiver_address: string;
|
|
1474
2263
|
token_vesting_recipient_addresses: string[];
|
|
1475
2264
|
integrator_address: string;
|
|
1476
|
-
token_uri_data?: any;
|
|
1477
2265
|
}>;
|
|
1478
2266
|
}, "strip", z.ZodTypeAny, {
|
|
1479
2267
|
pool_current_price: string;
|
|
@@ -1490,12 +2278,22 @@ declare const assetContract: {
|
|
|
1490
2278
|
token_name: string;
|
|
1491
2279
|
token_description: string | null;
|
|
1492
2280
|
token_symbol: string;
|
|
2281
|
+
token_uri_data: {
|
|
2282
|
+
name?: string | undefined;
|
|
2283
|
+
description?: string | undefined;
|
|
2284
|
+
image_hash?: string | undefined;
|
|
2285
|
+
fee_receiver?: string | undefined;
|
|
2286
|
+
social_links?: string[] | undefined;
|
|
2287
|
+
vesting_recipients?: {
|
|
2288
|
+
address: string;
|
|
2289
|
+
percentage: number;
|
|
2290
|
+
}[] | undefined;
|
|
2291
|
+
} | null;
|
|
1493
2292
|
token_image_public_url: string | null;
|
|
1494
2293
|
token_creator_address: `0x${string}`;
|
|
1495
2294
|
token_fee_receiver_address: `0x${string}`;
|
|
1496
2295
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1497
2296
|
integrator_address: string;
|
|
1498
|
-
token_uri_data?: any;
|
|
1499
2297
|
};
|
|
1500
2298
|
}, {
|
|
1501
2299
|
pool_current_price: string;
|
|
@@ -1512,12 +2310,22 @@ declare const assetContract: {
|
|
|
1512
2310
|
token_name: string;
|
|
1513
2311
|
token_description: string | null;
|
|
1514
2312
|
token_symbol: string;
|
|
2313
|
+
token_uri_data: {
|
|
2314
|
+
name?: string | undefined;
|
|
2315
|
+
description?: string | undefined;
|
|
2316
|
+
image_hash?: string | undefined;
|
|
2317
|
+
fee_receiver?: string | undefined;
|
|
2318
|
+
social_links?: string[] | undefined;
|
|
2319
|
+
vesting_recipients?: {
|
|
2320
|
+
address: string;
|
|
2321
|
+
percentage: number;
|
|
2322
|
+
}[] | undefined;
|
|
2323
|
+
} | null;
|
|
1515
2324
|
token_image_public_url: string | null;
|
|
1516
2325
|
token_creator_address: string;
|
|
1517
2326
|
token_fee_receiver_address: string;
|
|
1518
2327
|
token_vesting_recipient_addresses: string[];
|
|
1519
2328
|
integrator_address: string;
|
|
1520
|
-
token_uri_data?: any;
|
|
1521
2329
|
};
|
|
1522
2330
|
}>;
|
|
1523
2331
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1551,11 +2359,21 @@ declare const assetContract: {
|
|
|
1551
2359
|
token_name: string;
|
|
1552
2360
|
token_description: string | null;
|
|
1553
2361
|
token_symbol: string;
|
|
2362
|
+
token_uri_data: {
|
|
2363
|
+
name?: string | undefined;
|
|
2364
|
+
description?: string | undefined;
|
|
2365
|
+
image_hash?: string | undefined;
|
|
2366
|
+
fee_receiver?: string | undefined;
|
|
2367
|
+
social_links?: string[] | undefined;
|
|
2368
|
+
vesting_recipients?: {
|
|
2369
|
+
address: string;
|
|
2370
|
+
percentage: number;
|
|
2371
|
+
}[] | undefined;
|
|
2372
|
+
} | null;
|
|
1554
2373
|
token_image_public_url: string | null;
|
|
1555
2374
|
token_creator_address: `0x${string}`;
|
|
1556
2375
|
token_fee_receiver_address: `0x${string}`;
|
|
1557
2376
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1558
|
-
token_uri_data?: any;
|
|
1559
2377
|
};
|
|
1560
2378
|
};
|
|
1561
2379
|
graduation_pool: {
|
|
@@ -1573,12 +2391,22 @@ declare const assetContract: {
|
|
|
1573
2391
|
token_name: string;
|
|
1574
2392
|
token_description: string | null;
|
|
1575
2393
|
token_symbol: string;
|
|
2394
|
+
token_uri_data: {
|
|
2395
|
+
name?: string | undefined;
|
|
2396
|
+
description?: string | undefined;
|
|
2397
|
+
image_hash?: string | undefined;
|
|
2398
|
+
fee_receiver?: string | undefined;
|
|
2399
|
+
social_links?: string[] | undefined;
|
|
2400
|
+
vesting_recipients?: {
|
|
2401
|
+
address: string;
|
|
2402
|
+
percentage: number;
|
|
2403
|
+
}[] | undefined;
|
|
2404
|
+
} | null;
|
|
1576
2405
|
token_image_public_url: string | null;
|
|
1577
2406
|
token_creator_address: `0x${string}`;
|
|
1578
2407
|
token_fee_receiver_address: `0x${string}`;
|
|
1579
2408
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1580
2409
|
integrator_address: string;
|
|
1581
|
-
token_uri_data?: any;
|
|
1582
2410
|
};
|
|
1583
2411
|
};
|
|
1584
2412
|
}, {
|
|
@@ -1612,11 +2440,21 @@ declare const assetContract: {
|
|
|
1612
2440
|
token_name: string;
|
|
1613
2441
|
token_description: string | null;
|
|
1614
2442
|
token_symbol: string;
|
|
2443
|
+
token_uri_data: {
|
|
2444
|
+
name?: string | undefined;
|
|
2445
|
+
description?: string | undefined;
|
|
2446
|
+
image_hash?: string | undefined;
|
|
2447
|
+
fee_receiver?: string | undefined;
|
|
2448
|
+
social_links?: string[] | undefined;
|
|
2449
|
+
vesting_recipients?: {
|
|
2450
|
+
address: string;
|
|
2451
|
+
percentage: number;
|
|
2452
|
+
}[] | undefined;
|
|
2453
|
+
} | null;
|
|
1615
2454
|
token_image_public_url: string | null;
|
|
1616
2455
|
token_creator_address: string;
|
|
1617
2456
|
token_fee_receiver_address: string;
|
|
1618
2457
|
token_vesting_recipient_addresses: string[];
|
|
1619
|
-
token_uri_data?: any;
|
|
1620
2458
|
};
|
|
1621
2459
|
};
|
|
1622
2460
|
graduation_pool: {
|
|
@@ -1634,12 +2472,22 @@ declare const assetContract: {
|
|
|
1634
2472
|
token_name: string;
|
|
1635
2473
|
token_description: string | null;
|
|
1636
2474
|
token_symbol: string;
|
|
2475
|
+
token_uri_data: {
|
|
2476
|
+
name?: string | undefined;
|
|
2477
|
+
description?: string | undefined;
|
|
2478
|
+
image_hash?: string | undefined;
|
|
2479
|
+
fee_receiver?: string | undefined;
|
|
2480
|
+
social_links?: string[] | undefined;
|
|
2481
|
+
vesting_recipients?: {
|
|
2482
|
+
address: string;
|
|
2483
|
+
percentage: number;
|
|
2484
|
+
}[] | undefined;
|
|
2485
|
+
} | null;
|
|
1637
2486
|
token_image_public_url: string | null;
|
|
1638
2487
|
token_creator_address: string;
|
|
1639
2488
|
token_fee_receiver_address: string;
|
|
1640
2489
|
token_vesting_recipient_addresses: string[];
|
|
1641
2490
|
integrator_address: string;
|
|
1642
|
-
token_uri_data?: any;
|
|
1643
2491
|
};
|
|
1644
2492
|
};
|
|
1645
2493
|
}>;
|
|
@@ -1675,11 +2523,21 @@ declare const assetContract: {
|
|
|
1675
2523
|
token_name: string;
|
|
1676
2524
|
token_description: string | null;
|
|
1677
2525
|
token_symbol: string;
|
|
2526
|
+
token_uri_data: {
|
|
2527
|
+
name?: string | undefined;
|
|
2528
|
+
description?: string | undefined;
|
|
2529
|
+
image_hash?: string | undefined;
|
|
2530
|
+
fee_receiver?: string | undefined;
|
|
2531
|
+
social_links?: string[] | undefined;
|
|
2532
|
+
vesting_recipients?: {
|
|
2533
|
+
address: string;
|
|
2534
|
+
percentage: number;
|
|
2535
|
+
}[] | undefined;
|
|
2536
|
+
} | null;
|
|
1678
2537
|
token_image_public_url: string | null;
|
|
1679
2538
|
token_creator_address: `0x${string}`;
|
|
1680
2539
|
token_fee_receiver_address: `0x${string}`;
|
|
1681
2540
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1682
|
-
token_uri_data?: any;
|
|
1683
2541
|
};
|
|
1684
2542
|
};
|
|
1685
2543
|
graduation_pool: {
|
|
@@ -1697,12 +2555,22 @@ declare const assetContract: {
|
|
|
1697
2555
|
token_name: string;
|
|
1698
2556
|
token_description: string | null;
|
|
1699
2557
|
token_symbol: string;
|
|
2558
|
+
token_uri_data: {
|
|
2559
|
+
name?: string | undefined;
|
|
2560
|
+
description?: string | undefined;
|
|
2561
|
+
image_hash?: string | undefined;
|
|
2562
|
+
fee_receiver?: string | undefined;
|
|
2563
|
+
social_links?: string[] | undefined;
|
|
2564
|
+
vesting_recipients?: {
|
|
2565
|
+
address: string;
|
|
2566
|
+
percentage: number;
|
|
2567
|
+
}[] | undefined;
|
|
2568
|
+
} | null;
|
|
1700
2569
|
token_image_public_url: string | null;
|
|
1701
2570
|
token_creator_address: `0x${string}`;
|
|
1702
2571
|
token_fee_receiver_address: `0x${string}`;
|
|
1703
2572
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1704
2573
|
integrator_address: string;
|
|
1705
|
-
token_uri_data?: any;
|
|
1706
2574
|
};
|
|
1707
2575
|
};
|
|
1708
2576
|
};
|
|
@@ -1738,11 +2606,21 @@ declare const assetContract: {
|
|
|
1738
2606
|
token_name: string;
|
|
1739
2607
|
token_description: string | null;
|
|
1740
2608
|
token_symbol: string;
|
|
2609
|
+
token_uri_data: {
|
|
2610
|
+
name?: string | undefined;
|
|
2611
|
+
description?: string | undefined;
|
|
2612
|
+
image_hash?: string | undefined;
|
|
2613
|
+
fee_receiver?: string | undefined;
|
|
2614
|
+
social_links?: string[] | undefined;
|
|
2615
|
+
vesting_recipients?: {
|
|
2616
|
+
address: string;
|
|
2617
|
+
percentage: number;
|
|
2618
|
+
}[] | undefined;
|
|
2619
|
+
} | null;
|
|
1741
2620
|
token_image_public_url: string | null;
|
|
1742
2621
|
token_creator_address: string;
|
|
1743
2622
|
token_fee_receiver_address: string;
|
|
1744
2623
|
token_vesting_recipient_addresses: string[];
|
|
1745
|
-
token_uri_data?: any;
|
|
1746
2624
|
};
|
|
1747
2625
|
};
|
|
1748
2626
|
graduation_pool: {
|
|
@@ -1760,12 +2638,22 @@ declare const assetContract: {
|
|
|
1760
2638
|
token_name: string;
|
|
1761
2639
|
token_description: string | null;
|
|
1762
2640
|
token_symbol: string;
|
|
2641
|
+
token_uri_data: {
|
|
2642
|
+
name?: string | undefined;
|
|
2643
|
+
description?: string | undefined;
|
|
2644
|
+
image_hash?: string | undefined;
|
|
2645
|
+
fee_receiver?: string | undefined;
|
|
2646
|
+
social_links?: string[] | undefined;
|
|
2647
|
+
vesting_recipients?: {
|
|
2648
|
+
address: string;
|
|
2649
|
+
percentage: number;
|
|
2650
|
+
}[] | undefined;
|
|
2651
|
+
} | null;
|
|
1763
2652
|
token_image_public_url: string | null;
|
|
1764
2653
|
token_creator_address: string;
|
|
1765
2654
|
token_fee_receiver_address: string;
|
|
1766
2655
|
token_vesting_recipient_addresses: string[];
|
|
1767
2656
|
integrator_address: string;
|
|
1768
|
-
token_uri_data?: any;
|
|
1769
2657
|
};
|
|
1770
2658
|
};
|
|
1771
2659
|
};
|