@longdotxyz/shared 0.0.65 → 0.0.67
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 +448 -100
- package/dist/contracts/asset.contract.js +12 -2
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/community.contract.d.ts +10 -10
- package/dist/contracts/index.d.ts +356 -86
- package/package.json +1 -1
- package/readme.md +1 -1
|
@@ -62,7 +62,16 @@ export declare const rootContract: {
|
|
|
62
62
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
63
63
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
64
64
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
65
|
-
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").
|
|
65
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
66
|
+
label: import("zod").ZodString;
|
|
67
|
+
url: import("zod").ZodString;
|
|
68
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
69
|
+
label: string;
|
|
70
|
+
url: string;
|
|
71
|
+
}, {
|
|
72
|
+
label: string;
|
|
73
|
+
url: string;
|
|
74
|
+
}>, "many">>;
|
|
66
75
|
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
67
76
|
address: import("zod").ZodString;
|
|
68
77
|
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -88,7 +97,10 @@ export declare const rootContract: {
|
|
|
88
97
|
description?: string | undefined;
|
|
89
98
|
image_hash?: string | undefined;
|
|
90
99
|
fee_receiver?: string | undefined;
|
|
91
|
-
social_links?:
|
|
100
|
+
social_links?: {
|
|
101
|
+
label: string;
|
|
102
|
+
url: string;
|
|
103
|
+
}[] | undefined;
|
|
92
104
|
vesting_recipients?: {
|
|
93
105
|
address: string;
|
|
94
106
|
amount: string;
|
|
@@ -98,7 +110,10 @@ export declare const rootContract: {
|
|
|
98
110
|
description?: string | undefined;
|
|
99
111
|
image_hash?: string | undefined;
|
|
100
112
|
fee_receiver?: string | undefined;
|
|
101
|
-
social_links?:
|
|
113
|
+
social_links?: {
|
|
114
|
+
label: string;
|
|
115
|
+
url: string;
|
|
116
|
+
}[] | undefined;
|
|
102
117
|
vesting_recipients?: {
|
|
103
118
|
address: string;
|
|
104
119
|
amount?: string | undefined;
|
|
@@ -120,7 +135,10 @@ export declare const rootContract: {
|
|
|
120
135
|
description?: string | undefined;
|
|
121
136
|
image_hash?: string | undefined;
|
|
122
137
|
fee_receiver?: string | undefined;
|
|
123
|
-
social_links?:
|
|
138
|
+
social_links?: {
|
|
139
|
+
label: string;
|
|
140
|
+
url: string;
|
|
141
|
+
}[] | undefined;
|
|
124
142
|
vesting_recipients?: {
|
|
125
143
|
address: string;
|
|
126
144
|
amount: string;
|
|
@@ -141,7 +159,10 @@ export declare const rootContract: {
|
|
|
141
159
|
description?: string | undefined;
|
|
142
160
|
image_hash?: string | undefined;
|
|
143
161
|
fee_receiver?: string | undefined;
|
|
144
|
-
social_links?:
|
|
162
|
+
social_links?: {
|
|
163
|
+
label: string;
|
|
164
|
+
url: string;
|
|
165
|
+
}[] | undefined;
|
|
145
166
|
vesting_recipients?: {
|
|
146
167
|
address: string;
|
|
147
168
|
amount?: string | undefined;
|
|
@@ -186,7 +207,10 @@ export declare const rootContract: {
|
|
|
186
207
|
description?: string | undefined;
|
|
187
208
|
image_hash?: string | undefined;
|
|
188
209
|
fee_receiver?: string | undefined;
|
|
189
|
-
social_links?:
|
|
210
|
+
social_links?: {
|
|
211
|
+
label: string;
|
|
212
|
+
url: string;
|
|
213
|
+
}[] | undefined;
|
|
190
214
|
vesting_recipients?: {
|
|
191
215
|
address: string;
|
|
192
216
|
amount: string;
|
|
@@ -230,7 +254,10 @@ export declare const rootContract: {
|
|
|
230
254
|
description?: string | undefined;
|
|
231
255
|
image_hash?: string | undefined;
|
|
232
256
|
fee_receiver?: string | undefined;
|
|
233
|
-
social_links?:
|
|
257
|
+
social_links?: {
|
|
258
|
+
label: string;
|
|
259
|
+
url: string;
|
|
260
|
+
}[] | undefined;
|
|
234
261
|
vesting_recipients?: {
|
|
235
262
|
address: string;
|
|
236
263
|
amount?: string | undefined;
|
|
@@ -264,7 +291,16 @@ export declare const rootContract: {
|
|
|
264
291
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
265
292
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
266
293
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
267
|
-
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").
|
|
294
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
295
|
+
label: import("zod").ZodString;
|
|
296
|
+
url: import("zod").ZodString;
|
|
297
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
298
|
+
label: string;
|
|
299
|
+
url: string;
|
|
300
|
+
}, {
|
|
301
|
+
label: string;
|
|
302
|
+
url: string;
|
|
303
|
+
}>, "many">>;
|
|
268
304
|
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
269
305
|
address: import("zod").ZodString;
|
|
270
306
|
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -290,7 +326,10 @@ export declare const rootContract: {
|
|
|
290
326
|
description?: string | undefined;
|
|
291
327
|
image_hash?: string | undefined;
|
|
292
328
|
fee_receiver?: string | undefined;
|
|
293
|
-
social_links?:
|
|
329
|
+
social_links?: {
|
|
330
|
+
label: string;
|
|
331
|
+
url: string;
|
|
332
|
+
}[] | undefined;
|
|
294
333
|
vesting_recipients?: {
|
|
295
334
|
address: string;
|
|
296
335
|
amount: string;
|
|
@@ -300,7 +339,10 @@ export declare const rootContract: {
|
|
|
300
339
|
description?: string | undefined;
|
|
301
340
|
image_hash?: string | undefined;
|
|
302
341
|
fee_receiver?: string | undefined;
|
|
303
|
-
social_links?:
|
|
342
|
+
social_links?: {
|
|
343
|
+
label: string;
|
|
344
|
+
url: string;
|
|
345
|
+
}[] | undefined;
|
|
304
346
|
vesting_recipients?: {
|
|
305
347
|
address: string;
|
|
306
348
|
amount?: string | undefined;
|
|
@@ -323,7 +365,10 @@ export declare const rootContract: {
|
|
|
323
365
|
description?: string | undefined;
|
|
324
366
|
image_hash?: string | undefined;
|
|
325
367
|
fee_receiver?: string | undefined;
|
|
326
|
-
social_links?:
|
|
368
|
+
social_links?: {
|
|
369
|
+
label: string;
|
|
370
|
+
url: string;
|
|
371
|
+
}[] | undefined;
|
|
327
372
|
vesting_recipients?: {
|
|
328
373
|
address: string;
|
|
329
374
|
amount: string;
|
|
@@ -345,7 +390,10 @@ export declare const rootContract: {
|
|
|
345
390
|
description?: string | undefined;
|
|
346
391
|
image_hash?: string | undefined;
|
|
347
392
|
fee_receiver?: string | undefined;
|
|
348
|
-
social_links?:
|
|
393
|
+
social_links?: {
|
|
394
|
+
label: string;
|
|
395
|
+
url: string;
|
|
396
|
+
}[] | undefined;
|
|
349
397
|
vesting_recipients?: {
|
|
350
398
|
address: string;
|
|
351
399
|
amount?: string | undefined;
|
|
@@ -379,7 +427,10 @@ export declare const rootContract: {
|
|
|
379
427
|
description?: string | undefined;
|
|
380
428
|
image_hash?: string | undefined;
|
|
381
429
|
fee_receiver?: string | undefined;
|
|
382
|
-
social_links?:
|
|
430
|
+
social_links?: {
|
|
431
|
+
label: string;
|
|
432
|
+
url: string;
|
|
433
|
+
}[] | undefined;
|
|
383
434
|
vesting_recipients?: {
|
|
384
435
|
address: string;
|
|
385
436
|
amount: string;
|
|
@@ -412,7 +463,10 @@ export declare const rootContract: {
|
|
|
412
463
|
description?: string | undefined;
|
|
413
464
|
image_hash?: string | undefined;
|
|
414
465
|
fee_receiver?: string | undefined;
|
|
415
|
-
social_links?:
|
|
466
|
+
social_links?: {
|
|
467
|
+
label: string;
|
|
468
|
+
url: string;
|
|
469
|
+
}[] | undefined;
|
|
416
470
|
vesting_recipients?: {
|
|
417
471
|
address: string;
|
|
418
472
|
amount?: string | undefined;
|
|
@@ -466,7 +520,10 @@ export declare const rootContract: {
|
|
|
466
520
|
description?: string | undefined;
|
|
467
521
|
image_hash?: string | undefined;
|
|
468
522
|
fee_receiver?: string | undefined;
|
|
469
|
-
social_links?:
|
|
523
|
+
social_links?: {
|
|
524
|
+
label: string;
|
|
525
|
+
url: string;
|
|
526
|
+
}[] | undefined;
|
|
470
527
|
vesting_recipients?: {
|
|
471
528
|
address: string;
|
|
472
529
|
amount: string;
|
|
@@ -499,7 +556,10 @@ export declare const rootContract: {
|
|
|
499
556
|
description?: string | undefined;
|
|
500
557
|
image_hash?: string | undefined;
|
|
501
558
|
fee_receiver?: string | undefined;
|
|
502
|
-
social_links?:
|
|
559
|
+
social_links?: {
|
|
560
|
+
label: string;
|
|
561
|
+
url: string;
|
|
562
|
+
}[] | undefined;
|
|
503
563
|
vesting_recipients?: {
|
|
504
564
|
address: string;
|
|
505
565
|
amount: string;
|
|
@@ -551,7 +611,10 @@ export declare const rootContract: {
|
|
|
551
611
|
description?: string | undefined;
|
|
552
612
|
image_hash?: string | undefined;
|
|
553
613
|
fee_receiver?: string | undefined;
|
|
554
|
-
social_links?:
|
|
614
|
+
social_links?: {
|
|
615
|
+
label: string;
|
|
616
|
+
url: string;
|
|
617
|
+
}[] | undefined;
|
|
555
618
|
vesting_recipients?: {
|
|
556
619
|
address: string;
|
|
557
620
|
amount?: string | undefined;
|
|
@@ -585,7 +648,10 @@ export declare const rootContract: {
|
|
|
585
648
|
description?: string | undefined;
|
|
586
649
|
image_hash?: string | undefined;
|
|
587
650
|
fee_receiver?: string | undefined;
|
|
588
|
-
social_links?:
|
|
651
|
+
social_links?: {
|
|
652
|
+
label: string;
|
|
653
|
+
url: string;
|
|
654
|
+
}[] | undefined;
|
|
589
655
|
vesting_recipients?: {
|
|
590
656
|
address: string;
|
|
591
657
|
amount?: string | undefined;
|
|
@@ -640,7 +706,10 @@ export declare const rootContract: {
|
|
|
640
706
|
description?: string | undefined;
|
|
641
707
|
image_hash?: string | undefined;
|
|
642
708
|
fee_receiver?: string | undefined;
|
|
643
|
-
social_links?:
|
|
709
|
+
social_links?: {
|
|
710
|
+
label: string;
|
|
711
|
+
url: string;
|
|
712
|
+
}[] | undefined;
|
|
644
713
|
vesting_recipients?: {
|
|
645
714
|
address: string;
|
|
646
715
|
amount: string;
|
|
@@ -673,7 +742,10 @@ export declare const rootContract: {
|
|
|
673
742
|
description?: string | undefined;
|
|
674
743
|
image_hash?: string | undefined;
|
|
675
744
|
fee_receiver?: string | undefined;
|
|
676
|
-
social_links?:
|
|
745
|
+
social_links?: {
|
|
746
|
+
label: string;
|
|
747
|
+
url: string;
|
|
748
|
+
}[] | undefined;
|
|
677
749
|
vesting_recipients?: {
|
|
678
750
|
address: string;
|
|
679
751
|
amount: string;
|
|
@@ -725,7 +797,10 @@ export declare const rootContract: {
|
|
|
725
797
|
description?: string | undefined;
|
|
726
798
|
image_hash?: string | undefined;
|
|
727
799
|
fee_receiver?: string | undefined;
|
|
728
|
-
social_links?:
|
|
800
|
+
social_links?: {
|
|
801
|
+
label: string;
|
|
802
|
+
url: string;
|
|
803
|
+
}[] | undefined;
|
|
729
804
|
vesting_recipients?: {
|
|
730
805
|
address: string;
|
|
731
806
|
amount?: string | undefined;
|
|
@@ -759,7 +834,10 @@ export declare const rootContract: {
|
|
|
759
834
|
description?: string | undefined;
|
|
760
835
|
image_hash?: string | undefined;
|
|
761
836
|
fee_receiver?: string | undefined;
|
|
762
|
-
social_links?:
|
|
837
|
+
social_links?: {
|
|
838
|
+
label: string;
|
|
839
|
+
url: string;
|
|
840
|
+
}[] | undefined;
|
|
763
841
|
vesting_recipients?: {
|
|
764
842
|
address: string;
|
|
765
843
|
amount?: string | undefined;
|
|
@@ -816,7 +894,10 @@ export declare const rootContract: {
|
|
|
816
894
|
description?: string | undefined;
|
|
817
895
|
image_hash?: string | undefined;
|
|
818
896
|
fee_receiver?: string | undefined;
|
|
819
|
-
social_links?:
|
|
897
|
+
social_links?: {
|
|
898
|
+
label: string;
|
|
899
|
+
url: string;
|
|
900
|
+
}[] | undefined;
|
|
820
901
|
vesting_recipients?: {
|
|
821
902
|
address: string;
|
|
822
903
|
amount: string;
|
|
@@ -849,7 +930,10 @@ export declare const rootContract: {
|
|
|
849
930
|
description?: string | undefined;
|
|
850
931
|
image_hash?: string | undefined;
|
|
851
932
|
fee_receiver?: string | undefined;
|
|
852
|
-
social_links?:
|
|
933
|
+
social_links?: {
|
|
934
|
+
label: string;
|
|
935
|
+
url: string;
|
|
936
|
+
}[] | undefined;
|
|
853
937
|
vesting_recipients?: {
|
|
854
938
|
address: string;
|
|
855
939
|
amount: string;
|
|
@@ -903,7 +987,10 @@ export declare const rootContract: {
|
|
|
903
987
|
description?: string | undefined;
|
|
904
988
|
image_hash?: string | undefined;
|
|
905
989
|
fee_receiver?: string | undefined;
|
|
906
|
-
social_links?:
|
|
990
|
+
social_links?: {
|
|
991
|
+
label: string;
|
|
992
|
+
url: string;
|
|
993
|
+
}[] | undefined;
|
|
907
994
|
vesting_recipients?: {
|
|
908
995
|
address: string;
|
|
909
996
|
amount?: string | undefined;
|
|
@@ -937,7 +1024,10 @@ export declare const rootContract: {
|
|
|
937
1024
|
description?: string | undefined;
|
|
938
1025
|
image_hash?: string | undefined;
|
|
939
1026
|
fee_receiver?: string | undefined;
|
|
940
|
-
social_links?:
|
|
1027
|
+
social_links?: {
|
|
1028
|
+
label: string;
|
|
1029
|
+
url: string;
|
|
1030
|
+
}[] | undefined;
|
|
941
1031
|
vesting_recipients?: {
|
|
942
1032
|
address: string;
|
|
943
1033
|
amount?: string | undefined;
|
|
@@ -1015,7 +1105,16 @@ export declare const rootContract: {
|
|
|
1015
1105
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1016
1106
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1017
1107
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1018
|
-
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").
|
|
1108
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1109
|
+
label: import("zod").ZodString;
|
|
1110
|
+
url: import("zod").ZodString;
|
|
1111
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1112
|
+
label: string;
|
|
1113
|
+
url: string;
|
|
1114
|
+
}, {
|
|
1115
|
+
label: string;
|
|
1116
|
+
url: string;
|
|
1117
|
+
}>, "many">>;
|
|
1019
1118
|
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
1020
1119
|
address: import("zod").ZodString;
|
|
1021
1120
|
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1041,7 +1140,10 @@ export declare const rootContract: {
|
|
|
1041
1140
|
description?: string | undefined;
|
|
1042
1141
|
image_hash?: string | undefined;
|
|
1043
1142
|
fee_receiver?: string | undefined;
|
|
1044
|
-
social_links?:
|
|
1143
|
+
social_links?: {
|
|
1144
|
+
label: string;
|
|
1145
|
+
url: string;
|
|
1146
|
+
}[] | undefined;
|
|
1045
1147
|
vesting_recipients?: {
|
|
1046
1148
|
address: string;
|
|
1047
1149
|
amount: string;
|
|
@@ -1051,7 +1153,10 @@ export declare const rootContract: {
|
|
|
1051
1153
|
description?: string | undefined;
|
|
1052
1154
|
image_hash?: string | undefined;
|
|
1053
1155
|
fee_receiver?: string | undefined;
|
|
1054
|
-
social_links?:
|
|
1156
|
+
social_links?: {
|
|
1157
|
+
label: string;
|
|
1158
|
+
url: string;
|
|
1159
|
+
}[] | undefined;
|
|
1055
1160
|
vesting_recipients?: {
|
|
1056
1161
|
address: string;
|
|
1057
1162
|
amount?: string | undefined;
|
|
@@ -1073,7 +1178,10 @@ export declare const rootContract: {
|
|
|
1073
1178
|
description?: string | undefined;
|
|
1074
1179
|
image_hash?: string | undefined;
|
|
1075
1180
|
fee_receiver?: string | undefined;
|
|
1076
|
-
social_links?:
|
|
1181
|
+
social_links?: {
|
|
1182
|
+
label: string;
|
|
1183
|
+
url: string;
|
|
1184
|
+
}[] | undefined;
|
|
1077
1185
|
vesting_recipients?: {
|
|
1078
1186
|
address: string;
|
|
1079
1187
|
amount: string;
|
|
@@ -1094,7 +1202,10 @@ export declare const rootContract: {
|
|
|
1094
1202
|
description?: string | undefined;
|
|
1095
1203
|
image_hash?: string | undefined;
|
|
1096
1204
|
fee_receiver?: string | undefined;
|
|
1097
|
-
social_links?:
|
|
1205
|
+
social_links?: {
|
|
1206
|
+
label: string;
|
|
1207
|
+
url: string;
|
|
1208
|
+
}[] | undefined;
|
|
1098
1209
|
vesting_recipients?: {
|
|
1099
1210
|
address: string;
|
|
1100
1211
|
amount?: string | undefined;
|
|
@@ -1139,7 +1250,10 @@ export declare const rootContract: {
|
|
|
1139
1250
|
description?: string | undefined;
|
|
1140
1251
|
image_hash?: string | undefined;
|
|
1141
1252
|
fee_receiver?: string | undefined;
|
|
1142
|
-
social_links?:
|
|
1253
|
+
social_links?: {
|
|
1254
|
+
label: string;
|
|
1255
|
+
url: string;
|
|
1256
|
+
}[] | undefined;
|
|
1143
1257
|
vesting_recipients?: {
|
|
1144
1258
|
address: string;
|
|
1145
1259
|
amount: string;
|
|
@@ -1183,7 +1297,10 @@ export declare const rootContract: {
|
|
|
1183
1297
|
description?: string | undefined;
|
|
1184
1298
|
image_hash?: string | undefined;
|
|
1185
1299
|
fee_receiver?: string | undefined;
|
|
1186
|
-
social_links?:
|
|
1300
|
+
social_links?: {
|
|
1301
|
+
label: string;
|
|
1302
|
+
url: string;
|
|
1303
|
+
}[] | undefined;
|
|
1187
1304
|
vesting_recipients?: {
|
|
1188
1305
|
address: string;
|
|
1189
1306
|
amount?: string | undefined;
|
|
@@ -1217,7 +1334,16 @@ export declare const rootContract: {
|
|
|
1217
1334
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1218
1335
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1219
1336
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1220
|
-
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").
|
|
1337
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1338
|
+
label: import("zod").ZodString;
|
|
1339
|
+
url: import("zod").ZodString;
|
|
1340
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1341
|
+
label: string;
|
|
1342
|
+
url: string;
|
|
1343
|
+
}, {
|
|
1344
|
+
label: string;
|
|
1345
|
+
url: string;
|
|
1346
|
+
}>, "many">>;
|
|
1221
1347
|
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
1222
1348
|
address: import("zod").ZodString;
|
|
1223
1349
|
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1243,7 +1369,10 @@ export declare const rootContract: {
|
|
|
1243
1369
|
description?: string | undefined;
|
|
1244
1370
|
image_hash?: string | undefined;
|
|
1245
1371
|
fee_receiver?: string | undefined;
|
|
1246
|
-
social_links?:
|
|
1372
|
+
social_links?: {
|
|
1373
|
+
label: string;
|
|
1374
|
+
url: string;
|
|
1375
|
+
}[] | undefined;
|
|
1247
1376
|
vesting_recipients?: {
|
|
1248
1377
|
address: string;
|
|
1249
1378
|
amount: string;
|
|
@@ -1253,7 +1382,10 @@ export declare const rootContract: {
|
|
|
1253
1382
|
description?: string | undefined;
|
|
1254
1383
|
image_hash?: string | undefined;
|
|
1255
1384
|
fee_receiver?: string | undefined;
|
|
1256
|
-
social_links?:
|
|
1385
|
+
social_links?: {
|
|
1386
|
+
label: string;
|
|
1387
|
+
url: string;
|
|
1388
|
+
}[] | undefined;
|
|
1257
1389
|
vesting_recipients?: {
|
|
1258
1390
|
address: string;
|
|
1259
1391
|
amount?: string | undefined;
|
|
@@ -1276,7 +1408,10 @@ export declare const rootContract: {
|
|
|
1276
1408
|
description?: string | undefined;
|
|
1277
1409
|
image_hash?: string | undefined;
|
|
1278
1410
|
fee_receiver?: string | undefined;
|
|
1279
|
-
social_links?:
|
|
1411
|
+
social_links?: {
|
|
1412
|
+
label: string;
|
|
1413
|
+
url: string;
|
|
1414
|
+
}[] | undefined;
|
|
1280
1415
|
vesting_recipients?: {
|
|
1281
1416
|
address: string;
|
|
1282
1417
|
amount: string;
|
|
@@ -1298,7 +1433,10 @@ export declare const rootContract: {
|
|
|
1298
1433
|
description?: string | undefined;
|
|
1299
1434
|
image_hash?: string | undefined;
|
|
1300
1435
|
fee_receiver?: string | undefined;
|
|
1301
|
-
social_links?:
|
|
1436
|
+
social_links?: {
|
|
1437
|
+
label: string;
|
|
1438
|
+
url: string;
|
|
1439
|
+
}[] | undefined;
|
|
1302
1440
|
vesting_recipients?: {
|
|
1303
1441
|
address: string;
|
|
1304
1442
|
amount?: string | undefined;
|
|
@@ -1332,7 +1470,10 @@ export declare const rootContract: {
|
|
|
1332
1470
|
description?: string | undefined;
|
|
1333
1471
|
image_hash?: string | undefined;
|
|
1334
1472
|
fee_receiver?: string | undefined;
|
|
1335
|
-
social_links?:
|
|
1473
|
+
social_links?: {
|
|
1474
|
+
label: string;
|
|
1475
|
+
url: string;
|
|
1476
|
+
}[] | undefined;
|
|
1336
1477
|
vesting_recipients?: {
|
|
1337
1478
|
address: string;
|
|
1338
1479
|
amount: string;
|
|
@@ -1365,7 +1506,10 @@ export declare const rootContract: {
|
|
|
1365
1506
|
description?: string | undefined;
|
|
1366
1507
|
image_hash?: string | undefined;
|
|
1367
1508
|
fee_receiver?: string | undefined;
|
|
1368
|
-
social_links?:
|
|
1509
|
+
social_links?: {
|
|
1510
|
+
label: string;
|
|
1511
|
+
url: string;
|
|
1512
|
+
}[] | undefined;
|
|
1369
1513
|
vesting_recipients?: {
|
|
1370
1514
|
address: string;
|
|
1371
1515
|
amount?: string | undefined;
|
|
@@ -1419,7 +1563,10 @@ export declare const rootContract: {
|
|
|
1419
1563
|
description?: string | undefined;
|
|
1420
1564
|
image_hash?: string | undefined;
|
|
1421
1565
|
fee_receiver?: string | undefined;
|
|
1422
|
-
social_links?:
|
|
1566
|
+
social_links?: {
|
|
1567
|
+
label: string;
|
|
1568
|
+
url: string;
|
|
1569
|
+
}[] | undefined;
|
|
1423
1570
|
vesting_recipients?: {
|
|
1424
1571
|
address: string;
|
|
1425
1572
|
amount: string;
|
|
@@ -1452,7 +1599,10 @@ export declare const rootContract: {
|
|
|
1452
1599
|
description?: string | undefined;
|
|
1453
1600
|
image_hash?: string | undefined;
|
|
1454
1601
|
fee_receiver?: string | undefined;
|
|
1455
|
-
social_links?:
|
|
1602
|
+
social_links?: {
|
|
1603
|
+
label: string;
|
|
1604
|
+
url: string;
|
|
1605
|
+
}[] | undefined;
|
|
1456
1606
|
vesting_recipients?: {
|
|
1457
1607
|
address: string;
|
|
1458
1608
|
amount: string;
|
|
@@ -1504,7 +1654,10 @@ export declare const rootContract: {
|
|
|
1504
1654
|
description?: string | undefined;
|
|
1505
1655
|
image_hash?: string | undefined;
|
|
1506
1656
|
fee_receiver?: string | undefined;
|
|
1507
|
-
social_links?:
|
|
1657
|
+
social_links?: {
|
|
1658
|
+
label: string;
|
|
1659
|
+
url: string;
|
|
1660
|
+
}[] | undefined;
|
|
1508
1661
|
vesting_recipients?: {
|
|
1509
1662
|
address: string;
|
|
1510
1663
|
amount?: string | undefined;
|
|
@@ -1538,7 +1691,10 @@ export declare const rootContract: {
|
|
|
1538
1691
|
description?: string | undefined;
|
|
1539
1692
|
image_hash?: string | undefined;
|
|
1540
1693
|
fee_receiver?: string | undefined;
|
|
1541
|
-
social_links?:
|
|
1694
|
+
social_links?: {
|
|
1695
|
+
label: string;
|
|
1696
|
+
url: string;
|
|
1697
|
+
}[] | undefined;
|
|
1542
1698
|
vesting_recipients?: {
|
|
1543
1699
|
address: string;
|
|
1544
1700
|
amount?: string | undefined;
|
|
@@ -1593,7 +1749,10 @@ export declare const rootContract: {
|
|
|
1593
1749
|
description?: string | undefined;
|
|
1594
1750
|
image_hash?: string | undefined;
|
|
1595
1751
|
fee_receiver?: string | undefined;
|
|
1596
|
-
social_links?:
|
|
1752
|
+
social_links?: {
|
|
1753
|
+
label: string;
|
|
1754
|
+
url: string;
|
|
1755
|
+
}[] | undefined;
|
|
1597
1756
|
vesting_recipients?: {
|
|
1598
1757
|
address: string;
|
|
1599
1758
|
amount: string;
|
|
@@ -1626,7 +1785,10 @@ export declare const rootContract: {
|
|
|
1626
1785
|
description?: string | undefined;
|
|
1627
1786
|
image_hash?: string | undefined;
|
|
1628
1787
|
fee_receiver?: string | undefined;
|
|
1629
|
-
social_links?:
|
|
1788
|
+
social_links?: {
|
|
1789
|
+
label: string;
|
|
1790
|
+
url: string;
|
|
1791
|
+
}[] | undefined;
|
|
1630
1792
|
vesting_recipients?: {
|
|
1631
1793
|
address: string;
|
|
1632
1794
|
amount: string;
|
|
@@ -1678,7 +1840,10 @@ export declare const rootContract: {
|
|
|
1678
1840
|
description?: string | undefined;
|
|
1679
1841
|
image_hash?: string | undefined;
|
|
1680
1842
|
fee_receiver?: string | undefined;
|
|
1681
|
-
social_links?:
|
|
1843
|
+
social_links?: {
|
|
1844
|
+
label: string;
|
|
1845
|
+
url: string;
|
|
1846
|
+
}[] | undefined;
|
|
1682
1847
|
vesting_recipients?: {
|
|
1683
1848
|
address: string;
|
|
1684
1849
|
amount?: string | undefined;
|
|
@@ -1712,7 +1877,10 @@ export declare const rootContract: {
|
|
|
1712
1877
|
description?: string | undefined;
|
|
1713
1878
|
image_hash?: string | undefined;
|
|
1714
1879
|
fee_receiver?: string | undefined;
|
|
1715
|
-
social_links?:
|
|
1880
|
+
social_links?: {
|
|
1881
|
+
label: string;
|
|
1882
|
+
url: string;
|
|
1883
|
+
}[] | undefined;
|
|
1716
1884
|
vesting_recipients?: {
|
|
1717
1885
|
address: string;
|
|
1718
1886
|
amount?: string | undefined;
|
|
@@ -1769,7 +1937,10 @@ export declare const rootContract: {
|
|
|
1769
1937
|
description?: string | undefined;
|
|
1770
1938
|
image_hash?: string | undefined;
|
|
1771
1939
|
fee_receiver?: string | undefined;
|
|
1772
|
-
social_links?:
|
|
1940
|
+
social_links?: {
|
|
1941
|
+
label: string;
|
|
1942
|
+
url: string;
|
|
1943
|
+
}[] | undefined;
|
|
1773
1944
|
vesting_recipients?: {
|
|
1774
1945
|
address: string;
|
|
1775
1946
|
amount: string;
|
|
@@ -1802,7 +1973,10 @@ export declare const rootContract: {
|
|
|
1802
1973
|
description?: string | undefined;
|
|
1803
1974
|
image_hash?: string | undefined;
|
|
1804
1975
|
fee_receiver?: string | undefined;
|
|
1805
|
-
social_links?:
|
|
1976
|
+
social_links?: {
|
|
1977
|
+
label: string;
|
|
1978
|
+
url: string;
|
|
1979
|
+
}[] | undefined;
|
|
1806
1980
|
vesting_recipients?: {
|
|
1807
1981
|
address: string;
|
|
1808
1982
|
amount: string;
|
|
@@ -1856,7 +2030,10 @@ export declare const rootContract: {
|
|
|
1856
2030
|
description?: string | undefined;
|
|
1857
2031
|
image_hash?: string | undefined;
|
|
1858
2032
|
fee_receiver?: string | undefined;
|
|
1859
|
-
social_links?:
|
|
2033
|
+
social_links?: {
|
|
2034
|
+
label: string;
|
|
2035
|
+
url: string;
|
|
2036
|
+
}[] | undefined;
|
|
1860
2037
|
vesting_recipients?: {
|
|
1861
2038
|
address: string;
|
|
1862
2039
|
amount?: string | undefined;
|
|
@@ -1890,7 +2067,10 @@ export declare const rootContract: {
|
|
|
1890
2067
|
description?: string | undefined;
|
|
1891
2068
|
image_hash?: string | undefined;
|
|
1892
2069
|
fee_receiver?: string | undefined;
|
|
1893
|
-
social_links?:
|
|
2070
|
+
social_links?: {
|
|
2071
|
+
label: string;
|
|
2072
|
+
url: string;
|
|
2073
|
+
}[] | undefined;
|
|
1894
2074
|
vesting_recipients?: {
|
|
1895
2075
|
address: string;
|
|
1896
2076
|
amount?: string | undefined;
|
|
@@ -1969,7 +2149,16 @@ export declare const rootContract: {
|
|
|
1969
2149
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1970
2150
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1971
2151
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1972
|
-
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").
|
|
2152
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2153
|
+
label: import("zod").ZodString;
|
|
2154
|
+
url: import("zod").ZodString;
|
|
2155
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2156
|
+
label: string;
|
|
2157
|
+
url: string;
|
|
2158
|
+
}, {
|
|
2159
|
+
label: string;
|
|
2160
|
+
url: string;
|
|
2161
|
+
}>, "many">>;
|
|
1973
2162
|
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
1974
2163
|
address: import("zod").ZodString;
|
|
1975
2164
|
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1995,7 +2184,10 @@ export declare const rootContract: {
|
|
|
1995
2184
|
description?: string | undefined;
|
|
1996
2185
|
image_hash?: string | undefined;
|
|
1997
2186
|
fee_receiver?: string | undefined;
|
|
1998
|
-
social_links?:
|
|
2187
|
+
social_links?: {
|
|
2188
|
+
label: string;
|
|
2189
|
+
url: string;
|
|
2190
|
+
}[] | undefined;
|
|
1999
2191
|
vesting_recipients?: {
|
|
2000
2192
|
address: string;
|
|
2001
2193
|
amount: string;
|
|
@@ -2005,7 +2197,10 @@ export declare const rootContract: {
|
|
|
2005
2197
|
description?: string | undefined;
|
|
2006
2198
|
image_hash?: string | undefined;
|
|
2007
2199
|
fee_receiver?: string | undefined;
|
|
2008
|
-
social_links?:
|
|
2200
|
+
social_links?: {
|
|
2201
|
+
label: string;
|
|
2202
|
+
url: string;
|
|
2203
|
+
}[] | undefined;
|
|
2009
2204
|
vesting_recipients?: {
|
|
2010
2205
|
address: string;
|
|
2011
2206
|
amount?: string | undefined;
|
|
@@ -2027,7 +2222,10 @@ export declare const rootContract: {
|
|
|
2027
2222
|
description?: string | undefined;
|
|
2028
2223
|
image_hash?: string | undefined;
|
|
2029
2224
|
fee_receiver?: string | undefined;
|
|
2030
|
-
social_links?:
|
|
2225
|
+
social_links?: {
|
|
2226
|
+
label: string;
|
|
2227
|
+
url: string;
|
|
2228
|
+
}[] | undefined;
|
|
2031
2229
|
vesting_recipients?: {
|
|
2032
2230
|
address: string;
|
|
2033
2231
|
amount: string;
|
|
@@ -2048,7 +2246,10 @@ export declare const rootContract: {
|
|
|
2048
2246
|
description?: string | undefined;
|
|
2049
2247
|
image_hash?: string | undefined;
|
|
2050
2248
|
fee_receiver?: string | undefined;
|
|
2051
|
-
social_links?:
|
|
2249
|
+
social_links?: {
|
|
2250
|
+
label: string;
|
|
2251
|
+
url: string;
|
|
2252
|
+
}[] | undefined;
|
|
2052
2253
|
vesting_recipients?: {
|
|
2053
2254
|
address: string;
|
|
2054
2255
|
amount?: string | undefined;
|
|
@@ -2093,7 +2294,10 @@ export declare const rootContract: {
|
|
|
2093
2294
|
description?: string | undefined;
|
|
2094
2295
|
image_hash?: string | undefined;
|
|
2095
2296
|
fee_receiver?: string | undefined;
|
|
2096
|
-
social_links?:
|
|
2297
|
+
social_links?: {
|
|
2298
|
+
label: string;
|
|
2299
|
+
url: string;
|
|
2300
|
+
}[] | undefined;
|
|
2097
2301
|
vesting_recipients?: {
|
|
2098
2302
|
address: string;
|
|
2099
2303
|
amount: string;
|
|
@@ -2137,7 +2341,10 @@ export declare const rootContract: {
|
|
|
2137
2341
|
description?: string | undefined;
|
|
2138
2342
|
image_hash?: string | undefined;
|
|
2139
2343
|
fee_receiver?: string | undefined;
|
|
2140
|
-
social_links?:
|
|
2344
|
+
social_links?: {
|
|
2345
|
+
label: string;
|
|
2346
|
+
url: string;
|
|
2347
|
+
}[] | undefined;
|
|
2141
2348
|
vesting_recipients?: {
|
|
2142
2349
|
address: string;
|
|
2143
2350
|
amount?: string | undefined;
|
|
@@ -2171,7 +2378,16 @@ export declare const rootContract: {
|
|
|
2171
2378
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2172
2379
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2173
2380
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2174
|
-
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").
|
|
2381
|
+
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2382
|
+
label: import("zod").ZodString;
|
|
2383
|
+
url: import("zod").ZodString;
|
|
2384
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2385
|
+
label: string;
|
|
2386
|
+
url: string;
|
|
2387
|
+
}, {
|
|
2388
|
+
label: string;
|
|
2389
|
+
url: string;
|
|
2390
|
+
}>, "many">>;
|
|
2175
2391
|
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
2176
2392
|
address: import("zod").ZodString;
|
|
2177
2393
|
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2197,7 +2413,10 @@ export declare const rootContract: {
|
|
|
2197
2413
|
description?: string | undefined;
|
|
2198
2414
|
image_hash?: string | undefined;
|
|
2199
2415
|
fee_receiver?: string | undefined;
|
|
2200
|
-
social_links?:
|
|
2416
|
+
social_links?: {
|
|
2417
|
+
label: string;
|
|
2418
|
+
url: string;
|
|
2419
|
+
}[] | undefined;
|
|
2201
2420
|
vesting_recipients?: {
|
|
2202
2421
|
address: string;
|
|
2203
2422
|
amount: string;
|
|
@@ -2207,7 +2426,10 @@ export declare const rootContract: {
|
|
|
2207
2426
|
description?: string | undefined;
|
|
2208
2427
|
image_hash?: string | undefined;
|
|
2209
2428
|
fee_receiver?: string | undefined;
|
|
2210
|
-
social_links?:
|
|
2429
|
+
social_links?: {
|
|
2430
|
+
label: string;
|
|
2431
|
+
url: string;
|
|
2432
|
+
}[] | undefined;
|
|
2211
2433
|
vesting_recipients?: {
|
|
2212
2434
|
address: string;
|
|
2213
2435
|
amount?: string | undefined;
|
|
@@ -2230,7 +2452,10 @@ export declare const rootContract: {
|
|
|
2230
2452
|
description?: string | undefined;
|
|
2231
2453
|
image_hash?: string | undefined;
|
|
2232
2454
|
fee_receiver?: string | undefined;
|
|
2233
|
-
social_links?:
|
|
2455
|
+
social_links?: {
|
|
2456
|
+
label: string;
|
|
2457
|
+
url: string;
|
|
2458
|
+
}[] | undefined;
|
|
2234
2459
|
vesting_recipients?: {
|
|
2235
2460
|
address: string;
|
|
2236
2461
|
amount: string;
|
|
@@ -2252,7 +2477,10 @@ export declare const rootContract: {
|
|
|
2252
2477
|
description?: string | undefined;
|
|
2253
2478
|
image_hash?: string | undefined;
|
|
2254
2479
|
fee_receiver?: string | undefined;
|
|
2255
|
-
social_links?:
|
|
2480
|
+
social_links?: {
|
|
2481
|
+
label: string;
|
|
2482
|
+
url: string;
|
|
2483
|
+
}[] | undefined;
|
|
2256
2484
|
vesting_recipients?: {
|
|
2257
2485
|
address: string;
|
|
2258
2486
|
amount?: string | undefined;
|
|
@@ -2286,7 +2514,10 @@ export declare const rootContract: {
|
|
|
2286
2514
|
description?: string | undefined;
|
|
2287
2515
|
image_hash?: string | undefined;
|
|
2288
2516
|
fee_receiver?: string | undefined;
|
|
2289
|
-
social_links?:
|
|
2517
|
+
social_links?: {
|
|
2518
|
+
label: string;
|
|
2519
|
+
url: string;
|
|
2520
|
+
}[] | undefined;
|
|
2290
2521
|
vesting_recipients?: {
|
|
2291
2522
|
address: string;
|
|
2292
2523
|
amount: string;
|
|
@@ -2319,7 +2550,10 @@ export declare const rootContract: {
|
|
|
2319
2550
|
description?: string | undefined;
|
|
2320
2551
|
image_hash?: string | undefined;
|
|
2321
2552
|
fee_receiver?: string | undefined;
|
|
2322
|
-
social_links?:
|
|
2553
|
+
social_links?: {
|
|
2554
|
+
label: string;
|
|
2555
|
+
url: string;
|
|
2556
|
+
}[] | undefined;
|
|
2323
2557
|
vesting_recipients?: {
|
|
2324
2558
|
address: string;
|
|
2325
2559
|
amount?: string | undefined;
|
|
@@ -2373,7 +2607,10 @@ export declare const rootContract: {
|
|
|
2373
2607
|
description?: string | undefined;
|
|
2374
2608
|
image_hash?: string | undefined;
|
|
2375
2609
|
fee_receiver?: string | undefined;
|
|
2376
|
-
social_links?:
|
|
2610
|
+
social_links?: {
|
|
2611
|
+
label: string;
|
|
2612
|
+
url: string;
|
|
2613
|
+
}[] | undefined;
|
|
2377
2614
|
vesting_recipients?: {
|
|
2378
2615
|
address: string;
|
|
2379
2616
|
amount: string;
|
|
@@ -2406,7 +2643,10 @@ export declare const rootContract: {
|
|
|
2406
2643
|
description?: string | undefined;
|
|
2407
2644
|
image_hash?: string | undefined;
|
|
2408
2645
|
fee_receiver?: string | undefined;
|
|
2409
|
-
social_links?:
|
|
2646
|
+
social_links?: {
|
|
2647
|
+
label: string;
|
|
2648
|
+
url: string;
|
|
2649
|
+
}[] | undefined;
|
|
2410
2650
|
vesting_recipients?: {
|
|
2411
2651
|
address: string;
|
|
2412
2652
|
amount: string;
|
|
@@ -2458,7 +2698,10 @@ export declare const rootContract: {
|
|
|
2458
2698
|
description?: string | undefined;
|
|
2459
2699
|
image_hash?: string | undefined;
|
|
2460
2700
|
fee_receiver?: string | undefined;
|
|
2461
|
-
social_links?:
|
|
2701
|
+
social_links?: {
|
|
2702
|
+
label: string;
|
|
2703
|
+
url: string;
|
|
2704
|
+
}[] | undefined;
|
|
2462
2705
|
vesting_recipients?: {
|
|
2463
2706
|
address: string;
|
|
2464
2707
|
amount?: string | undefined;
|
|
@@ -2492,7 +2735,10 @@ export declare const rootContract: {
|
|
|
2492
2735
|
description?: string | undefined;
|
|
2493
2736
|
image_hash?: string | undefined;
|
|
2494
2737
|
fee_receiver?: string | undefined;
|
|
2495
|
-
social_links?:
|
|
2738
|
+
social_links?: {
|
|
2739
|
+
label: string;
|
|
2740
|
+
url: string;
|
|
2741
|
+
}[] | undefined;
|
|
2496
2742
|
vesting_recipients?: {
|
|
2497
2743
|
address: string;
|
|
2498
2744
|
amount?: string | undefined;
|
|
@@ -2547,7 +2793,10 @@ export declare const rootContract: {
|
|
|
2547
2793
|
description?: string | undefined;
|
|
2548
2794
|
image_hash?: string | undefined;
|
|
2549
2795
|
fee_receiver?: string | undefined;
|
|
2550
|
-
social_links?:
|
|
2796
|
+
social_links?: {
|
|
2797
|
+
label: string;
|
|
2798
|
+
url: string;
|
|
2799
|
+
}[] | undefined;
|
|
2551
2800
|
vesting_recipients?: {
|
|
2552
2801
|
address: string;
|
|
2553
2802
|
amount: string;
|
|
@@ -2580,7 +2829,10 @@ export declare const rootContract: {
|
|
|
2580
2829
|
description?: string | undefined;
|
|
2581
2830
|
image_hash?: string | undefined;
|
|
2582
2831
|
fee_receiver?: string | undefined;
|
|
2583
|
-
social_links?:
|
|
2832
|
+
social_links?: {
|
|
2833
|
+
label: string;
|
|
2834
|
+
url: string;
|
|
2835
|
+
}[] | undefined;
|
|
2584
2836
|
vesting_recipients?: {
|
|
2585
2837
|
address: string;
|
|
2586
2838
|
amount: string;
|
|
@@ -2632,7 +2884,10 @@ export declare const rootContract: {
|
|
|
2632
2884
|
description?: string | undefined;
|
|
2633
2885
|
image_hash?: string | undefined;
|
|
2634
2886
|
fee_receiver?: string | undefined;
|
|
2635
|
-
social_links?:
|
|
2887
|
+
social_links?: {
|
|
2888
|
+
label: string;
|
|
2889
|
+
url: string;
|
|
2890
|
+
}[] | undefined;
|
|
2636
2891
|
vesting_recipients?: {
|
|
2637
2892
|
address: string;
|
|
2638
2893
|
amount?: string | undefined;
|
|
@@ -2666,7 +2921,10 @@ export declare const rootContract: {
|
|
|
2666
2921
|
description?: string | undefined;
|
|
2667
2922
|
image_hash?: string | undefined;
|
|
2668
2923
|
fee_receiver?: string | undefined;
|
|
2669
|
-
social_links?:
|
|
2924
|
+
social_links?: {
|
|
2925
|
+
label: string;
|
|
2926
|
+
url: string;
|
|
2927
|
+
}[] | undefined;
|
|
2670
2928
|
vesting_recipients?: {
|
|
2671
2929
|
address: string;
|
|
2672
2930
|
amount?: string | undefined;
|
|
@@ -2723,7 +2981,10 @@ export declare const rootContract: {
|
|
|
2723
2981
|
description?: string | undefined;
|
|
2724
2982
|
image_hash?: string | undefined;
|
|
2725
2983
|
fee_receiver?: string | undefined;
|
|
2726
|
-
social_links?:
|
|
2984
|
+
social_links?: {
|
|
2985
|
+
label: string;
|
|
2986
|
+
url: string;
|
|
2987
|
+
}[] | undefined;
|
|
2727
2988
|
vesting_recipients?: {
|
|
2728
2989
|
address: string;
|
|
2729
2990
|
amount: string;
|
|
@@ -2756,7 +3017,10 @@ export declare const rootContract: {
|
|
|
2756
3017
|
description?: string | undefined;
|
|
2757
3018
|
image_hash?: string | undefined;
|
|
2758
3019
|
fee_receiver?: string | undefined;
|
|
2759
|
-
social_links?:
|
|
3020
|
+
social_links?: {
|
|
3021
|
+
label: string;
|
|
3022
|
+
url: string;
|
|
3023
|
+
}[] | undefined;
|
|
2760
3024
|
vesting_recipients?: {
|
|
2761
3025
|
address: string;
|
|
2762
3026
|
amount: string;
|
|
@@ -2810,7 +3074,10 @@ export declare const rootContract: {
|
|
|
2810
3074
|
description?: string | undefined;
|
|
2811
3075
|
image_hash?: string | undefined;
|
|
2812
3076
|
fee_receiver?: string | undefined;
|
|
2813
|
-
social_links?:
|
|
3077
|
+
social_links?: {
|
|
3078
|
+
label: string;
|
|
3079
|
+
url: string;
|
|
3080
|
+
}[] | undefined;
|
|
2814
3081
|
vesting_recipients?: {
|
|
2815
3082
|
address: string;
|
|
2816
3083
|
amount?: string | undefined;
|
|
@@ -2844,7 +3111,10 @@ export declare const rootContract: {
|
|
|
2844
3111
|
description?: string | undefined;
|
|
2845
3112
|
image_hash?: string | undefined;
|
|
2846
3113
|
fee_receiver?: string | undefined;
|
|
2847
|
-
social_links?:
|
|
3114
|
+
social_links?: {
|
|
3115
|
+
label: string;
|
|
3116
|
+
url: string;
|
|
3117
|
+
}[] | undefined;
|
|
2848
3118
|
vesting_recipients?: {
|
|
2849
3119
|
address: string;
|
|
2850
3120
|
amount?: string | undefined;
|
|
@@ -3254,30 +3524,30 @@ export declare const rootContract: {
|
|
|
3254
3524
|
image_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3255
3525
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3256
3526
|
description: string | null;
|
|
3257
|
-
id: number;
|
|
3258
3527
|
label: string;
|
|
3528
|
+
id: number;
|
|
3259
3529
|
funding_amount: number;
|
|
3260
3530
|
image_url: string | null;
|
|
3261
3531
|
}, {
|
|
3262
3532
|
description: string | null;
|
|
3263
|
-
id: number;
|
|
3264
3533
|
label: string;
|
|
3534
|
+
id: number;
|
|
3265
3535
|
funding_amount: number;
|
|
3266
3536
|
image_url: string | null;
|
|
3267
3537
|
}>, "many">;
|
|
3268
3538
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3269
3539
|
result: {
|
|
3270
3540
|
description: string | null;
|
|
3271
|
-
id: number;
|
|
3272
3541
|
label: string;
|
|
3542
|
+
id: number;
|
|
3273
3543
|
funding_amount: number;
|
|
3274
3544
|
image_url: string | null;
|
|
3275
3545
|
}[];
|
|
3276
3546
|
}, {
|
|
3277
3547
|
result: {
|
|
3278
3548
|
description: string | null;
|
|
3279
|
-
id: number;
|
|
3280
3549
|
label: string;
|
|
3550
|
+
id: number;
|
|
3281
3551
|
funding_amount: number;
|
|
3282
3552
|
image_url: string | null;
|
|
3283
3553
|
}[];
|
|
@@ -3304,30 +3574,30 @@ export declare const rootContract: {
|
|
|
3304
3574
|
image_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3305
3575
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3306
3576
|
description: string | null;
|
|
3307
|
-
id: number;
|
|
3308
3577
|
label: string;
|
|
3578
|
+
id: number;
|
|
3309
3579
|
funding_amount: number;
|
|
3310
3580
|
image_url: string | null;
|
|
3311
3581
|
}, {
|
|
3312
3582
|
description: string | null;
|
|
3313
|
-
id: number;
|
|
3314
3583
|
label: string;
|
|
3584
|
+
id: number;
|
|
3315
3585
|
funding_amount: number;
|
|
3316
3586
|
image_url: string | null;
|
|
3317
3587
|
}>;
|
|
3318
3588
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3319
3589
|
result: {
|
|
3320
3590
|
description: string | null;
|
|
3321
|
-
id: number;
|
|
3322
3591
|
label: string;
|
|
3592
|
+
id: number;
|
|
3323
3593
|
funding_amount: number;
|
|
3324
3594
|
image_url: string | null;
|
|
3325
3595
|
};
|
|
3326
3596
|
}, {
|
|
3327
3597
|
result: {
|
|
3328
3598
|
description: string | null;
|
|
3329
|
-
id: number;
|
|
3330
3599
|
label: string;
|
|
3600
|
+
id: number;
|
|
3331
3601
|
funding_amount: number;
|
|
3332
3602
|
image_url: string | null;
|
|
3333
3603
|
};
|