@longdotxyz/shared 0.0.30 → 0.0.32
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 +973 -72
- package/dist/contracts/asset.contract.js +113 -66
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.d.ts +14 -6
- package/dist/contracts/auction-template.contract.js +4 -0
- package/dist/contracts/auction-template.contract.js.map +1 -1
- package/dist/contracts/auction.contract.d.ts +19 -4
- package/dist/contracts/auction.contract.js +7 -1
- package/dist/contracts/auction.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +827 -81
- package/dist/contracts/ipfs.contract.d.ts +4 -4
- package/dist/contracts/quote.contract.d.ts +29 -12
- package/dist/contracts/quote.contract.js +12 -4
- package/dist/contracts/quote.contract.js.map +1 -1
- package/dist/graphql/generated.d.ts +8 -0
- package/dist/graphql/generated.js +18 -16
- package/dist/graphql/generated.js.map +1 -1
- package/dist/types/constants.d.ts +4 -0
- package/dist/types/constants.js +6 -1
- package/dist/types/constants.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import z from "zod";
|
|
2
|
-
import { AssetStatus } from "../types";
|
|
2
|
+
import { AssetStatus, ChainID } from "../types";
|
|
3
3
|
declare const AssetResponse: z.ZodObject<{
|
|
4
4
|
asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
5
5
|
asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -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,31 +507,44 @@ 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<{
|
|
533
|
+
chainId: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof ChainID>>>;
|
|
340
534
|
status: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof AssetStatus>>>;
|
|
341
535
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
342
536
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
343
537
|
}, "strip", z.ZodTypeAny, {
|
|
344
538
|
status: AssetStatus;
|
|
539
|
+
chainId: ChainID;
|
|
345
540
|
limit: number;
|
|
346
541
|
offset: number;
|
|
347
542
|
}, {
|
|
348
543
|
status?: AssetStatus | undefined;
|
|
544
|
+
chainId?: ChainID | undefined;
|
|
349
545
|
limit?: number | undefined;
|
|
350
546
|
offset?: number | undefined;
|
|
351
547
|
}>;
|
|
352
|
-
description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
|
|
353
548
|
method: "GET";
|
|
354
549
|
path: "/assets/";
|
|
355
550
|
responses: {
|
|
@@ -385,7 +580,43 @@ declare const assetContract: {
|
|
|
385
580
|
token_name: z.ZodString;
|
|
386
581
|
token_description: z.ZodNullable<z.ZodString>;
|
|
387
582
|
token_symbol: z.ZodString;
|
|
388
|
-
token_uri_data: z.ZodNullable<z.
|
|
583
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
584
|
+
name: z.ZodOptional<z.ZodString>;
|
|
585
|
+
description: z.ZodOptional<z.ZodString>;
|
|
586
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
587
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
588
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
589
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
590
|
+
address: z.ZodString;
|
|
591
|
+
percentage: z.ZodNumber;
|
|
592
|
+
}, "strip", z.ZodTypeAny, {
|
|
593
|
+
address: string;
|
|
594
|
+
percentage: number;
|
|
595
|
+
}, {
|
|
596
|
+
address: string;
|
|
597
|
+
percentage: number;
|
|
598
|
+
}>, "many">>;
|
|
599
|
+
}, "strip", z.ZodTypeAny, {
|
|
600
|
+
name?: string | undefined;
|
|
601
|
+
description?: string | undefined;
|
|
602
|
+
image_hash?: string | undefined;
|
|
603
|
+
fee_receiver?: string | undefined;
|
|
604
|
+
social_links?: string[] | undefined;
|
|
605
|
+
vesting_recipients?: {
|
|
606
|
+
address: string;
|
|
607
|
+
percentage: number;
|
|
608
|
+
}[] | undefined;
|
|
609
|
+
}, {
|
|
610
|
+
name?: string | undefined;
|
|
611
|
+
description?: string | undefined;
|
|
612
|
+
image_hash?: string | undefined;
|
|
613
|
+
fee_receiver?: string | undefined;
|
|
614
|
+
social_links?: string[] | undefined;
|
|
615
|
+
vesting_recipients?: {
|
|
616
|
+
address: string;
|
|
617
|
+
percentage: number;
|
|
618
|
+
}[] | undefined;
|
|
619
|
+
}>>;
|
|
389
620
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
390
621
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
391
622
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -395,21 +626,41 @@ declare const assetContract: {
|
|
|
395
626
|
token_name: string;
|
|
396
627
|
token_description: string | null;
|
|
397
628
|
token_symbol: string;
|
|
629
|
+
token_uri_data: {
|
|
630
|
+
name?: string | undefined;
|
|
631
|
+
description?: string | undefined;
|
|
632
|
+
image_hash?: string | undefined;
|
|
633
|
+
fee_receiver?: string | undefined;
|
|
634
|
+
social_links?: string[] | undefined;
|
|
635
|
+
vesting_recipients?: {
|
|
636
|
+
address: string;
|
|
637
|
+
percentage: number;
|
|
638
|
+
}[] | undefined;
|
|
639
|
+
} | null;
|
|
398
640
|
token_image_public_url: string | null;
|
|
399
641
|
token_creator_address: `0x${string}`;
|
|
400
642
|
token_fee_receiver_address: `0x${string}`;
|
|
401
643
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
402
|
-
token_uri_data?: any;
|
|
403
644
|
}, {
|
|
404
645
|
token_address: string;
|
|
405
646
|
token_name: string;
|
|
406
647
|
token_description: string | null;
|
|
407
648
|
token_symbol: string;
|
|
649
|
+
token_uri_data: {
|
|
650
|
+
name?: string | undefined;
|
|
651
|
+
description?: string | undefined;
|
|
652
|
+
image_hash?: string | undefined;
|
|
653
|
+
fee_receiver?: string | undefined;
|
|
654
|
+
social_links?: string[] | undefined;
|
|
655
|
+
vesting_recipients?: {
|
|
656
|
+
address: string;
|
|
657
|
+
percentage: number;
|
|
658
|
+
}[] | undefined;
|
|
659
|
+
} | null;
|
|
408
660
|
token_image_public_url: string | null;
|
|
409
661
|
token_creator_address: string;
|
|
410
662
|
token_fee_receiver_address: string;
|
|
411
663
|
token_vesting_recipient_addresses: string[];
|
|
412
|
-
token_uri_data?: any;
|
|
413
664
|
}>;
|
|
414
665
|
}, "strip", z.ZodTypeAny, {
|
|
415
666
|
pool_current_price: string;
|
|
@@ -437,11 +688,21 @@ declare const assetContract: {
|
|
|
437
688
|
token_name: string;
|
|
438
689
|
token_description: string | null;
|
|
439
690
|
token_symbol: string;
|
|
691
|
+
token_uri_data: {
|
|
692
|
+
name?: string | undefined;
|
|
693
|
+
description?: string | undefined;
|
|
694
|
+
image_hash?: string | undefined;
|
|
695
|
+
fee_receiver?: string | undefined;
|
|
696
|
+
social_links?: string[] | undefined;
|
|
697
|
+
vesting_recipients?: {
|
|
698
|
+
address: string;
|
|
699
|
+
percentage: number;
|
|
700
|
+
}[] | undefined;
|
|
701
|
+
} | null;
|
|
440
702
|
token_image_public_url: string | null;
|
|
441
703
|
token_creator_address: `0x${string}`;
|
|
442
704
|
token_fee_receiver_address: `0x${string}`;
|
|
443
705
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
444
|
-
token_uri_data?: any;
|
|
445
706
|
};
|
|
446
707
|
}, {
|
|
447
708
|
pool_current_price: string;
|
|
@@ -469,11 +730,21 @@ declare const assetContract: {
|
|
|
469
730
|
token_name: string;
|
|
470
731
|
token_description: string | null;
|
|
471
732
|
token_symbol: string;
|
|
733
|
+
token_uri_data: {
|
|
734
|
+
name?: string | undefined;
|
|
735
|
+
description?: string | undefined;
|
|
736
|
+
image_hash?: string | undefined;
|
|
737
|
+
fee_receiver?: string | undefined;
|
|
738
|
+
social_links?: string[] | undefined;
|
|
739
|
+
vesting_recipients?: {
|
|
740
|
+
address: string;
|
|
741
|
+
percentage: number;
|
|
742
|
+
}[] | undefined;
|
|
743
|
+
} | null;
|
|
472
744
|
token_image_public_url: string | null;
|
|
473
745
|
token_creator_address: string;
|
|
474
746
|
token_fee_receiver_address: string;
|
|
475
747
|
token_vesting_recipient_addresses: string[];
|
|
476
|
-
token_uri_data?: any;
|
|
477
748
|
};
|
|
478
749
|
}>;
|
|
479
750
|
graduation_pool: z.ZodObject<{
|
|
@@ -491,7 +762,43 @@ declare const assetContract: {
|
|
|
491
762
|
token_name: z.ZodString;
|
|
492
763
|
token_description: z.ZodNullable<z.ZodString>;
|
|
493
764
|
token_symbol: z.ZodString;
|
|
494
|
-
token_uri_data: z.ZodNullable<z.
|
|
765
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
766
|
+
name: z.ZodOptional<z.ZodString>;
|
|
767
|
+
description: z.ZodOptional<z.ZodString>;
|
|
768
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
769
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
770
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
771
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
772
|
+
address: z.ZodString;
|
|
773
|
+
percentage: z.ZodNumber;
|
|
774
|
+
}, "strip", z.ZodTypeAny, {
|
|
775
|
+
address: string;
|
|
776
|
+
percentage: number;
|
|
777
|
+
}, {
|
|
778
|
+
address: string;
|
|
779
|
+
percentage: number;
|
|
780
|
+
}>, "many">>;
|
|
781
|
+
}, "strip", z.ZodTypeAny, {
|
|
782
|
+
name?: string | undefined;
|
|
783
|
+
description?: string | undefined;
|
|
784
|
+
image_hash?: string | undefined;
|
|
785
|
+
fee_receiver?: string | undefined;
|
|
786
|
+
social_links?: string[] | undefined;
|
|
787
|
+
vesting_recipients?: {
|
|
788
|
+
address: string;
|
|
789
|
+
percentage: number;
|
|
790
|
+
}[] | undefined;
|
|
791
|
+
}, {
|
|
792
|
+
name?: string | undefined;
|
|
793
|
+
description?: string | undefined;
|
|
794
|
+
image_hash?: string | undefined;
|
|
795
|
+
fee_receiver?: string | undefined;
|
|
796
|
+
social_links?: string[] | undefined;
|
|
797
|
+
vesting_recipients?: {
|
|
798
|
+
address: string;
|
|
799
|
+
percentage: number;
|
|
800
|
+
}[] | undefined;
|
|
801
|
+
}>>;
|
|
495
802
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
496
803
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
497
804
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -502,23 +809,43 @@ declare const assetContract: {
|
|
|
502
809
|
token_name: string;
|
|
503
810
|
token_description: string | null;
|
|
504
811
|
token_symbol: string;
|
|
812
|
+
token_uri_data: {
|
|
813
|
+
name?: string | undefined;
|
|
814
|
+
description?: string | undefined;
|
|
815
|
+
image_hash?: string | undefined;
|
|
816
|
+
fee_receiver?: string | undefined;
|
|
817
|
+
social_links?: string[] | undefined;
|
|
818
|
+
vesting_recipients?: {
|
|
819
|
+
address: string;
|
|
820
|
+
percentage: number;
|
|
821
|
+
}[] | undefined;
|
|
822
|
+
} | null;
|
|
505
823
|
token_image_public_url: string | null;
|
|
506
824
|
token_creator_address: `0x${string}`;
|
|
507
825
|
token_fee_receiver_address: `0x${string}`;
|
|
508
826
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
509
827
|
integrator_address: string;
|
|
510
|
-
token_uri_data?: any;
|
|
511
828
|
}, {
|
|
512
829
|
token_address: string;
|
|
513
830
|
token_name: string;
|
|
514
831
|
token_description: string | null;
|
|
515
832
|
token_symbol: string;
|
|
833
|
+
token_uri_data: {
|
|
834
|
+
name?: string | undefined;
|
|
835
|
+
description?: string | undefined;
|
|
836
|
+
image_hash?: string | undefined;
|
|
837
|
+
fee_receiver?: string | undefined;
|
|
838
|
+
social_links?: string[] | undefined;
|
|
839
|
+
vesting_recipients?: {
|
|
840
|
+
address: string;
|
|
841
|
+
percentage: number;
|
|
842
|
+
}[] | undefined;
|
|
843
|
+
} | null;
|
|
516
844
|
token_image_public_url: string | null;
|
|
517
845
|
token_creator_address: string;
|
|
518
846
|
token_fee_receiver_address: string;
|
|
519
847
|
token_vesting_recipient_addresses: string[];
|
|
520
848
|
integrator_address: string;
|
|
521
|
-
token_uri_data?: any;
|
|
522
849
|
}>;
|
|
523
850
|
}, "strip", z.ZodTypeAny, {
|
|
524
851
|
pool_current_price: string;
|
|
@@ -535,12 +862,22 @@ declare const assetContract: {
|
|
|
535
862
|
token_name: string;
|
|
536
863
|
token_description: string | null;
|
|
537
864
|
token_symbol: string;
|
|
865
|
+
token_uri_data: {
|
|
866
|
+
name?: string | undefined;
|
|
867
|
+
description?: string | undefined;
|
|
868
|
+
image_hash?: string | undefined;
|
|
869
|
+
fee_receiver?: string | undefined;
|
|
870
|
+
social_links?: string[] | undefined;
|
|
871
|
+
vesting_recipients?: {
|
|
872
|
+
address: string;
|
|
873
|
+
percentage: number;
|
|
874
|
+
}[] | undefined;
|
|
875
|
+
} | null;
|
|
538
876
|
token_image_public_url: string | null;
|
|
539
877
|
token_creator_address: `0x${string}`;
|
|
540
878
|
token_fee_receiver_address: `0x${string}`;
|
|
541
879
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
542
880
|
integrator_address: string;
|
|
543
|
-
token_uri_data?: any;
|
|
544
881
|
};
|
|
545
882
|
}, {
|
|
546
883
|
pool_current_price: string;
|
|
@@ -557,12 +894,22 @@ declare const assetContract: {
|
|
|
557
894
|
token_name: string;
|
|
558
895
|
token_description: string | null;
|
|
559
896
|
token_symbol: string;
|
|
897
|
+
token_uri_data: {
|
|
898
|
+
name?: string | undefined;
|
|
899
|
+
description?: string | undefined;
|
|
900
|
+
image_hash?: string | undefined;
|
|
901
|
+
fee_receiver?: string | undefined;
|
|
902
|
+
social_links?: string[] | undefined;
|
|
903
|
+
vesting_recipients?: {
|
|
904
|
+
address: string;
|
|
905
|
+
percentage: number;
|
|
906
|
+
}[] | undefined;
|
|
907
|
+
} | null;
|
|
560
908
|
token_image_public_url: string | null;
|
|
561
909
|
token_creator_address: string;
|
|
562
910
|
token_fee_receiver_address: string;
|
|
563
911
|
token_vesting_recipient_addresses: string[];
|
|
564
912
|
integrator_address: string;
|
|
565
|
-
token_uri_data?: any;
|
|
566
913
|
};
|
|
567
914
|
}>;
|
|
568
915
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -596,11 +943,21 @@ declare const assetContract: {
|
|
|
596
943
|
token_name: string;
|
|
597
944
|
token_description: string | null;
|
|
598
945
|
token_symbol: string;
|
|
946
|
+
token_uri_data: {
|
|
947
|
+
name?: string | undefined;
|
|
948
|
+
description?: string | undefined;
|
|
949
|
+
image_hash?: string | undefined;
|
|
950
|
+
fee_receiver?: string | undefined;
|
|
951
|
+
social_links?: string[] | undefined;
|
|
952
|
+
vesting_recipients?: {
|
|
953
|
+
address: string;
|
|
954
|
+
percentage: number;
|
|
955
|
+
}[] | undefined;
|
|
956
|
+
} | null;
|
|
599
957
|
token_image_public_url: string | null;
|
|
600
958
|
token_creator_address: `0x${string}`;
|
|
601
959
|
token_fee_receiver_address: `0x${string}`;
|
|
602
960
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
603
|
-
token_uri_data?: any;
|
|
604
961
|
};
|
|
605
962
|
};
|
|
606
963
|
graduation_pool: {
|
|
@@ -618,12 +975,22 @@ declare const assetContract: {
|
|
|
618
975
|
token_name: string;
|
|
619
976
|
token_description: string | null;
|
|
620
977
|
token_symbol: string;
|
|
978
|
+
token_uri_data: {
|
|
979
|
+
name?: string | undefined;
|
|
980
|
+
description?: string | undefined;
|
|
981
|
+
image_hash?: string | undefined;
|
|
982
|
+
fee_receiver?: string | undefined;
|
|
983
|
+
social_links?: string[] | undefined;
|
|
984
|
+
vesting_recipients?: {
|
|
985
|
+
address: string;
|
|
986
|
+
percentage: number;
|
|
987
|
+
}[] | undefined;
|
|
988
|
+
} | null;
|
|
621
989
|
token_image_public_url: string | null;
|
|
622
990
|
token_creator_address: `0x${string}`;
|
|
623
991
|
token_fee_receiver_address: `0x${string}`;
|
|
624
992
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
625
993
|
integrator_address: string;
|
|
626
|
-
token_uri_data?: any;
|
|
627
994
|
};
|
|
628
995
|
};
|
|
629
996
|
}, {
|
|
@@ -657,11 +1024,21 @@ declare const assetContract: {
|
|
|
657
1024
|
token_name: string;
|
|
658
1025
|
token_description: string | null;
|
|
659
1026
|
token_symbol: string;
|
|
1027
|
+
token_uri_data: {
|
|
1028
|
+
name?: string | undefined;
|
|
1029
|
+
description?: string | undefined;
|
|
1030
|
+
image_hash?: string | undefined;
|
|
1031
|
+
fee_receiver?: string | undefined;
|
|
1032
|
+
social_links?: string[] | undefined;
|
|
1033
|
+
vesting_recipients?: {
|
|
1034
|
+
address: string;
|
|
1035
|
+
percentage: number;
|
|
1036
|
+
}[] | undefined;
|
|
1037
|
+
} | null;
|
|
660
1038
|
token_image_public_url: string | null;
|
|
661
1039
|
token_creator_address: string;
|
|
662
1040
|
token_fee_receiver_address: string;
|
|
663
1041
|
token_vesting_recipient_addresses: string[];
|
|
664
|
-
token_uri_data?: any;
|
|
665
1042
|
};
|
|
666
1043
|
};
|
|
667
1044
|
graduation_pool: {
|
|
@@ -679,12 +1056,22 @@ declare const assetContract: {
|
|
|
679
1056
|
token_name: string;
|
|
680
1057
|
token_description: string | null;
|
|
681
1058
|
token_symbol: string;
|
|
1059
|
+
token_uri_data: {
|
|
1060
|
+
name?: string | undefined;
|
|
1061
|
+
description?: string | undefined;
|
|
1062
|
+
image_hash?: string | undefined;
|
|
1063
|
+
fee_receiver?: string | undefined;
|
|
1064
|
+
social_links?: string[] | undefined;
|
|
1065
|
+
vesting_recipients?: {
|
|
1066
|
+
address: string;
|
|
1067
|
+
percentage: number;
|
|
1068
|
+
}[] | undefined;
|
|
1069
|
+
} | null;
|
|
682
1070
|
token_image_public_url: string | null;
|
|
683
1071
|
token_creator_address: string;
|
|
684
1072
|
token_fee_receiver_address: string;
|
|
685
1073
|
token_vesting_recipient_addresses: string[];
|
|
686
1074
|
integrator_address: string;
|
|
687
|
-
token_uri_data?: any;
|
|
688
1075
|
};
|
|
689
1076
|
};
|
|
690
1077
|
}>, "many">;
|
|
@@ -720,11 +1107,21 @@ declare const assetContract: {
|
|
|
720
1107
|
token_name: string;
|
|
721
1108
|
token_description: string | null;
|
|
722
1109
|
token_symbol: string;
|
|
1110
|
+
token_uri_data: {
|
|
1111
|
+
name?: string | undefined;
|
|
1112
|
+
description?: string | undefined;
|
|
1113
|
+
image_hash?: string | undefined;
|
|
1114
|
+
fee_receiver?: string | undefined;
|
|
1115
|
+
social_links?: string[] | undefined;
|
|
1116
|
+
vesting_recipients?: {
|
|
1117
|
+
address: string;
|
|
1118
|
+
percentage: number;
|
|
1119
|
+
}[] | undefined;
|
|
1120
|
+
} | null;
|
|
723
1121
|
token_image_public_url: string | null;
|
|
724
1122
|
token_creator_address: `0x${string}`;
|
|
725
1123
|
token_fee_receiver_address: `0x${string}`;
|
|
726
1124
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
727
|
-
token_uri_data?: any;
|
|
728
1125
|
};
|
|
729
1126
|
};
|
|
730
1127
|
graduation_pool: {
|
|
@@ -742,12 +1139,22 @@ declare const assetContract: {
|
|
|
742
1139
|
token_name: string;
|
|
743
1140
|
token_description: string | null;
|
|
744
1141
|
token_symbol: string;
|
|
1142
|
+
token_uri_data: {
|
|
1143
|
+
name?: string | undefined;
|
|
1144
|
+
description?: string | undefined;
|
|
1145
|
+
image_hash?: string | undefined;
|
|
1146
|
+
fee_receiver?: string | undefined;
|
|
1147
|
+
social_links?: string[] | undefined;
|
|
1148
|
+
vesting_recipients?: {
|
|
1149
|
+
address: string;
|
|
1150
|
+
percentage: number;
|
|
1151
|
+
}[] | undefined;
|
|
1152
|
+
} | null;
|
|
745
1153
|
token_image_public_url: string | null;
|
|
746
1154
|
token_creator_address: `0x${string}`;
|
|
747
1155
|
token_fee_receiver_address: `0x${string}`;
|
|
748
1156
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
749
1157
|
integrator_address: string;
|
|
750
|
-
token_uri_data?: any;
|
|
751
1158
|
};
|
|
752
1159
|
};
|
|
753
1160
|
}[];
|
|
@@ -783,11 +1190,21 @@ declare const assetContract: {
|
|
|
783
1190
|
token_name: string;
|
|
784
1191
|
token_description: string | null;
|
|
785
1192
|
token_symbol: string;
|
|
1193
|
+
token_uri_data: {
|
|
1194
|
+
name?: string | undefined;
|
|
1195
|
+
description?: string | undefined;
|
|
1196
|
+
image_hash?: string | undefined;
|
|
1197
|
+
fee_receiver?: string | undefined;
|
|
1198
|
+
social_links?: string[] | undefined;
|
|
1199
|
+
vesting_recipients?: {
|
|
1200
|
+
address: string;
|
|
1201
|
+
percentage: number;
|
|
1202
|
+
}[] | undefined;
|
|
1203
|
+
} | null;
|
|
786
1204
|
token_image_public_url: string | null;
|
|
787
1205
|
token_creator_address: string;
|
|
788
1206
|
token_fee_receiver_address: string;
|
|
789
1207
|
token_vesting_recipient_addresses: string[];
|
|
790
|
-
token_uri_data?: any;
|
|
791
1208
|
};
|
|
792
1209
|
};
|
|
793
1210
|
graduation_pool: {
|
|
@@ -805,12 +1222,22 @@ declare const assetContract: {
|
|
|
805
1222
|
token_name: string;
|
|
806
1223
|
token_description: string | null;
|
|
807
1224
|
token_symbol: string;
|
|
1225
|
+
token_uri_data: {
|
|
1226
|
+
name?: string | undefined;
|
|
1227
|
+
description?: string | undefined;
|
|
1228
|
+
image_hash?: string | undefined;
|
|
1229
|
+
fee_receiver?: string | undefined;
|
|
1230
|
+
social_links?: string[] | undefined;
|
|
1231
|
+
vesting_recipients?: {
|
|
1232
|
+
address: string;
|
|
1233
|
+
percentage: number;
|
|
1234
|
+
}[] | undefined;
|
|
1235
|
+
} | null;
|
|
808
1236
|
token_image_public_url: string | null;
|
|
809
1237
|
token_creator_address: string;
|
|
810
1238
|
token_fee_receiver_address: string;
|
|
811
1239
|
token_vesting_recipient_addresses: string[];
|
|
812
1240
|
integrator_address: string;
|
|
813
|
-
token_uri_data?: any;
|
|
814
1241
|
};
|
|
815
1242
|
};
|
|
816
1243
|
}[];
|
|
@@ -818,17 +1245,20 @@ declare const assetContract: {
|
|
|
818
1245
|
};
|
|
819
1246
|
};
|
|
820
1247
|
searchAssets: {
|
|
1248
|
+
description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
|
|
821
1249
|
query: z.ZodObject<{
|
|
1250
|
+
chainId: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof ChainID>>>;
|
|
822
1251
|
term: z.ZodString;
|
|
823
1252
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
824
1253
|
}, "strip", z.ZodTypeAny, {
|
|
1254
|
+
chainId: ChainID;
|
|
825
1255
|
limit: number;
|
|
826
1256
|
term: string;
|
|
827
1257
|
}, {
|
|
828
1258
|
term: string;
|
|
1259
|
+
chainId?: ChainID | undefined;
|
|
829
1260
|
limit?: number | undefined;
|
|
830
1261
|
}>;
|
|
831
|
-
description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
|
|
832
1262
|
method: "GET";
|
|
833
1263
|
path: "/assets/search";
|
|
834
1264
|
responses: {
|
|
@@ -864,7 +1294,43 @@ declare const assetContract: {
|
|
|
864
1294
|
token_name: z.ZodString;
|
|
865
1295
|
token_description: z.ZodNullable<z.ZodString>;
|
|
866
1296
|
token_symbol: z.ZodString;
|
|
867
|
-
token_uri_data: z.ZodNullable<z.
|
|
1297
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
1298
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1299
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1300
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
1301
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
1302
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1303
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1304
|
+
address: z.ZodString;
|
|
1305
|
+
percentage: z.ZodNumber;
|
|
1306
|
+
}, "strip", z.ZodTypeAny, {
|
|
1307
|
+
address: string;
|
|
1308
|
+
percentage: number;
|
|
1309
|
+
}, {
|
|
1310
|
+
address: string;
|
|
1311
|
+
percentage: number;
|
|
1312
|
+
}>, "many">>;
|
|
1313
|
+
}, "strip", z.ZodTypeAny, {
|
|
1314
|
+
name?: string | undefined;
|
|
1315
|
+
description?: string | undefined;
|
|
1316
|
+
image_hash?: string | undefined;
|
|
1317
|
+
fee_receiver?: string | undefined;
|
|
1318
|
+
social_links?: string[] | undefined;
|
|
1319
|
+
vesting_recipients?: {
|
|
1320
|
+
address: string;
|
|
1321
|
+
percentage: number;
|
|
1322
|
+
}[] | undefined;
|
|
1323
|
+
}, {
|
|
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
|
+
}>>;
|
|
868
1334
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
869
1335
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
870
1336
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -874,21 +1340,41 @@ declare const assetContract: {
|
|
|
874
1340
|
token_name: string;
|
|
875
1341
|
token_description: string | null;
|
|
876
1342
|
token_symbol: string;
|
|
1343
|
+
token_uri_data: {
|
|
1344
|
+
name?: string | undefined;
|
|
1345
|
+
description?: string | undefined;
|
|
1346
|
+
image_hash?: string | undefined;
|
|
1347
|
+
fee_receiver?: string | undefined;
|
|
1348
|
+
social_links?: string[] | undefined;
|
|
1349
|
+
vesting_recipients?: {
|
|
1350
|
+
address: string;
|
|
1351
|
+
percentage: number;
|
|
1352
|
+
}[] | undefined;
|
|
1353
|
+
} | null;
|
|
877
1354
|
token_image_public_url: string | null;
|
|
878
1355
|
token_creator_address: `0x${string}`;
|
|
879
1356
|
token_fee_receiver_address: `0x${string}`;
|
|
880
1357
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
881
|
-
token_uri_data?: any;
|
|
882
1358
|
}, {
|
|
883
1359
|
token_address: string;
|
|
884
1360
|
token_name: string;
|
|
885
1361
|
token_description: string | null;
|
|
886
1362
|
token_symbol: string;
|
|
1363
|
+
token_uri_data: {
|
|
1364
|
+
name?: string | undefined;
|
|
1365
|
+
description?: string | undefined;
|
|
1366
|
+
image_hash?: string | undefined;
|
|
1367
|
+
fee_receiver?: string | undefined;
|
|
1368
|
+
social_links?: string[] | undefined;
|
|
1369
|
+
vesting_recipients?: {
|
|
1370
|
+
address: string;
|
|
1371
|
+
percentage: number;
|
|
1372
|
+
}[] | undefined;
|
|
1373
|
+
} | null;
|
|
887
1374
|
token_image_public_url: string | null;
|
|
888
1375
|
token_creator_address: string;
|
|
889
1376
|
token_fee_receiver_address: string;
|
|
890
1377
|
token_vesting_recipient_addresses: string[];
|
|
891
|
-
token_uri_data?: any;
|
|
892
1378
|
}>;
|
|
893
1379
|
}, "strip", z.ZodTypeAny, {
|
|
894
1380
|
pool_current_price: string;
|
|
@@ -916,11 +1402,21 @@ declare const assetContract: {
|
|
|
916
1402
|
token_name: string;
|
|
917
1403
|
token_description: string | null;
|
|
918
1404
|
token_symbol: string;
|
|
1405
|
+
token_uri_data: {
|
|
1406
|
+
name?: string | undefined;
|
|
1407
|
+
description?: string | undefined;
|
|
1408
|
+
image_hash?: string | undefined;
|
|
1409
|
+
fee_receiver?: string | undefined;
|
|
1410
|
+
social_links?: string[] | undefined;
|
|
1411
|
+
vesting_recipients?: {
|
|
1412
|
+
address: string;
|
|
1413
|
+
percentage: number;
|
|
1414
|
+
}[] | undefined;
|
|
1415
|
+
} | null;
|
|
919
1416
|
token_image_public_url: string | null;
|
|
920
1417
|
token_creator_address: `0x${string}`;
|
|
921
1418
|
token_fee_receiver_address: `0x${string}`;
|
|
922
1419
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
923
|
-
token_uri_data?: any;
|
|
924
1420
|
};
|
|
925
1421
|
}, {
|
|
926
1422
|
pool_current_price: string;
|
|
@@ -948,11 +1444,21 @@ declare const assetContract: {
|
|
|
948
1444
|
token_name: string;
|
|
949
1445
|
token_description: string | null;
|
|
950
1446
|
token_symbol: string;
|
|
1447
|
+
token_uri_data: {
|
|
1448
|
+
name?: string | undefined;
|
|
1449
|
+
description?: string | undefined;
|
|
1450
|
+
image_hash?: string | undefined;
|
|
1451
|
+
fee_receiver?: string | undefined;
|
|
1452
|
+
social_links?: string[] | undefined;
|
|
1453
|
+
vesting_recipients?: {
|
|
1454
|
+
address: string;
|
|
1455
|
+
percentage: number;
|
|
1456
|
+
}[] | undefined;
|
|
1457
|
+
} | null;
|
|
951
1458
|
token_image_public_url: string | null;
|
|
952
1459
|
token_creator_address: string;
|
|
953
1460
|
token_fee_receiver_address: string;
|
|
954
1461
|
token_vesting_recipient_addresses: string[];
|
|
955
|
-
token_uri_data?: any;
|
|
956
1462
|
};
|
|
957
1463
|
}>;
|
|
958
1464
|
graduation_pool: z.ZodObject<{
|
|
@@ -970,7 +1476,43 @@ declare const assetContract: {
|
|
|
970
1476
|
token_name: z.ZodString;
|
|
971
1477
|
token_description: z.ZodNullable<z.ZodString>;
|
|
972
1478
|
token_symbol: z.ZodString;
|
|
973
|
-
token_uri_data: z.ZodNullable<z.
|
|
1479
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
1480
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1481
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1482
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
1483
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
1484
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1485
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1486
|
+
address: z.ZodString;
|
|
1487
|
+
percentage: z.ZodNumber;
|
|
1488
|
+
}, "strip", z.ZodTypeAny, {
|
|
1489
|
+
address: string;
|
|
1490
|
+
percentage: number;
|
|
1491
|
+
}, {
|
|
1492
|
+
address: string;
|
|
1493
|
+
percentage: number;
|
|
1494
|
+
}>, "many">>;
|
|
1495
|
+
}, "strip", z.ZodTypeAny, {
|
|
1496
|
+
name?: string | undefined;
|
|
1497
|
+
description?: string | undefined;
|
|
1498
|
+
image_hash?: string | undefined;
|
|
1499
|
+
fee_receiver?: string | undefined;
|
|
1500
|
+
social_links?: string[] | undefined;
|
|
1501
|
+
vesting_recipients?: {
|
|
1502
|
+
address: string;
|
|
1503
|
+
percentage: number;
|
|
1504
|
+
}[] | undefined;
|
|
1505
|
+
}, {
|
|
1506
|
+
name?: string | undefined;
|
|
1507
|
+
description?: string | undefined;
|
|
1508
|
+
image_hash?: string | undefined;
|
|
1509
|
+
fee_receiver?: string | undefined;
|
|
1510
|
+
social_links?: string[] | undefined;
|
|
1511
|
+
vesting_recipients?: {
|
|
1512
|
+
address: string;
|
|
1513
|
+
percentage: number;
|
|
1514
|
+
}[] | undefined;
|
|
1515
|
+
}>>;
|
|
974
1516
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
975
1517
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
976
1518
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -981,23 +1523,43 @@ declare const assetContract: {
|
|
|
981
1523
|
token_name: string;
|
|
982
1524
|
token_description: string | null;
|
|
983
1525
|
token_symbol: string;
|
|
1526
|
+
token_uri_data: {
|
|
1527
|
+
name?: string | undefined;
|
|
1528
|
+
description?: string | undefined;
|
|
1529
|
+
image_hash?: string | undefined;
|
|
1530
|
+
fee_receiver?: string | undefined;
|
|
1531
|
+
social_links?: string[] | undefined;
|
|
1532
|
+
vesting_recipients?: {
|
|
1533
|
+
address: string;
|
|
1534
|
+
percentage: number;
|
|
1535
|
+
}[] | undefined;
|
|
1536
|
+
} | null;
|
|
984
1537
|
token_image_public_url: string | null;
|
|
985
1538
|
token_creator_address: `0x${string}`;
|
|
986
1539
|
token_fee_receiver_address: `0x${string}`;
|
|
987
1540
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
988
1541
|
integrator_address: string;
|
|
989
|
-
token_uri_data?: any;
|
|
990
1542
|
}, {
|
|
991
1543
|
token_address: string;
|
|
992
1544
|
token_name: string;
|
|
993
1545
|
token_description: string | null;
|
|
994
1546
|
token_symbol: string;
|
|
1547
|
+
token_uri_data: {
|
|
1548
|
+
name?: string | undefined;
|
|
1549
|
+
description?: string | undefined;
|
|
1550
|
+
image_hash?: string | undefined;
|
|
1551
|
+
fee_receiver?: string | undefined;
|
|
1552
|
+
social_links?: string[] | undefined;
|
|
1553
|
+
vesting_recipients?: {
|
|
1554
|
+
address: string;
|
|
1555
|
+
percentage: number;
|
|
1556
|
+
}[] | undefined;
|
|
1557
|
+
} | null;
|
|
995
1558
|
token_image_public_url: string | null;
|
|
996
1559
|
token_creator_address: string;
|
|
997
1560
|
token_fee_receiver_address: string;
|
|
998
1561
|
token_vesting_recipient_addresses: string[];
|
|
999
1562
|
integrator_address: string;
|
|
1000
|
-
token_uri_data?: any;
|
|
1001
1563
|
}>;
|
|
1002
1564
|
}, "strip", z.ZodTypeAny, {
|
|
1003
1565
|
pool_current_price: string;
|
|
@@ -1014,12 +1576,22 @@ declare const assetContract: {
|
|
|
1014
1576
|
token_name: string;
|
|
1015
1577
|
token_description: string | null;
|
|
1016
1578
|
token_symbol: string;
|
|
1579
|
+
token_uri_data: {
|
|
1580
|
+
name?: string | undefined;
|
|
1581
|
+
description?: string | undefined;
|
|
1582
|
+
image_hash?: string | undefined;
|
|
1583
|
+
fee_receiver?: string | undefined;
|
|
1584
|
+
social_links?: string[] | undefined;
|
|
1585
|
+
vesting_recipients?: {
|
|
1586
|
+
address: string;
|
|
1587
|
+
percentage: number;
|
|
1588
|
+
}[] | undefined;
|
|
1589
|
+
} | null;
|
|
1017
1590
|
token_image_public_url: string | null;
|
|
1018
1591
|
token_creator_address: `0x${string}`;
|
|
1019
1592
|
token_fee_receiver_address: `0x${string}`;
|
|
1020
1593
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1021
1594
|
integrator_address: string;
|
|
1022
|
-
token_uri_data?: any;
|
|
1023
1595
|
};
|
|
1024
1596
|
}, {
|
|
1025
1597
|
pool_current_price: string;
|
|
@@ -1036,12 +1608,22 @@ declare const assetContract: {
|
|
|
1036
1608
|
token_name: string;
|
|
1037
1609
|
token_description: string | null;
|
|
1038
1610
|
token_symbol: string;
|
|
1611
|
+
token_uri_data: {
|
|
1612
|
+
name?: string | undefined;
|
|
1613
|
+
description?: string | undefined;
|
|
1614
|
+
image_hash?: string | undefined;
|
|
1615
|
+
fee_receiver?: string | undefined;
|
|
1616
|
+
social_links?: string[] | undefined;
|
|
1617
|
+
vesting_recipients?: {
|
|
1618
|
+
address: string;
|
|
1619
|
+
percentage: number;
|
|
1620
|
+
}[] | undefined;
|
|
1621
|
+
} | null;
|
|
1039
1622
|
token_image_public_url: string | null;
|
|
1040
1623
|
token_creator_address: string;
|
|
1041
1624
|
token_fee_receiver_address: string;
|
|
1042
1625
|
token_vesting_recipient_addresses: string[];
|
|
1043
1626
|
integrator_address: string;
|
|
1044
|
-
token_uri_data?: any;
|
|
1045
1627
|
};
|
|
1046
1628
|
}>;
|
|
1047
1629
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1075,11 +1657,21 @@ declare const assetContract: {
|
|
|
1075
1657
|
token_name: string;
|
|
1076
1658
|
token_description: string | null;
|
|
1077
1659
|
token_symbol: string;
|
|
1660
|
+
token_uri_data: {
|
|
1661
|
+
name?: string | undefined;
|
|
1662
|
+
description?: string | undefined;
|
|
1663
|
+
image_hash?: string | undefined;
|
|
1664
|
+
fee_receiver?: string | undefined;
|
|
1665
|
+
social_links?: string[] | undefined;
|
|
1666
|
+
vesting_recipients?: {
|
|
1667
|
+
address: string;
|
|
1668
|
+
percentage: number;
|
|
1669
|
+
}[] | undefined;
|
|
1670
|
+
} | null;
|
|
1078
1671
|
token_image_public_url: string | null;
|
|
1079
1672
|
token_creator_address: `0x${string}`;
|
|
1080
1673
|
token_fee_receiver_address: `0x${string}`;
|
|
1081
1674
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1082
|
-
token_uri_data?: any;
|
|
1083
1675
|
};
|
|
1084
1676
|
};
|
|
1085
1677
|
graduation_pool: {
|
|
@@ -1097,12 +1689,22 @@ declare const assetContract: {
|
|
|
1097
1689
|
token_name: string;
|
|
1098
1690
|
token_description: string | null;
|
|
1099
1691
|
token_symbol: string;
|
|
1692
|
+
token_uri_data: {
|
|
1693
|
+
name?: string | undefined;
|
|
1694
|
+
description?: string | undefined;
|
|
1695
|
+
image_hash?: string | undefined;
|
|
1696
|
+
fee_receiver?: string | undefined;
|
|
1697
|
+
social_links?: string[] | undefined;
|
|
1698
|
+
vesting_recipients?: {
|
|
1699
|
+
address: string;
|
|
1700
|
+
percentage: number;
|
|
1701
|
+
}[] | undefined;
|
|
1702
|
+
} | null;
|
|
1100
1703
|
token_image_public_url: string | null;
|
|
1101
1704
|
token_creator_address: `0x${string}`;
|
|
1102
1705
|
token_fee_receiver_address: `0x${string}`;
|
|
1103
1706
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1104
1707
|
integrator_address: string;
|
|
1105
|
-
token_uri_data?: any;
|
|
1106
1708
|
};
|
|
1107
1709
|
};
|
|
1108
1710
|
}, {
|
|
@@ -1136,11 +1738,21 @@ declare const assetContract: {
|
|
|
1136
1738
|
token_name: string;
|
|
1137
1739
|
token_description: string | null;
|
|
1138
1740
|
token_symbol: string;
|
|
1741
|
+
token_uri_data: {
|
|
1742
|
+
name?: string | undefined;
|
|
1743
|
+
description?: string | undefined;
|
|
1744
|
+
image_hash?: string | undefined;
|
|
1745
|
+
fee_receiver?: string | undefined;
|
|
1746
|
+
social_links?: string[] | undefined;
|
|
1747
|
+
vesting_recipients?: {
|
|
1748
|
+
address: string;
|
|
1749
|
+
percentage: number;
|
|
1750
|
+
}[] | undefined;
|
|
1751
|
+
} | null;
|
|
1139
1752
|
token_image_public_url: string | null;
|
|
1140
1753
|
token_creator_address: string;
|
|
1141
1754
|
token_fee_receiver_address: string;
|
|
1142
1755
|
token_vesting_recipient_addresses: string[];
|
|
1143
|
-
token_uri_data?: any;
|
|
1144
1756
|
};
|
|
1145
1757
|
};
|
|
1146
1758
|
graduation_pool: {
|
|
@@ -1158,12 +1770,22 @@ declare const assetContract: {
|
|
|
1158
1770
|
token_name: string;
|
|
1159
1771
|
token_description: string | null;
|
|
1160
1772
|
token_symbol: string;
|
|
1773
|
+
token_uri_data: {
|
|
1774
|
+
name?: string | undefined;
|
|
1775
|
+
description?: string | undefined;
|
|
1776
|
+
image_hash?: string | undefined;
|
|
1777
|
+
fee_receiver?: string | undefined;
|
|
1778
|
+
social_links?: string[] | undefined;
|
|
1779
|
+
vesting_recipients?: {
|
|
1780
|
+
address: string;
|
|
1781
|
+
percentage: number;
|
|
1782
|
+
}[] | undefined;
|
|
1783
|
+
} | null;
|
|
1161
1784
|
token_image_public_url: string | null;
|
|
1162
1785
|
token_creator_address: string;
|
|
1163
1786
|
token_fee_receiver_address: string;
|
|
1164
1787
|
token_vesting_recipient_addresses: string[];
|
|
1165
1788
|
integrator_address: string;
|
|
1166
|
-
token_uri_data?: any;
|
|
1167
1789
|
};
|
|
1168
1790
|
};
|
|
1169
1791
|
}>, "many">;
|
|
@@ -1199,11 +1821,21 @@ declare const assetContract: {
|
|
|
1199
1821
|
token_name: string;
|
|
1200
1822
|
token_description: string | null;
|
|
1201
1823
|
token_symbol: string;
|
|
1824
|
+
token_uri_data: {
|
|
1825
|
+
name?: string | undefined;
|
|
1826
|
+
description?: string | undefined;
|
|
1827
|
+
image_hash?: string | undefined;
|
|
1828
|
+
fee_receiver?: string | undefined;
|
|
1829
|
+
social_links?: string[] | undefined;
|
|
1830
|
+
vesting_recipients?: {
|
|
1831
|
+
address: string;
|
|
1832
|
+
percentage: number;
|
|
1833
|
+
}[] | undefined;
|
|
1834
|
+
} | null;
|
|
1202
1835
|
token_image_public_url: string | null;
|
|
1203
1836
|
token_creator_address: `0x${string}`;
|
|
1204
1837
|
token_fee_receiver_address: `0x${string}`;
|
|
1205
1838
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1206
|
-
token_uri_data?: any;
|
|
1207
1839
|
};
|
|
1208
1840
|
};
|
|
1209
1841
|
graduation_pool: {
|
|
@@ -1221,12 +1853,22 @@ declare const assetContract: {
|
|
|
1221
1853
|
token_name: string;
|
|
1222
1854
|
token_description: string | null;
|
|
1223
1855
|
token_symbol: string;
|
|
1856
|
+
token_uri_data: {
|
|
1857
|
+
name?: string | undefined;
|
|
1858
|
+
description?: string | undefined;
|
|
1859
|
+
image_hash?: string | undefined;
|
|
1860
|
+
fee_receiver?: string | undefined;
|
|
1861
|
+
social_links?: string[] | undefined;
|
|
1862
|
+
vesting_recipients?: {
|
|
1863
|
+
address: string;
|
|
1864
|
+
percentage: number;
|
|
1865
|
+
}[] | undefined;
|
|
1866
|
+
} | null;
|
|
1224
1867
|
token_image_public_url: string | null;
|
|
1225
1868
|
token_creator_address: `0x${string}`;
|
|
1226
1869
|
token_fee_receiver_address: `0x${string}`;
|
|
1227
1870
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1228
1871
|
integrator_address: string;
|
|
1229
|
-
token_uri_data?: any;
|
|
1230
1872
|
};
|
|
1231
1873
|
};
|
|
1232
1874
|
}[];
|
|
@@ -1262,11 +1904,21 @@ declare const assetContract: {
|
|
|
1262
1904
|
token_name: string;
|
|
1263
1905
|
token_description: string | null;
|
|
1264
1906
|
token_symbol: string;
|
|
1907
|
+
token_uri_data: {
|
|
1908
|
+
name?: string | undefined;
|
|
1909
|
+
description?: string | undefined;
|
|
1910
|
+
image_hash?: string | undefined;
|
|
1911
|
+
fee_receiver?: string | undefined;
|
|
1912
|
+
social_links?: string[] | undefined;
|
|
1913
|
+
vesting_recipients?: {
|
|
1914
|
+
address: string;
|
|
1915
|
+
percentage: number;
|
|
1916
|
+
}[] | undefined;
|
|
1917
|
+
} | null;
|
|
1265
1918
|
token_image_public_url: string | null;
|
|
1266
1919
|
token_creator_address: string;
|
|
1267
1920
|
token_fee_receiver_address: string;
|
|
1268
1921
|
token_vesting_recipient_addresses: string[];
|
|
1269
|
-
token_uri_data?: any;
|
|
1270
1922
|
};
|
|
1271
1923
|
};
|
|
1272
1924
|
graduation_pool: {
|
|
@@ -1284,12 +1936,22 @@ declare const assetContract: {
|
|
|
1284
1936
|
token_name: string;
|
|
1285
1937
|
token_description: string | null;
|
|
1286
1938
|
token_symbol: string;
|
|
1939
|
+
token_uri_data: {
|
|
1940
|
+
name?: string | undefined;
|
|
1941
|
+
description?: string | undefined;
|
|
1942
|
+
image_hash?: string | undefined;
|
|
1943
|
+
fee_receiver?: string | undefined;
|
|
1944
|
+
social_links?: string[] | undefined;
|
|
1945
|
+
vesting_recipients?: {
|
|
1946
|
+
address: string;
|
|
1947
|
+
percentage: number;
|
|
1948
|
+
}[] | undefined;
|
|
1949
|
+
} | null;
|
|
1287
1950
|
token_image_public_url: string | null;
|
|
1288
1951
|
token_creator_address: string;
|
|
1289
1952
|
token_fee_receiver_address: string;
|
|
1290
1953
|
token_vesting_recipient_addresses: string[];
|
|
1291
1954
|
integrator_address: string;
|
|
1292
|
-
token_uri_data?: any;
|
|
1293
1955
|
};
|
|
1294
1956
|
};
|
|
1295
1957
|
}[];
|
|
@@ -1297,6 +1959,7 @@ declare const assetContract: {
|
|
|
1297
1959
|
};
|
|
1298
1960
|
};
|
|
1299
1961
|
getAsset: {
|
|
1962
|
+
description: "Get an asset by its address";
|
|
1300
1963
|
pathParams: z.ZodObject<{
|
|
1301
1964
|
assetAddress: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1302
1965
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1304,7 +1967,13 @@ declare const assetContract: {
|
|
|
1304
1967
|
}, {
|
|
1305
1968
|
assetAddress: string;
|
|
1306
1969
|
}>;
|
|
1307
|
-
|
|
1970
|
+
query: z.ZodObject<{
|
|
1971
|
+
chainId: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof ChainID>>>;
|
|
1972
|
+
}, "strip", z.ZodTypeAny, {
|
|
1973
|
+
chainId: ChainID;
|
|
1974
|
+
}, {
|
|
1975
|
+
chainId?: ChainID | undefined;
|
|
1976
|
+
}>;
|
|
1308
1977
|
method: "GET";
|
|
1309
1978
|
path: "/assets/:assetAddress";
|
|
1310
1979
|
responses: {
|
|
@@ -1340,7 +2009,43 @@ declare const assetContract: {
|
|
|
1340
2009
|
token_name: z.ZodString;
|
|
1341
2010
|
token_description: z.ZodNullable<z.ZodString>;
|
|
1342
2011
|
token_symbol: z.ZodString;
|
|
1343
|
-
token_uri_data: z.ZodNullable<z.
|
|
2012
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
2013
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2014
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2015
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
2016
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
2017
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2018
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2019
|
+
address: z.ZodString;
|
|
2020
|
+
percentage: z.ZodNumber;
|
|
2021
|
+
}, "strip", z.ZodTypeAny, {
|
|
2022
|
+
address: string;
|
|
2023
|
+
percentage: number;
|
|
2024
|
+
}, {
|
|
2025
|
+
address: string;
|
|
2026
|
+
percentage: number;
|
|
2027
|
+
}>, "many">>;
|
|
2028
|
+
}, "strip", z.ZodTypeAny, {
|
|
2029
|
+
name?: string | undefined;
|
|
2030
|
+
description?: string | undefined;
|
|
2031
|
+
image_hash?: string | undefined;
|
|
2032
|
+
fee_receiver?: string | undefined;
|
|
2033
|
+
social_links?: string[] | undefined;
|
|
2034
|
+
vesting_recipients?: {
|
|
2035
|
+
address: string;
|
|
2036
|
+
percentage: number;
|
|
2037
|
+
}[] | undefined;
|
|
2038
|
+
}, {
|
|
2039
|
+
name?: string | undefined;
|
|
2040
|
+
description?: string | undefined;
|
|
2041
|
+
image_hash?: string | undefined;
|
|
2042
|
+
fee_receiver?: string | undefined;
|
|
2043
|
+
social_links?: string[] | undefined;
|
|
2044
|
+
vesting_recipients?: {
|
|
2045
|
+
address: string;
|
|
2046
|
+
percentage: number;
|
|
2047
|
+
}[] | undefined;
|
|
2048
|
+
}>>;
|
|
1344
2049
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
1345
2050
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1346
2051
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -1350,21 +2055,41 @@ declare const assetContract: {
|
|
|
1350
2055
|
token_name: string;
|
|
1351
2056
|
token_description: string | null;
|
|
1352
2057
|
token_symbol: string;
|
|
2058
|
+
token_uri_data: {
|
|
2059
|
+
name?: string | undefined;
|
|
2060
|
+
description?: string | undefined;
|
|
2061
|
+
image_hash?: string | undefined;
|
|
2062
|
+
fee_receiver?: string | undefined;
|
|
2063
|
+
social_links?: string[] | undefined;
|
|
2064
|
+
vesting_recipients?: {
|
|
2065
|
+
address: string;
|
|
2066
|
+
percentage: number;
|
|
2067
|
+
}[] | undefined;
|
|
2068
|
+
} | null;
|
|
1353
2069
|
token_image_public_url: string | null;
|
|
1354
2070
|
token_creator_address: `0x${string}`;
|
|
1355
2071
|
token_fee_receiver_address: `0x${string}`;
|
|
1356
2072
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1357
|
-
token_uri_data?: any;
|
|
1358
2073
|
}, {
|
|
1359
2074
|
token_address: string;
|
|
1360
2075
|
token_name: string;
|
|
1361
2076
|
token_description: string | null;
|
|
1362
2077
|
token_symbol: string;
|
|
2078
|
+
token_uri_data: {
|
|
2079
|
+
name?: string | undefined;
|
|
2080
|
+
description?: string | undefined;
|
|
2081
|
+
image_hash?: string | undefined;
|
|
2082
|
+
fee_receiver?: string | undefined;
|
|
2083
|
+
social_links?: string[] | undefined;
|
|
2084
|
+
vesting_recipients?: {
|
|
2085
|
+
address: string;
|
|
2086
|
+
percentage: number;
|
|
2087
|
+
}[] | undefined;
|
|
2088
|
+
} | null;
|
|
1363
2089
|
token_image_public_url: string | null;
|
|
1364
2090
|
token_creator_address: string;
|
|
1365
2091
|
token_fee_receiver_address: string;
|
|
1366
2092
|
token_vesting_recipient_addresses: string[];
|
|
1367
|
-
token_uri_data?: any;
|
|
1368
2093
|
}>;
|
|
1369
2094
|
}, "strip", z.ZodTypeAny, {
|
|
1370
2095
|
pool_current_price: string;
|
|
@@ -1392,11 +2117,21 @@ declare const assetContract: {
|
|
|
1392
2117
|
token_name: string;
|
|
1393
2118
|
token_description: string | null;
|
|
1394
2119
|
token_symbol: string;
|
|
2120
|
+
token_uri_data: {
|
|
2121
|
+
name?: string | undefined;
|
|
2122
|
+
description?: string | undefined;
|
|
2123
|
+
image_hash?: string | undefined;
|
|
2124
|
+
fee_receiver?: string | undefined;
|
|
2125
|
+
social_links?: string[] | undefined;
|
|
2126
|
+
vesting_recipients?: {
|
|
2127
|
+
address: string;
|
|
2128
|
+
percentage: number;
|
|
2129
|
+
}[] | undefined;
|
|
2130
|
+
} | null;
|
|
1395
2131
|
token_image_public_url: string | null;
|
|
1396
2132
|
token_creator_address: `0x${string}`;
|
|
1397
2133
|
token_fee_receiver_address: `0x${string}`;
|
|
1398
2134
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1399
|
-
token_uri_data?: any;
|
|
1400
2135
|
};
|
|
1401
2136
|
}, {
|
|
1402
2137
|
pool_current_price: string;
|
|
@@ -1424,11 +2159,21 @@ declare const assetContract: {
|
|
|
1424
2159
|
token_name: string;
|
|
1425
2160
|
token_description: string | null;
|
|
1426
2161
|
token_symbol: string;
|
|
2162
|
+
token_uri_data: {
|
|
2163
|
+
name?: string | undefined;
|
|
2164
|
+
description?: string | undefined;
|
|
2165
|
+
image_hash?: string | undefined;
|
|
2166
|
+
fee_receiver?: string | undefined;
|
|
2167
|
+
social_links?: string[] | undefined;
|
|
2168
|
+
vesting_recipients?: {
|
|
2169
|
+
address: string;
|
|
2170
|
+
percentage: number;
|
|
2171
|
+
}[] | undefined;
|
|
2172
|
+
} | null;
|
|
1427
2173
|
token_image_public_url: string | null;
|
|
1428
2174
|
token_creator_address: string;
|
|
1429
2175
|
token_fee_receiver_address: string;
|
|
1430
2176
|
token_vesting_recipient_addresses: string[];
|
|
1431
|
-
token_uri_data?: any;
|
|
1432
2177
|
};
|
|
1433
2178
|
}>;
|
|
1434
2179
|
graduation_pool: z.ZodObject<{
|
|
@@ -1446,7 +2191,43 @@ declare const assetContract: {
|
|
|
1446
2191
|
token_name: z.ZodString;
|
|
1447
2192
|
token_description: z.ZodNullable<z.ZodString>;
|
|
1448
2193
|
token_symbol: z.ZodString;
|
|
1449
|
-
token_uri_data: z.ZodNullable<z.
|
|
2194
|
+
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
2195
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2196
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2197
|
+
image_hash: z.ZodOptional<z.ZodString>;
|
|
2198
|
+
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
2199
|
+
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2200
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2201
|
+
address: z.ZodString;
|
|
2202
|
+
percentage: z.ZodNumber;
|
|
2203
|
+
}, "strip", z.ZodTypeAny, {
|
|
2204
|
+
address: string;
|
|
2205
|
+
percentage: number;
|
|
2206
|
+
}, {
|
|
2207
|
+
address: string;
|
|
2208
|
+
percentage: number;
|
|
2209
|
+
}>, "many">>;
|
|
2210
|
+
}, "strip", z.ZodTypeAny, {
|
|
2211
|
+
name?: string | undefined;
|
|
2212
|
+
description?: string | undefined;
|
|
2213
|
+
image_hash?: string | undefined;
|
|
2214
|
+
fee_receiver?: string | undefined;
|
|
2215
|
+
social_links?: string[] | undefined;
|
|
2216
|
+
vesting_recipients?: {
|
|
2217
|
+
address: string;
|
|
2218
|
+
percentage: number;
|
|
2219
|
+
}[] | undefined;
|
|
2220
|
+
}, {
|
|
2221
|
+
name?: string | undefined;
|
|
2222
|
+
description?: string | undefined;
|
|
2223
|
+
image_hash?: string | undefined;
|
|
2224
|
+
fee_receiver?: string | undefined;
|
|
2225
|
+
social_links?: string[] | undefined;
|
|
2226
|
+
vesting_recipients?: {
|
|
2227
|
+
address: string;
|
|
2228
|
+
percentage: number;
|
|
2229
|
+
}[] | undefined;
|
|
2230
|
+
}>>;
|
|
1450
2231
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
1451
2232
|
token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1452
2233
|
token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -1457,23 +2238,43 @@ declare const assetContract: {
|
|
|
1457
2238
|
token_name: string;
|
|
1458
2239
|
token_description: string | null;
|
|
1459
2240
|
token_symbol: string;
|
|
2241
|
+
token_uri_data: {
|
|
2242
|
+
name?: string | undefined;
|
|
2243
|
+
description?: string | undefined;
|
|
2244
|
+
image_hash?: string | undefined;
|
|
2245
|
+
fee_receiver?: string | undefined;
|
|
2246
|
+
social_links?: string[] | undefined;
|
|
2247
|
+
vesting_recipients?: {
|
|
2248
|
+
address: string;
|
|
2249
|
+
percentage: number;
|
|
2250
|
+
}[] | undefined;
|
|
2251
|
+
} | null;
|
|
1460
2252
|
token_image_public_url: string | null;
|
|
1461
2253
|
token_creator_address: `0x${string}`;
|
|
1462
2254
|
token_fee_receiver_address: `0x${string}`;
|
|
1463
2255
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1464
2256
|
integrator_address: string;
|
|
1465
|
-
token_uri_data?: any;
|
|
1466
2257
|
}, {
|
|
1467
2258
|
token_address: string;
|
|
1468
2259
|
token_name: string;
|
|
1469
2260
|
token_description: string | null;
|
|
1470
2261
|
token_symbol: string;
|
|
2262
|
+
token_uri_data: {
|
|
2263
|
+
name?: string | undefined;
|
|
2264
|
+
description?: string | undefined;
|
|
2265
|
+
image_hash?: string | undefined;
|
|
2266
|
+
fee_receiver?: string | undefined;
|
|
2267
|
+
social_links?: string[] | undefined;
|
|
2268
|
+
vesting_recipients?: {
|
|
2269
|
+
address: string;
|
|
2270
|
+
percentage: number;
|
|
2271
|
+
}[] | undefined;
|
|
2272
|
+
} | null;
|
|
1471
2273
|
token_image_public_url: string | null;
|
|
1472
2274
|
token_creator_address: string;
|
|
1473
2275
|
token_fee_receiver_address: string;
|
|
1474
2276
|
token_vesting_recipient_addresses: string[];
|
|
1475
2277
|
integrator_address: string;
|
|
1476
|
-
token_uri_data?: any;
|
|
1477
2278
|
}>;
|
|
1478
2279
|
}, "strip", z.ZodTypeAny, {
|
|
1479
2280
|
pool_current_price: string;
|
|
@@ -1490,12 +2291,22 @@ declare const assetContract: {
|
|
|
1490
2291
|
token_name: string;
|
|
1491
2292
|
token_description: string | null;
|
|
1492
2293
|
token_symbol: string;
|
|
2294
|
+
token_uri_data: {
|
|
2295
|
+
name?: string | undefined;
|
|
2296
|
+
description?: string | undefined;
|
|
2297
|
+
image_hash?: string | undefined;
|
|
2298
|
+
fee_receiver?: string | undefined;
|
|
2299
|
+
social_links?: string[] | undefined;
|
|
2300
|
+
vesting_recipients?: {
|
|
2301
|
+
address: string;
|
|
2302
|
+
percentage: number;
|
|
2303
|
+
}[] | undefined;
|
|
2304
|
+
} | null;
|
|
1493
2305
|
token_image_public_url: string | null;
|
|
1494
2306
|
token_creator_address: `0x${string}`;
|
|
1495
2307
|
token_fee_receiver_address: `0x${string}`;
|
|
1496
2308
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1497
2309
|
integrator_address: string;
|
|
1498
|
-
token_uri_data?: any;
|
|
1499
2310
|
};
|
|
1500
2311
|
}, {
|
|
1501
2312
|
pool_current_price: string;
|
|
@@ -1512,12 +2323,22 @@ declare const assetContract: {
|
|
|
1512
2323
|
token_name: string;
|
|
1513
2324
|
token_description: string | null;
|
|
1514
2325
|
token_symbol: string;
|
|
2326
|
+
token_uri_data: {
|
|
2327
|
+
name?: string | undefined;
|
|
2328
|
+
description?: string | undefined;
|
|
2329
|
+
image_hash?: string | undefined;
|
|
2330
|
+
fee_receiver?: string | undefined;
|
|
2331
|
+
social_links?: string[] | undefined;
|
|
2332
|
+
vesting_recipients?: {
|
|
2333
|
+
address: string;
|
|
2334
|
+
percentage: number;
|
|
2335
|
+
}[] | undefined;
|
|
2336
|
+
} | null;
|
|
1515
2337
|
token_image_public_url: string | null;
|
|
1516
2338
|
token_creator_address: string;
|
|
1517
2339
|
token_fee_receiver_address: string;
|
|
1518
2340
|
token_vesting_recipient_addresses: string[];
|
|
1519
2341
|
integrator_address: string;
|
|
1520
|
-
token_uri_data?: any;
|
|
1521
2342
|
};
|
|
1522
2343
|
}>;
|
|
1523
2344
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1551,11 +2372,21 @@ declare const assetContract: {
|
|
|
1551
2372
|
token_name: string;
|
|
1552
2373
|
token_description: string | null;
|
|
1553
2374
|
token_symbol: string;
|
|
2375
|
+
token_uri_data: {
|
|
2376
|
+
name?: string | undefined;
|
|
2377
|
+
description?: string | undefined;
|
|
2378
|
+
image_hash?: string | undefined;
|
|
2379
|
+
fee_receiver?: string | undefined;
|
|
2380
|
+
social_links?: string[] | undefined;
|
|
2381
|
+
vesting_recipients?: {
|
|
2382
|
+
address: string;
|
|
2383
|
+
percentage: number;
|
|
2384
|
+
}[] | undefined;
|
|
2385
|
+
} | null;
|
|
1554
2386
|
token_image_public_url: string | null;
|
|
1555
2387
|
token_creator_address: `0x${string}`;
|
|
1556
2388
|
token_fee_receiver_address: `0x${string}`;
|
|
1557
2389
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1558
|
-
token_uri_data?: any;
|
|
1559
2390
|
};
|
|
1560
2391
|
};
|
|
1561
2392
|
graduation_pool: {
|
|
@@ -1573,12 +2404,22 @@ declare const assetContract: {
|
|
|
1573
2404
|
token_name: string;
|
|
1574
2405
|
token_description: string | null;
|
|
1575
2406
|
token_symbol: string;
|
|
2407
|
+
token_uri_data: {
|
|
2408
|
+
name?: string | undefined;
|
|
2409
|
+
description?: string | undefined;
|
|
2410
|
+
image_hash?: string | undefined;
|
|
2411
|
+
fee_receiver?: string | undefined;
|
|
2412
|
+
social_links?: string[] | undefined;
|
|
2413
|
+
vesting_recipients?: {
|
|
2414
|
+
address: string;
|
|
2415
|
+
percentage: number;
|
|
2416
|
+
}[] | undefined;
|
|
2417
|
+
} | null;
|
|
1576
2418
|
token_image_public_url: string | null;
|
|
1577
2419
|
token_creator_address: `0x${string}`;
|
|
1578
2420
|
token_fee_receiver_address: `0x${string}`;
|
|
1579
2421
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1580
2422
|
integrator_address: string;
|
|
1581
|
-
token_uri_data?: any;
|
|
1582
2423
|
};
|
|
1583
2424
|
};
|
|
1584
2425
|
}, {
|
|
@@ -1612,11 +2453,21 @@ declare const assetContract: {
|
|
|
1612
2453
|
token_name: string;
|
|
1613
2454
|
token_description: string | null;
|
|
1614
2455
|
token_symbol: string;
|
|
2456
|
+
token_uri_data: {
|
|
2457
|
+
name?: string | undefined;
|
|
2458
|
+
description?: string | undefined;
|
|
2459
|
+
image_hash?: string | undefined;
|
|
2460
|
+
fee_receiver?: string | undefined;
|
|
2461
|
+
social_links?: string[] | undefined;
|
|
2462
|
+
vesting_recipients?: {
|
|
2463
|
+
address: string;
|
|
2464
|
+
percentage: number;
|
|
2465
|
+
}[] | undefined;
|
|
2466
|
+
} | null;
|
|
1615
2467
|
token_image_public_url: string | null;
|
|
1616
2468
|
token_creator_address: string;
|
|
1617
2469
|
token_fee_receiver_address: string;
|
|
1618
2470
|
token_vesting_recipient_addresses: string[];
|
|
1619
|
-
token_uri_data?: any;
|
|
1620
2471
|
};
|
|
1621
2472
|
};
|
|
1622
2473
|
graduation_pool: {
|
|
@@ -1634,12 +2485,22 @@ declare const assetContract: {
|
|
|
1634
2485
|
token_name: string;
|
|
1635
2486
|
token_description: string | null;
|
|
1636
2487
|
token_symbol: string;
|
|
2488
|
+
token_uri_data: {
|
|
2489
|
+
name?: string | undefined;
|
|
2490
|
+
description?: string | undefined;
|
|
2491
|
+
image_hash?: string | undefined;
|
|
2492
|
+
fee_receiver?: string | undefined;
|
|
2493
|
+
social_links?: string[] | undefined;
|
|
2494
|
+
vesting_recipients?: {
|
|
2495
|
+
address: string;
|
|
2496
|
+
percentage: number;
|
|
2497
|
+
}[] | undefined;
|
|
2498
|
+
} | null;
|
|
1637
2499
|
token_image_public_url: string | null;
|
|
1638
2500
|
token_creator_address: string;
|
|
1639
2501
|
token_fee_receiver_address: string;
|
|
1640
2502
|
token_vesting_recipient_addresses: string[];
|
|
1641
2503
|
integrator_address: string;
|
|
1642
|
-
token_uri_data?: any;
|
|
1643
2504
|
};
|
|
1644
2505
|
};
|
|
1645
2506
|
}>;
|
|
@@ -1675,11 +2536,21 @@ declare const assetContract: {
|
|
|
1675
2536
|
token_name: string;
|
|
1676
2537
|
token_description: string | null;
|
|
1677
2538
|
token_symbol: string;
|
|
2539
|
+
token_uri_data: {
|
|
2540
|
+
name?: string | undefined;
|
|
2541
|
+
description?: string | undefined;
|
|
2542
|
+
image_hash?: string | undefined;
|
|
2543
|
+
fee_receiver?: string | undefined;
|
|
2544
|
+
social_links?: string[] | undefined;
|
|
2545
|
+
vesting_recipients?: {
|
|
2546
|
+
address: string;
|
|
2547
|
+
percentage: number;
|
|
2548
|
+
}[] | undefined;
|
|
2549
|
+
} | null;
|
|
1678
2550
|
token_image_public_url: string | null;
|
|
1679
2551
|
token_creator_address: `0x${string}`;
|
|
1680
2552
|
token_fee_receiver_address: `0x${string}`;
|
|
1681
2553
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1682
|
-
token_uri_data?: any;
|
|
1683
2554
|
};
|
|
1684
2555
|
};
|
|
1685
2556
|
graduation_pool: {
|
|
@@ -1697,12 +2568,22 @@ declare const assetContract: {
|
|
|
1697
2568
|
token_name: string;
|
|
1698
2569
|
token_description: string | null;
|
|
1699
2570
|
token_symbol: string;
|
|
2571
|
+
token_uri_data: {
|
|
2572
|
+
name?: string | undefined;
|
|
2573
|
+
description?: string | undefined;
|
|
2574
|
+
image_hash?: string | undefined;
|
|
2575
|
+
fee_receiver?: string | undefined;
|
|
2576
|
+
social_links?: string[] | undefined;
|
|
2577
|
+
vesting_recipients?: {
|
|
2578
|
+
address: string;
|
|
2579
|
+
percentage: number;
|
|
2580
|
+
}[] | undefined;
|
|
2581
|
+
} | null;
|
|
1700
2582
|
token_image_public_url: string | null;
|
|
1701
2583
|
token_creator_address: `0x${string}`;
|
|
1702
2584
|
token_fee_receiver_address: `0x${string}`;
|
|
1703
2585
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1704
2586
|
integrator_address: string;
|
|
1705
|
-
token_uri_data?: any;
|
|
1706
2587
|
};
|
|
1707
2588
|
};
|
|
1708
2589
|
};
|
|
@@ -1738,11 +2619,21 @@ declare const assetContract: {
|
|
|
1738
2619
|
token_name: string;
|
|
1739
2620
|
token_description: string | null;
|
|
1740
2621
|
token_symbol: string;
|
|
2622
|
+
token_uri_data: {
|
|
2623
|
+
name?: string | undefined;
|
|
2624
|
+
description?: string | undefined;
|
|
2625
|
+
image_hash?: string | undefined;
|
|
2626
|
+
fee_receiver?: string | undefined;
|
|
2627
|
+
social_links?: string[] | undefined;
|
|
2628
|
+
vesting_recipients?: {
|
|
2629
|
+
address: string;
|
|
2630
|
+
percentage: number;
|
|
2631
|
+
}[] | undefined;
|
|
2632
|
+
} | null;
|
|
1741
2633
|
token_image_public_url: string | null;
|
|
1742
2634
|
token_creator_address: string;
|
|
1743
2635
|
token_fee_receiver_address: string;
|
|
1744
2636
|
token_vesting_recipient_addresses: string[];
|
|
1745
|
-
token_uri_data?: any;
|
|
1746
2637
|
};
|
|
1747
2638
|
};
|
|
1748
2639
|
graduation_pool: {
|
|
@@ -1760,12 +2651,22 @@ declare const assetContract: {
|
|
|
1760
2651
|
token_name: string;
|
|
1761
2652
|
token_description: string | null;
|
|
1762
2653
|
token_symbol: string;
|
|
2654
|
+
token_uri_data: {
|
|
2655
|
+
name?: string | undefined;
|
|
2656
|
+
description?: string | undefined;
|
|
2657
|
+
image_hash?: string | undefined;
|
|
2658
|
+
fee_receiver?: string | undefined;
|
|
2659
|
+
social_links?: string[] | undefined;
|
|
2660
|
+
vesting_recipients?: {
|
|
2661
|
+
address: string;
|
|
2662
|
+
percentage: number;
|
|
2663
|
+
}[] | undefined;
|
|
2664
|
+
} | null;
|
|
1763
2665
|
token_image_public_url: string | null;
|
|
1764
2666
|
token_creator_address: string;
|
|
1765
2667
|
token_fee_receiver_address: string;
|
|
1766
2668
|
token_vesting_recipient_addresses: string[];
|
|
1767
2669
|
integrator_address: string;
|
|
1768
|
-
token_uri_data?: any;
|
|
1769
2670
|
};
|
|
1770
2671
|
};
|
|
1771
2672
|
};
|