@longdotxyz/shared 0.0.42 → 0.0.43
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.
|
@@ -61,15 +61,25 @@ export declare const rootContract: {
|
|
|
61
61
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
62
62
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
63
63
|
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
64
|
-
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
64
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
65
65
|
address: import("zod").ZodString;
|
|
66
|
-
amount: import("zod").ZodString
|
|
66
|
+
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
67
|
+
percentage: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
67
68
|
}, "strip", import("zod").ZodTypeAny, {
|
|
68
69
|
address: string;
|
|
69
|
-
amount
|
|
70
|
+
amount?: string | undefined;
|
|
71
|
+
percentage?: number | undefined;
|
|
70
72
|
}, {
|
|
71
73
|
address: string;
|
|
72
|
-
amount
|
|
74
|
+
amount?: string | undefined;
|
|
75
|
+
percentage?: number | undefined;
|
|
76
|
+
}>, {
|
|
77
|
+
address: string;
|
|
78
|
+
amount: string | undefined;
|
|
79
|
+
}, {
|
|
80
|
+
address: string;
|
|
81
|
+
amount?: string | undefined;
|
|
82
|
+
percentage?: number | undefined;
|
|
73
83
|
}>, "many">>;
|
|
74
84
|
}, "strip", import("zod").ZodTypeAny, {
|
|
75
85
|
name?: string | undefined;
|
|
@@ -79,7 +89,7 @@ export declare const rootContract: {
|
|
|
79
89
|
social_links?: string[] | undefined;
|
|
80
90
|
vesting_recipients?: {
|
|
81
91
|
address: string;
|
|
82
|
-
amount: string;
|
|
92
|
+
amount: string | undefined;
|
|
83
93
|
}[] | undefined;
|
|
84
94
|
}, {
|
|
85
95
|
name?: string | undefined;
|
|
@@ -89,7 +99,8 @@ export declare const rootContract: {
|
|
|
89
99
|
social_links?: string[] | undefined;
|
|
90
100
|
vesting_recipients?: {
|
|
91
101
|
address: string;
|
|
92
|
-
amount
|
|
102
|
+
amount?: string | undefined;
|
|
103
|
+
percentage?: number | undefined;
|
|
93
104
|
}[] | undefined;
|
|
94
105
|
}>>;
|
|
95
106
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -109,7 +120,7 @@ export declare const rootContract: {
|
|
|
109
120
|
social_links?: string[] | undefined;
|
|
110
121
|
vesting_recipients?: {
|
|
111
122
|
address: string;
|
|
112
|
-
amount: string;
|
|
123
|
+
amount: string | undefined;
|
|
113
124
|
}[] | undefined;
|
|
114
125
|
} | null;
|
|
115
126
|
token_image_public_url: string | null;
|
|
@@ -129,7 +140,8 @@ export declare const rootContract: {
|
|
|
129
140
|
social_links?: string[] | undefined;
|
|
130
141
|
vesting_recipients?: {
|
|
131
142
|
address: string;
|
|
132
|
-
amount
|
|
143
|
+
amount?: string | undefined;
|
|
144
|
+
percentage?: number | undefined;
|
|
133
145
|
}[] | undefined;
|
|
134
146
|
} | null;
|
|
135
147
|
token_image_public_url: string | null;
|
|
@@ -171,7 +183,7 @@ export declare const rootContract: {
|
|
|
171
183
|
social_links?: string[] | undefined;
|
|
172
184
|
vesting_recipients?: {
|
|
173
185
|
address: string;
|
|
174
|
-
amount: string;
|
|
186
|
+
amount: string | undefined;
|
|
175
187
|
}[] | undefined;
|
|
176
188
|
} | null;
|
|
177
189
|
token_image_public_url: string | null;
|
|
@@ -213,7 +225,8 @@ export declare const rootContract: {
|
|
|
213
225
|
social_links?: string[] | undefined;
|
|
214
226
|
vesting_recipients?: {
|
|
215
227
|
address: string;
|
|
216
|
-
amount
|
|
228
|
+
amount?: string | undefined;
|
|
229
|
+
percentage?: number | undefined;
|
|
217
230
|
}[] | undefined;
|
|
218
231
|
} | null;
|
|
219
232
|
token_image_public_url: string | null;
|
|
@@ -243,15 +256,25 @@ export declare const rootContract: {
|
|
|
243
256
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
244
257
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
245
258
|
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
246
|
-
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
259
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
247
260
|
address: import("zod").ZodString;
|
|
248
|
-
amount: import("zod").ZodString
|
|
261
|
+
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
262
|
+
percentage: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
249
263
|
}, "strip", import("zod").ZodTypeAny, {
|
|
250
264
|
address: string;
|
|
251
|
-
amount
|
|
265
|
+
amount?: string | undefined;
|
|
266
|
+
percentage?: number | undefined;
|
|
252
267
|
}, {
|
|
253
268
|
address: string;
|
|
254
|
-
amount
|
|
269
|
+
amount?: string | undefined;
|
|
270
|
+
percentage?: number | undefined;
|
|
271
|
+
}>, {
|
|
272
|
+
address: string;
|
|
273
|
+
amount: string | undefined;
|
|
274
|
+
}, {
|
|
275
|
+
address: string;
|
|
276
|
+
amount?: string | undefined;
|
|
277
|
+
percentage?: number | undefined;
|
|
255
278
|
}>, "many">>;
|
|
256
279
|
}, "strip", import("zod").ZodTypeAny, {
|
|
257
280
|
name?: string | undefined;
|
|
@@ -261,7 +284,7 @@ export declare const rootContract: {
|
|
|
261
284
|
social_links?: string[] | undefined;
|
|
262
285
|
vesting_recipients?: {
|
|
263
286
|
address: string;
|
|
264
|
-
amount: string;
|
|
287
|
+
amount: string | undefined;
|
|
265
288
|
}[] | undefined;
|
|
266
289
|
}, {
|
|
267
290
|
name?: string | undefined;
|
|
@@ -271,7 +294,8 @@ export declare const rootContract: {
|
|
|
271
294
|
social_links?: string[] | undefined;
|
|
272
295
|
vesting_recipients?: {
|
|
273
296
|
address: string;
|
|
274
|
-
amount
|
|
297
|
+
amount?: string | undefined;
|
|
298
|
+
percentage?: number | undefined;
|
|
275
299
|
}[] | undefined;
|
|
276
300
|
}>>;
|
|
277
301
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -292,7 +316,7 @@ export declare const rootContract: {
|
|
|
292
316
|
social_links?: string[] | undefined;
|
|
293
317
|
vesting_recipients?: {
|
|
294
318
|
address: string;
|
|
295
|
-
amount: string;
|
|
319
|
+
amount: string | undefined;
|
|
296
320
|
}[] | undefined;
|
|
297
321
|
} | null;
|
|
298
322
|
token_image_public_url: string | null;
|
|
@@ -313,7 +337,8 @@ export declare const rootContract: {
|
|
|
313
337
|
social_links?: string[] | undefined;
|
|
314
338
|
vesting_recipients?: {
|
|
315
339
|
address: string;
|
|
316
|
-
amount
|
|
340
|
+
amount?: string | undefined;
|
|
341
|
+
percentage?: number | undefined;
|
|
317
342
|
}[] | undefined;
|
|
318
343
|
} | null;
|
|
319
344
|
token_image_public_url: string | null;
|
|
@@ -345,7 +370,7 @@ export declare const rootContract: {
|
|
|
345
370
|
social_links?: string[] | undefined;
|
|
346
371
|
vesting_recipients?: {
|
|
347
372
|
address: string;
|
|
348
|
-
amount: string;
|
|
373
|
+
amount: string | undefined;
|
|
349
374
|
}[] | undefined;
|
|
350
375
|
} | null;
|
|
351
376
|
token_image_public_url: string | null;
|
|
@@ -377,7 +402,8 @@ export declare const rootContract: {
|
|
|
377
402
|
social_links?: string[] | undefined;
|
|
378
403
|
vesting_recipients?: {
|
|
379
404
|
address: string;
|
|
380
|
-
amount
|
|
405
|
+
amount?: string | undefined;
|
|
406
|
+
percentage?: number | undefined;
|
|
381
407
|
}[] | undefined;
|
|
382
408
|
} | null;
|
|
383
409
|
token_image_public_url: string | null;
|
|
@@ -428,7 +454,7 @@ export declare const rootContract: {
|
|
|
428
454
|
social_links?: string[] | undefined;
|
|
429
455
|
vesting_recipients?: {
|
|
430
456
|
address: string;
|
|
431
|
-
amount: string;
|
|
457
|
+
amount: string | undefined;
|
|
432
458
|
}[] | undefined;
|
|
433
459
|
} | null;
|
|
434
460
|
token_image_public_url: string | null;
|
|
@@ -460,7 +486,7 @@ export declare const rootContract: {
|
|
|
460
486
|
social_links?: string[] | undefined;
|
|
461
487
|
vesting_recipients?: {
|
|
462
488
|
address: string;
|
|
463
|
-
amount: string;
|
|
489
|
+
amount: string | undefined;
|
|
464
490
|
}[] | undefined;
|
|
465
491
|
} | null;
|
|
466
492
|
token_image_public_url: string | null;
|
|
@@ -510,7 +536,8 @@ export declare const rootContract: {
|
|
|
510
536
|
social_links?: string[] | undefined;
|
|
511
537
|
vesting_recipients?: {
|
|
512
538
|
address: string;
|
|
513
|
-
amount
|
|
539
|
+
amount?: string | undefined;
|
|
540
|
+
percentage?: number | undefined;
|
|
514
541
|
}[] | undefined;
|
|
515
542
|
} | null;
|
|
516
543
|
token_image_public_url: string | null;
|
|
@@ -542,7 +569,8 @@ export declare const rootContract: {
|
|
|
542
569
|
social_links?: string[] | undefined;
|
|
543
570
|
vesting_recipients?: {
|
|
544
571
|
address: string;
|
|
545
|
-
amount
|
|
572
|
+
amount?: string | undefined;
|
|
573
|
+
percentage?: number | undefined;
|
|
546
574
|
}[] | undefined;
|
|
547
575
|
} | null;
|
|
548
576
|
token_image_public_url: string | null;
|
|
@@ -594,7 +622,7 @@ export declare const rootContract: {
|
|
|
594
622
|
social_links?: string[] | undefined;
|
|
595
623
|
vesting_recipients?: {
|
|
596
624
|
address: string;
|
|
597
|
-
amount: string;
|
|
625
|
+
amount: string | undefined;
|
|
598
626
|
}[] | undefined;
|
|
599
627
|
} | null;
|
|
600
628
|
token_image_public_url: string | null;
|
|
@@ -626,7 +654,7 @@ export declare const rootContract: {
|
|
|
626
654
|
social_links?: string[] | undefined;
|
|
627
655
|
vesting_recipients?: {
|
|
628
656
|
address: string;
|
|
629
|
-
amount: string;
|
|
657
|
+
amount: string | undefined;
|
|
630
658
|
}[] | undefined;
|
|
631
659
|
} | null;
|
|
632
660
|
token_image_public_url: string | null;
|
|
@@ -676,7 +704,8 @@ export declare const rootContract: {
|
|
|
676
704
|
social_links?: string[] | undefined;
|
|
677
705
|
vesting_recipients?: {
|
|
678
706
|
address: string;
|
|
679
|
-
amount
|
|
707
|
+
amount?: string | undefined;
|
|
708
|
+
percentage?: number | undefined;
|
|
680
709
|
}[] | undefined;
|
|
681
710
|
} | null;
|
|
682
711
|
token_image_public_url: string | null;
|
|
@@ -708,7 +737,8 @@ export declare const rootContract: {
|
|
|
708
737
|
social_links?: string[] | undefined;
|
|
709
738
|
vesting_recipients?: {
|
|
710
739
|
address: string;
|
|
711
|
-
amount
|
|
740
|
+
amount?: string | undefined;
|
|
741
|
+
percentage?: number | undefined;
|
|
712
742
|
}[] | undefined;
|
|
713
743
|
} | null;
|
|
714
744
|
token_image_public_url: string | null;
|
|
@@ -762,7 +792,7 @@ export declare const rootContract: {
|
|
|
762
792
|
social_links?: string[] | undefined;
|
|
763
793
|
vesting_recipients?: {
|
|
764
794
|
address: string;
|
|
765
|
-
amount: string;
|
|
795
|
+
amount: string | undefined;
|
|
766
796
|
}[] | undefined;
|
|
767
797
|
} | null;
|
|
768
798
|
token_image_public_url: string | null;
|
|
@@ -794,7 +824,7 @@ export declare const rootContract: {
|
|
|
794
824
|
social_links?: string[] | undefined;
|
|
795
825
|
vesting_recipients?: {
|
|
796
826
|
address: string;
|
|
797
|
-
amount: string;
|
|
827
|
+
amount: string | undefined;
|
|
798
828
|
}[] | undefined;
|
|
799
829
|
} | null;
|
|
800
830
|
token_image_public_url: string | null;
|
|
@@ -846,7 +876,8 @@ export declare const rootContract: {
|
|
|
846
876
|
social_links?: string[] | undefined;
|
|
847
877
|
vesting_recipients?: {
|
|
848
878
|
address: string;
|
|
849
|
-
amount
|
|
879
|
+
amount?: string | undefined;
|
|
880
|
+
percentage?: number | undefined;
|
|
850
881
|
}[] | undefined;
|
|
851
882
|
} | null;
|
|
852
883
|
token_image_public_url: string | null;
|
|
@@ -878,7 +909,8 @@ export declare const rootContract: {
|
|
|
878
909
|
social_links?: string[] | undefined;
|
|
879
910
|
vesting_recipients?: {
|
|
880
911
|
address: string;
|
|
881
|
-
amount
|
|
912
|
+
amount?: string | undefined;
|
|
913
|
+
percentage?: number | undefined;
|
|
882
914
|
}[] | undefined;
|
|
883
915
|
} | null;
|
|
884
916
|
token_image_public_url: string | null;
|
|
@@ -951,15 +983,25 @@ export declare const rootContract: {
|
|
|
951
983
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
952
984
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
953
985
|
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
954
|
-
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
986
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
955
987
|
address: import("zod").ZodString;
|
|
956
|
-
amount: import("zod").ZodString
|
|
988
|
+
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
989
|
+
percentage: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
957
990
|
}, "strip", import("zod").ZodTypeAny, {
|
|
958
991
|
address: string;
|
|
959
|
-
amount
|
|
992
|
+
amount?: string | undefined;
|
|
993
|
+
percentage?: number | undefined;
|
|
994
|
+
}, {
|
|
995
|
+
address: string;
|
|
996
|
+
amount?: string | undefined;
|
|
997
|
+
percentage?: number | undefined;
|
|
998
|
+
}>, {
|
|
999
|
+
address: string;
|
|
1000
|
+
amount: string | undefined;
|
|
960
1001
|
}, {
|
|
961
1002
|
address: string;
|
|
962
|
-
amount
|
|
1003
|
+
amount?: string | undefined;
|
|
1004
|
+
percentage?: number | undefined;
|
|
963
1005
|
}>, "many">>;
|
|
964
1006
|
}, "strip", import("zod").ZodTypeAny, {
|
|
965
1007
|
name?: string | undefined;
|
|
@@ -969,7 +1011,7 @@ export declare const rootContract: {
|
|
|
969
1011
|
social_links?: string[] | undefined;
|
|
970
1012
|
vesting_recipients?: {
|
|
971
1013
|
address: string;
|
|
972
|
-
amount: string;
|
|
1014
|
+
amount: string | undefined;
|
|
973
1015
|
}[] | undefined;
|
|
974
1016
|
}, {
|
|
975
1017
|
name?: string | undefined;
|
|
@@ -979,7 +1021,8 @@ export declare const rootContract: {
|
|
|
979
1021
|
social_links?: string[] | undefined;
|
|
980
1022
|
vesting_recipients?: {
|
|
981
1023
|
address: string;
|
|
982
|
-
amount
|
|
1024
|
+
amount?: string | undefined;
|
|
1025
|
+
percentage?: number | undefined;
|
|
983
1026
|
}[] | undefined;
|
|
984
1027
|
}>>;
|
|
985
1028
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -999,7 +1042,7 @@ export declare const rootContract: {
|
|
|
999
1042
|
social_links?: string[] | undefined;
|
|
1000
1043
|
vesting_recipients?: {
|
|
1001
1044
|
address: string;
|
|
1002
|
-
amount: string;
|
|
1045
|
+
amount: string | undefined;
|
|
1003
1046
|
}[] | undefined;
|
|
1004
1047
|
} | null;
|
|
1005
1048
|
token_image_public_url: string | null;
|
|
@@ -1019,7 +1062,8 @@ export declare const rootContract: {
|
|
|
1019
1062
|
social_links?: string[] | undefined;
|
|
1020
1063
|
vesting_recipients?: {
|
|
1021
1064
|
address: string;
|
|
1022
|
-
amount
|
|
1065
|
+
amount?: string | undefined;
|
|
1066
|
+
percentage?: number | undefined;
|
|
1023
1067
|
}[] | undefined;
|
|
1024
1068
|
} | null;
|
|
1025
1069
|
token_image_public_url: string | null;
|
|
@@ -1061,7 +1105,7 @@ export declare const rootContract: {
|
|
|
1061
1105
|
social_links?: string[] | undefined;
|
|
1062
1106
|
vesting_recipients?: {
|
|
1063
1107
|
address: string;
|
|
1064
|
-
amount: string;
|
|
1108
|
+
amount: string | undefined;
|
|
1065
1109
|
}[] | undefined;
|
|
1066
1110
|
} | null;
|
|
1067
1111
|
token_image_public_url: string | null;
|
|
@@ -1103,7 +1147,8 @@ export declare const rootContract: {
|
|
|
1103
1147
|
social_links?: string[] | undefined;
|
|
1104
1148
|
vesting_recipients?: {
|
|
1105
1149
|
address: string;
|
|
1106
|
-
amount
|
|
1150
|
+
amount?: string | undefined;
|
|
1151
|
+
percentage?: number | undefined;
|
|
1107
1152
|
}[] | undefined;
|
|
1108
1153
|
} | null;
|
|
1109
1154
|
token_image_public_url: string | null;
|
|
@@ -1133,15 +1178,25 @@ export declare const rootContract: {
|
|
|
1133
1178
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1134
1179
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1135
1180
|
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
1136
|
-
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1181
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
1137
1182
|
address: import("zod").ZodString;
|
|
1138
|
-
amount: import("zod").ZodString
|
|
1183
|
+
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1184
|
+
percentage: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1139
1185
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1140
1186
|
address: string;
|
|
1141
|
-
amount
|
|
1187
|
+
amount?: string | undefined;
|
|
1188
|
+
percentage?: number | undefined;
|
|
1142
1189
|
}, {
|
|
1143
1190
|
address: string;
|
|
1144
|
-
amount
|
|
1191
|
+
amount?: string | undefined;
|
|
1192
|
+
percentage?: number | undefined;
|
|
1193
|
+
}>, {
|
|
1194
|
+
address: string;
|
|
1195
|
+
amount: string | undefined;
|
|
1196
|
+
}, {
|
|
1197
|
+
address: string;
|
|
1198
|
+
amount?: string | undefined;
|
|
1199
|
+
percentage?: number | undefined;
|
|
1145
1200
|
}>, "many">>;
|
|
1146
1201
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1147
1202
|
name?: string | undefined;
|
|
@@ -1151,7 +1206,7 @@ export declare const rootContract: {
|
|
|
1151
1206
|
social_links?: string[] | undefined;
|
|
1152
1207
|
vesting_recipients?: {
|
|
1153
1208
|
address: string;
|
|
1154
|
-
amount: string;
|
|
1209
|
+
amount: string | undefined;
|
|
1155
1210
|
}[] | undefined;
|
|
1156
1211
|
}, {
|
|
1157
1212
|
name?: string | undefined;
|
|
@@ -1161,7 +1216,8 @@ export declare const rootContract: {
|
|
|
1161
1216
|
social_links?: string[] | undefined;
|
|
1162
1217
|
vesting_recipients?: {
|
|
1163
1218
|
address: string;
|
|
1164
|
-
amount
|
|
1219
|
+
amount?: string | undefined;
|
|
1220
|
+
percentage?: number | undefined;
|
|
1165
1221
|
}[] | undefined;
|
|
1166
1222
|
}>>;
|
|
1167
1223
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -1182,7 +1238,7 @@ export declare const rootContract: {
|
|
|
1182
1238
|
social_links?: string[] | undefined;
|
|
1183
1239
|
vesting_recipients?: {
|
|
1184
1240
|
address: string;
|
|
1185
|
-
amount: string;
|
|
1241
|
+
amount: string | undefined;
|
|
1186
1242
|
}[] | undefined;
|
|
1187
1243
|
} | null;
|
|
1188
1244
|
token_image_public_url: string | null;
|
|
@@ -1203,7 +1259,8 @@ export declare const rootContract: {
|
|
|
1203
1259
|
social_links?: string[] | undefined;
|
|
1204
1260
|
vesting_recipients?: {
|
|
1205
1261
|
address: string;
|
|
1206
|
-
amount
|
|
1262
|
+
amount?: string | undefined;
|
|
1263
|
+
percentage?: number | undefined;
|
|
1207
1264
|
}[] | undefined;
|
|
1208
1265
|
} | null;
|
|
1209
1266
|
token_image_public_url: string | null;
|
|
@@ -1235,7 +1292,7 @@ export declare const rootContract: {
|
|
|
1235
1292
|
social_links?: string[] | undefined;
|
|
1236
1293
|
vesting_recipients?: {
|
|
1237
1294
|
address: string;
|
|
1238
|
-
amount: string;
|
|
1295
|
+
amount: string | undefined;
|
|
1239
1296
|
}[] | undefined;
|
|
1240
1297
|
} | null;
|
|
1241
1298
|
token_image_public_url: string | null;
|
|
@@ -1267,7 +1324,8 @@ export declare const rootContract: {
|
|
|
1267
1324
|
social_links?: string[] | undefined;
|
|
1268
1325
|
vesting_recipients?: {
|
|
1269
1326
|
address: string;
|
|
1270
|
-
amount
|
|
1327
|
+
amount?: string | undefined;
|
|
1328
|
+
percentage?: number | undefined;
|
|
1271
1329
|
}[] | undefined;
|
|
1272
1330
|
} | null;
|
|
1273
1331
|
token_image_public_url: string | null;
|
|
@@ -1318,7 +1376,7 @@ export declare const rootContract: {
|
|
|
1318
1376
|
social_links?: string[] | undefined;
|
|
1319
1377
|
vesting_recipients?: {
|
|
1320
1378
|
address: string;
|
|
1321
|
-
amount: string;
|
|
1379
|
+
amount: string | undefined;
|
|
1322
1380
|
}[] | undefined;
|
|
1323
1381
|
} | null;
|
|
1324
1382
|
token_image_public_url: string | null;
|
|
@@ -1350,7 +1408,7 @@ export declare const rootContract: {
|
|
|
1350
1408
|
social_links?: string[] | undefined;
|
|
1351
1409
|
vesting_recipients?: {
|
|
1352
1410
|
address: string;
|
|
1353
|
-
amount: string;
|
|
1411
|
+
amount: string | undefined;
|
|
1354
1412
|
}[] | undefined;
|
|
1355
1413
|
} | null;
|
|
1356
1414
|
token_image_public_url: string | null;
|
|
@@ -1400,7 +1458,8 @@ export declare const rootContract: {
|
|
|
1400
1458
|
social_links?: string[] | undefined;
|
|
1401
1459
|
vesting_recipients?: {
|
|
1402
1460
|
address: string;
|
|
1403
|
-
amount
|
|
1461
|
+
amount?: string | undefined;
|
|
1462
|
+
percentage?: number | undefined;
|
|
1404
1463
|
}[] | undefined;
|
|
1405
1464
|
} | null;
|
|
1406
1465
|
token_image_public_url: string | null;
|
|
@@ -1432,7 +1491,8 @@ export declare const rootContract: {
|
|
|
1432
1491
|
social_links?: string[] | undefined;
|
|
1433
1492
|
vesting_recipients?: {
|
|
1434
1493
|
address: string;
|
|
1435
|
-
amount
|
|
1494
|
+
amount?: string | undefined;
|
|
1495
|
+
percentage?: number | undefined;
|
|
1436
1496
|
}[] | undefined;
|
|
1437
1497
|
} | null;
|
|
1438
1498
|
token_image_public_url: string | null;
|
|
@@ -1484,7 +1544,7 @@ export declare const rootContract: {
|
|
|
1484
1544
|
social_links?: string[] | undefined;
|
|
1485
1545
|
vesting_recipients?: {
|
|
1486
1546
|
address: string;
|
|
1487
|
-
amount: string;
|
|
1547
|
+
amount: string | undefined;
|
|
1488
1548
|
}[] | undefined;
|
|
1489
1549
|
} | null;
|
|
1490
1550
|
token_image_public_url: string | null;
|
|
@@ -1516,7 +1576,7 @@ export declare const rootContract: {
|
|
|
1516
1576
|
social_links?: string[] | undefined;
|
|
1517
1577
|
vesting_recipients?: {
|
|
1518
1578
|
address: string;
|
|
1519
|
-
amount: string;
|
|
1579
|
+
amount: string | undefined;
|
|
1520
1580
|
}[] | undefined;
|
|
1521
1581
|
} | null;
|
|
1522
1582
|
token_image_public_url: string | null;
|
|
@@ -1566,7 +1626,8 @@ export declare const rootContract: {
|
|
|
1566
1626
|
social_links?: string[] | undefined;
|
|
1567
1627
|
vesting_recipients?: {
|
|
1568
1628
|
address: string;
|
|
1569
|
-
amount
|
|
1629
|
+
amount?: string | undefined;
|
|
1630
|
+
percentage?: number | undefined;
|
|
1570
1631
|
}[] | undefined;
|
|
1571
1632
|
} | null;
|
|
1572
1633
|
token_image_public_url: string | null;
|
|
@@ -1598,7 +1659,8 @@ export declare const rootContract: {
|
|
|
1598
1659
|
social_links?: string[] | undefined;
|
|
1599
1660
|
vesting_recipients?: {
|
|
1600
1661
|
address: string;
|
|
1601
|
-
amount
|
|
1662
|
+
amount?: string | undefined;
|
|
1663
|
+
percentage?: number | undefined;
|
|
1602
1664
|
}[] | undefined;
|
|
1603
1665
|
} | null;
|
|
1604
1666
|
token_image_public_url: string | null;
|
|
@@ -1652,7 +1714,7 @@ export declare const rootContract: {
|
|
|
1652
1714
|
social_links?: string[] | undefined;
|
|
1653
1715
|
vesting_recipients?: {
|
|
1654
1716
|
address: string;
|
|
1655
|
-
amount: string;
|
|
1717
|
+
amount: string | undefined;
|
|
1656
1718
|
}[] | undefined;
|
|
1657
1719
|
} | null;
|
|
1658
1720
|
token_image_public_url: string | null;
|
|
@@ -1684,7 +1746,7 @@ export declare const rootContract: {
|
|
|
1684
1746
|
social_links?: string[] | undefined;
|
|
1685
1747
|
vesting_recipients?: {
|
|
1686
1748
|
address: string;
|
|
1687
|
-
amount: string;
|
|
1749
|
+
amount: string | undefined;
|
|
1688
1750
|
}[] | undefined;
|
|
1689
1751
|
} | null;
|
|
1690
1752
|
token_image_public_url: string | null;
|
|
@@ -1736,7 +1798,8 @@ export declare const rootContract: {
|
|
|
1736
1798
|
social_links?: string[] | undefined;
|
|
1737
1799
|
vesting_recipients?: {
|
|
1738
1800
|
address: string;
|
|
1739
|
-
amount
|
|
1801
|
+
amount?: string | undefined;
|
|
1802
|
+
percentage?: number | undefined;
|
|
1740
1803
|
}[] | undefined;
|
|
1741
1804
|
} | null;
|
|
1742
1805
|
token_image_public_url: string | null;
|
|
@@ -1768,7 +1831,8 @@ export declare const rootContract: {
|
|
|
1768
1831
|
social_links?: string[] | undefined;
|
|
1769
1832
|
vesting_recipients?: {
|
|
1770
1833
|
address: string;
|
|
1771
|
-
amount
|
|
1834
|
+
amount?: string | undefined;
|
|
1835
|
+
percentage?: number | undefined;
|
|
1772
1836
|
}[] | undefined;
|
|
1773
1837
|
} | null;
|
|
1774
1838
|
token_image_public_url: string | null;
|
|
@@ -1842,15 +1906,25 @@ export declare const rootContract: {
|
|
|
1842
1906
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1843
1907
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1844
1908
|
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
1845
|
-
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1909
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
1846
1910
|
address: import("zod").ZodString;
|
|
1847
|
-
amount: import("zod").ZodString
|
|
1911
|
+
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1912
|
+
percentage: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1848
1913
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1849
1914
|
address: string;
|
|
1850
|
-
amount
|
|
1915
|
+
amount?: string | undefined;
|
|
1916
|
+
percentage?: number | undefined;
|
|
1851
1917
|
}, {
|
|
1852
1918
|
address: string;
|
|
1853
|
-
amount
|
|
1919
|
+
amount?: string | undefined;
|
|
1920
|
+
percentage?: number | undefined;
|
|
1921
|
+
}>, {
|
|
1922
|
+
address: string;
|
|
1923
|
+
amount: string | undefined;
|
|
1924
|
+
}, {
|
|
1925
|
+
address: string;
|
|
1926
|
+
amount?: string | undefined;
|
|
1927
|
+
percentage?: number | undefined;
|
|
1854
1928
|
}>, "many">>;
|
|
1855
1929
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1856
1930
|
name?: string | undefined;
|
|
@@ -1860,7 +1934,7 @@ export declare const rootContract: {
|
|
|
1860
1934
|
social_links?: string[] | undefined;
|
|
1861
1935
|
vesting_recipients?: {
|
|
1862
1936
|
address: string;
|
|
1863
|
-
amount: string;
|
|
1937
|
+
amount: string | undefined;
|
|
1864
1938
|
}[] | undefined;
|
|
1865
1939
|
}, {
|
|
1866
1940
|
name?: string | undefined;
|
|
@@ -1870,7 +1944,8 @@ export declare const rootContract: {
|
|
|
1870
1944
|
social_links?: string[] | undefined;
|
|
1871
1945
|
vesting_recipients?: {
|
|
1872
1946
|
address: string;
|
|
1873
|
-
amount
|
|
1947
|
+
amount?: string | undefined;
|
|
1948
|
+
percentage?: number | undefined;
|
|
1874
1949
|
}[] | undefined;
|
|
1875
1950
|
}>>;
|
|
1876
1951
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -1890,7 +1965,7 @@ export declare const rootContract: {
|
|
|
1890
1965
|
social_links?: string[] | undefined;
|
|
1891
1966
|
vesting_recipients?: {
|
|
1892
1967
|
address: string;
|
|
1893
|
-
amount: string;
|
|
1968
|
+
amount: string | undefined;
|
|
1894
1969
|
}[] | undefined;
|
|
1895
1970
|
} | null;
|
|
1896
1971
|
token_image_public_url: string | null;
|
|
@@ -1910,7 +1985,8 @@ export declare const rootContract: {
|
|
|
1910
1985
|
social_links?: string[] | undefined;
|
|
1911
1986
|
vesting_recipients?: {
|
|
1912
1987
|
address: string;
|
|
1913
|
-
amount
|
|
1988
|
+
amount?: string | undefined;
|
|
1989
|
+
percentage?: number | undefined;
|
|
1914
1990
|
}[] | undefined;
|
|
1915
1991
|
} | null;
|
|
1916
1992
|
token_image_public_url: string | null;
|
|
@@ -1952,7 +2028,7 @@ export declare const rootContract: {
|
|
|
1952
2028
|
social_links?: string[] | undefined;
|
|
1953
2029
|
vesting_recipients?: {
|
|
1954
2030
|
address: string;
|
|
1955
|
-
amount: string;
|
|
2031
|
+
amount: string | undefined;
|
|
1956
2032
|
}[] | undefined;
|
|
1957
2033
|
} | null;
|
|
1958
2034
|
token_image_public_url: string | null;
|
|
@@ -1994,7 +2070,8 @@ export declare const rootContract: {
|
|
|
1994
2070
|
social_links?: string[] | undefined;
|
|
1995
2071
|
vesting_recipients?: {
|
|
1996
2072
|
address: string;
|
|
1997
|
-
amount
|
|
2073
|
+
amount?: string | undefined;
|
|
2074
|
+
percentage?: number | undefined;
|
|
1998
2075
|
}[] | undefined;
|
|
1999
2076
|
} | null;
|
|
2000
2077
|
token_image_public_url: string | null;
|
|
@@ -2024,15 +2101,25 @@ export declare const rootContract: {
|
|
|
2024
2101
|
image_hash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2025
2102
|
fee_receiver: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2026
2103
|
social_links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
2027
|
-
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2104
|
+
vesting_recipients: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
2028
2105
|
address: import("zod").ZodString;
|
|
2029
|
-
amount: import("zod").ZodString
|
|
2106
|
+
amount: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2107
|
+
percentage: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2030
2108
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2031
2109
|
address: string;
|
|
2032
|
-
amount
|
|
2110
|
+
amount?: string | undefined;
|
|
2111
|
+
percentage?: number | undefined;
|
|
2112
|
+
}, {
|
|
2113
|
+
address: string;
|
|
2114
|
+
amount?: string | undefined;
|
|
2115
|
+
percentage?: number | undefined;
|
|
2116
|
+
}>, {
|
|
2117
|
+
address: string;
|
|
2118
|
+
amount: string | undefined;
|
|
2033
2119
|
}, {
|
|
2034
2120
|
address: string;
|
|
2035
|
-
amount
|
|
2121
|
+
amount?: string | undefined;
|
|
2122
|
+
percentage?: number | undefined;
|
|
2036
2123
|
}>, "many">>;
|
|
2037
2124
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2038
2125
|
name?: string | undefined;
|
|
@@ -2042,7 +2129,7 @@ export declare const rootContract: {
|
|
|
2042
2129
|
social_links?: string[] | undefined;
|
|
2043
2130
|
vesting_recipients?: {
|
|
2044
2131
|
address: string;
|
|
2045
|
-
amount: string;
|
|
2132
|
+
amount: string | undefined;
|
|
2046
2133
|
}[] | undefined;
|
|
2047
2134
|
}, {
|
|
2048
2135
|
name?: string | undefined;
|
|
@@ -2052,7 +2139,8 @@ export declare const rootContract: {
|
|
|
2052
2139
|
social_links?: string[] | undefined;
|
|
2053
2140
|
vesting_recipients?: {
|
|
2054
2141
|
address: string;
|
|
2055
|
-
amount
|
|
2142
|
+
amount?: string | undefined;
|
|
2143
|
+
percentage?: number | undefined;
|
|
2056
2144
|
}[] | undefined;
|
|
2057
2145
|
}>>;
|
|
2058
2146
|
token_image_public_url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2073,7 +2161,7 @@ export declare const rootContract: {
|
|
|
2073
2161
|
social_links?: string[] | undefined;
|
|
2074
2162
|
vesting_recipients?: {
|
|
2075
2163
|
address: string;
|
|
2076
|
-
amount: string;
|
|
2164
|
+
amount: string | undefined;
|
|
2077
2165
|
}[] | undefined;
|
|
2078
2166
|
} | null;
|
|
2079
2167
|
token_image_public_url: string | null;
|
|
@@ -2094,7 +2182,8 @@ export declare const rootContract: {
|
|
|
2094
2182
|
social_links?: string[] | undefined;
|
|
2095
2183
|
vesting_recipients?: {
|
|
2096
2184
|
address: string;
|
|
2097
|
-
amount
|
|
2185
|
+
amount?: string | undefined;
|
|
2186
|
+
percentage?: number | undefined;
|
|
2098
2187
|
}[] | undefined;
|
|
2099
2188
|
} | null;
|
|
2100
2189
|
token_image_public_url: string | null;
|
|
@@ -2126,7 +2215,7 @@ export declare const rootContract: {
|
|
|
2126
2215
|
social_links?: string[] | undefined;
|
|
2127
2216
|
vesting_recipients?: {
|
|
2128
2217
|
address: string;
|
|
2129
|
-
amount: string;
|
|
2218
|
+
amount: string | undefined;
|
|
2130
2219
|
}[] | undefined;
|
|
2131
2220
|
} | null;
|
|
2132
2221
|
token_image_public_url: string | null;
|
|
@@ -2158,7 +2247,8 @@ export declare const rootContract: {
|
|
|
2158
2247
|
social_links?: string[] | undefined;
|
|
2159
2248
|
vesting_recipients?: {
|
|
2160
2249
|
address: string;
|
|
2161
|
-
amount
|
|
2250
|
+
amount?: string | undefined;
|
|
2251
|
+
percentage?: number | undefined;
|
|
2162
2252
|
}[] | undefined;
|
|
2163
2253
|
} | null;
|
|
2164
2254
|
token_image_public_url: string | null;
|
|
@@ -2209,7 +2299,7 @@ export declare const rootContract: {
|
|
|
2209
2299
|
social_links?: string[] | undefined;
|
|
2210
2300
|
vesting_recipients?: {
|
|
2211
2301
|
address: string;
|
|
2212
|
-
amount: string;
|
|
2302
|
+
amount: string | undefined;
|
|
2213
2303
|
}[] | undefined;
|
|
2214
2304
|
} | null;
|
|
2215
2305
|
token_image_public_url: string | null;
|
|
@@ -2241,7 +2331,7 @@ export declare const rootContract: {
|
|
|
2241
2331
|
social_links?: string[] | undefined;
|
|
2242
2332
|
vesting_recipients?: {
|
|
2243
2333
|
address: string;
|
|
2244
|
-
amount: string;
|
|
2334
|
+
amount: string | undefined;
|
|
2245
2335
|
}[] | undefined;
|
|
2246
2336
|
} | null;
|
|
2247
2337
|
token_image_public_url: string | null;
|
|
@@ -2291,7 +2381,8 @@ export declare const rootContract: {
|
|
|
2291
2381
|
social_links?: string[] | undefined;
|
|
2292
2382
|
vesting_recipients?: {
|
|
2293
2383
|
address: string;
|
|
2294
|
-
amount
|
|
2384
|
+
amount?: string | undefined;
|
|
2385
|
+
percentage?: number | undefined;
|
|
2295
2386
|
}[] | undefined;
|
|
2296
2387
|
} | null;
|
|
2297
2388
|
token_image_public_url: string | null;
|
|
@@ -2323,7 +2414,8 @@ export declare const rootContract: {
|
|
|
2323
2414
|
social_links?: string[] | undefined;
|
|
2324
2415
|
vesting_recipients?: {
|
|
2325
2416
|
address: string;
|
|
2326
|
-
amount
|
|
2417
|
+
amount?: string | undefined;
|
|
2418
|
+
percentage?: number | undefined;
|
|
2327
2419
|
}[] | undefined;
|
|
2328
2420
|
} | null;
|
|
2329
2421
|
token_image_public_url: string | null;
|
|
@@ -2375,7 +2467,7 @@ export declare const rootContract: {
|
|
|
2375
2467
|
social_links?: string[] | undefined;
|
|
2376
2468
|
vesting_recipients?: {
|
|
2377
2469
|
address: string;
|
|
2378
|
-
amount: string;
|
|
2470
|
+
amount: string | undefined;
|
|
2379
2471
|
}[] | undefined;
|
|
2380
2472
|
} | null;
|
|
2381
2473
|
token_image_public_url: string | null;
|
|
@@ -2407,7 +2499,7 @@ export declare const rootContract: {
|
|
|
2407
2499
|
social_links?: string[] | undefined;
|
|
2408
2500
|
vesting_recipients?: {
|
|
2409
2501
|
address: string;
|
|
2410
|
-
amount: string;
|
|
2502
|
+
amount: string | undefined;
|
|
2411
2503
|
}[] | undefined;
|
|
2412
2504
|
} | null;
|
|
2413
2505
|
token_image_public_url: string | null;
|
|
@@ -2457,7 +2549,8 @@ export declare const rootContract: {
|
|
|
2457
2549
|
social_links?: string[] | undefined;
|
|
2458
2550
|
vesting_recipients?: {
|
|
2459
2551
|
address: string;
|
|
2460
|
-
amount
|
|
2552
|
+
amount?: string | undefined;
|
|
2553
|
+
percentage?: number | undefined;
|
|
2461
2554
|
}[] | undefined;
|
|
2462
2555
|
} | null;
|
|
2463
2556
|
token_image_public_url: string | null;
|
|
@@ -2489,7 +2582,8 @@ export declare const rootContract: {
|
|
|
2489
2582
|
social_links?: string[] | undefined;
|
|
2490
2583
|
vesting_recipients?: {
|
|
2491
2584
|
address: string;
|
|
2492
|
-
amount
|
|
2585
|
+
amount?: string | undefined;
|
|
2586
|
+
percentage?: number | undefined;
|
|
2493
2587
|
}[] | undefined;
|
|
2494
2588
|
} | null;
|
|
2495
2589
|
token_image_public_url: string | null;
|
|
@@ -2543,7 +2637,7 @@ export declare const rootContract: {
|
|
|
2543
2637
|
social_links?: string[] | undefined;
|
|
2544
2638
|
vesting_recipients?: {
|
|
2545
2639
|
address: string;
|
|
2546
|
-
amount: string;
|
|
2640
|
+
amount: string | undefined;
|
|
2547
2641
|
}[] | undefined;
|
|
2548
2642
|
} | null;
|
|
2549
2643
|
token_image_public_url: string | null;
|
|
@@ -2575,7 +2669,7 @@ export declare const rootContract: {
|
|
|
2575
2669
|
social_links?: string[] | undefined;
|
|
2576
2670
|
vesting_recipients?: {
|
|
2577
2671
|
address: string;
|
|
2578
|
-
amount: string;
|
|
2672
|
+
amount: string | undefined;
|
|
2579
2673
|
}[] | undefined;
|
|
2580
2674
|
} | null;
|
|
2581
2675
|
token_image_public_url: string | null;
|
|
@@ -2627,7 +2721,8 @@ export declare const rootContract: {
|
|
|
2627
2721
|
social_links?: string[] | undefined;
|
|
2628
2722
|
vesting_recipients?: {
|
|
2629
2723
|
address: string;
|
|
2630
|
-
amount
|
|
2724
|
+
amount?: string | undefined;
|
|
2725
|
+
percentage?: number | undefined;
|
|
2631
2726
|
}[] | undefined;
|
|
2632
2727
|
} | null;
|
|
2633
2728
|
token_image_public_url: string | null;
|
|
@@ -2659,7 +2754,8 @@ export declare const rootContract: {
|
|
|
2659
2754
|
social_links?: string[] | undefined;
|
|
2660
2755
|
vesting_recipients?: {
|
|
2661
2756
|
address: string;
|
|
2662
|
-
amount
|
|
2757
|
+
amount?: string | undefined;
|
|
2758
|
+
percentage?: number | undefined;
|
|
2663
2759
|
}[] | undefined;
|
|
2664
2760
|
} | null;
|
|
2665
2761
|
token_image_public_url: string | null;
|