wowok_agent 2.1.9 → 2.1.17

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.
@@ -1,7 +1,1238 @@
1
- export declare const RecipientGuardIdentifierSchema: any;
2
- export declare const RecipientEntitySchema: any;
3
- export declare const RecipientSignerSchema: any;
4
- export declare const RewardRecordSchema: any;
5
- export declare const RecipientRecordSchema: any;
6
- export declare const CallReward_DataSchema: any;
7
- export declare const CallReward_InputSchema: any;
1
+ import { z } from "zod";
2
+ export declare const RecipientGuardIdentifierSchema: z.ZodObject<{
3
+ type: z.ZodLiteral<"GuardIdentifier">;
4
+ GuardIdentifier: z.ZodNumber;
5
+ }, "strict", z.ZodTypeAny, {
6
+ type: "GuardIdentifier";
7
+ GuardIdentifier: number;
8
+ }, {
9
+ type: "GuardIdentifier";
10
+ GuardIdentifier: number;
11
+ }>;
12
+ export declare const RecipientEntitySchema: z.ZodObject<{
13
+ type: z.ZodLiteral<"Entity">;
14
+ Entity: z.ZodEffects<z.ZodString, string, string>;
15
+ }, "strict", z.ZodTypeAny, {
16
+ type: "Entity";
17
+ Entity: string;
18
+ }, {
19
+ type: "Entity";
20
+ Entity: string;
21
+ }>;
22
+ export declare const RecipientSignerSchema: z.ZodObject<{
23
+ type: z.ZodLiteral<"Signer">;
24
+ Signer: z.ZodBoolean;
25
+ }, "strict", z.ZodTypeAny, {
26
+ type: "Signer";
27
+ Signer: boolean;
28
+ }, {
29
+ type: "Signer";
30
+ Signer: boolean;
31
+ }>;
32
+ export declare const RewardRecordSchema: z.ZodObject<{
33
+ amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
34
+ time: z.ZodNumber;
35
+ }, "strict", z.ZodTypeAny, {
36
+ time: number;
37
+ amount: string | number;
38
+ }, {
39
+ time: number;
40
+ amount: string | number;
41
+ }>;
42
+ export declare const RecipientRecordSchema: z.ZodObject<{
43
+ guard: z.ZodEffects<z.ZodString, string, string>;
44
+ total: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
45
+ amount: z.ZodArray<z.ZodObject<{
46
+ amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
47
+ time: z.ZodNumber;
48
+ }, "strict", z.ZodTypeAny, {
49
+ time: number;
50
+ amount: string | number;
51
+ }, {
52
+ time: number;
53
+ amount: string | number;
54
+ }>, "many">;
55
+ }, "strict", z.ZodTypeAny, {
56
+ amount: {
57
+ time: number;
58
+ amount: string | number;
59
+ }[];
60
+ guard: string;
61
+ total: string | number;
62
+ }, {
63
+ amount: {
64
+ time: number;
65
+ amount: string | number;
66
+ }[];
67
+ guard: string;
68
+ total: string | number;
69
+ }>;
70
+ export declare const CallReward_DataSchema: z.ZodObject<{
71
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
72
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
73
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
74
+ onChain: z.ZodOptional<z.ZodBoolean>;
75
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
76
+ } & {
77
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
78
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
79
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
80
+ onChain: z.ZodOptional<z.ZodBoolean>;
81
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
82
+ } & {
83
+ description: z.ZodOptional<z.ZodString>;
84
+ }, "strict", z.ZodTypeAny, {
85
+ name?: string | undefined;
86
+ description?: string | undefined;
87
+ replaceExistName?: boolean | undefined;
88
+ tags?: string[] | undefined;
89
+ onChain?: boolean | undefined;
90
+ }, {
91
+ name?: string | undefined;
92
+ description?: string | undefined;
93
+ replaceExistName?: boolean | undefined;
94
+ tags?: string[] | undefined;
95
+ onChain?: boolean | undefined;
96
+ }>]>>;
97
+ } & {
98
+ type_parameter: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
99
+ }, "strict", z.ZodTypeAny, {
100
+ type_parameter: string;
101
+ name?: string | undefined;
102
+ replaceExistName?: boolean | undefined;
103
+ tags?: string[] | undefined;
104
+ onChain?: boolean | undefined;
105
+ permission?: string | {
106
+ name?: string | undefined;
107
+ description?: string | undefined;
108
+ replaceExistName?: boolean | undefined;
109
+ tags?: string[] | undefined;
110
+ onChain?: boolean | undefined;
111
+ } | undefined;
112
+ }, {
113
+ name?: string | undefined;
114
+ replaceExistName?: boolean | undefined;
115
+ tags?: string[] | undefined;
116
+ onChain?: boolean | undefined;
117
+ type_parameter?: string | undefined;
118
+ permission?: string | {
119
+ name?: string | undefined;
120
+ description?: string | undefined;
121
+ replaceExistName?: boolean | undefined;
122
+ tags?: string[] | undefined;
123
+ onChain?: boolean | undefined;
124
+ } | undefined;
125
+ }>]>;
126
+ claim: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
127
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
128
+ coin_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
129
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
130
+ }, "strip", z.ZodTypeAny, {
131
+ balance: string | number;
132
+ }, {
133
+ balance: string | number;
134
+ }>, z.ZodObject<{
135
+ coin: z.ZodString;
136
+ }, "strip", z.ZodTypeAny, {
137
+ coin: string;
138
+ }, {
139
+ coin: string;
140
+ }>]>>;
141
+ receive: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
142
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
143
+ token_type: z.ZodEffects<z.ZodString, string, string>;
144
+ received: z.ZodArray<z.ZodObject<{
145
+ id: z.ZodString;
146
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
147
+ payment: z.ZodString;
148
+ }, "strict", z.ZodTypeAny, {
149
+ id: string;
150
+ balance: string | number;
151
+ payment: string;
152
+ }, {
153
+ id: string;
154
+ balance: string | number;
155
+ payment: string;
156
+ }>, "many">;
157
+ }, "strict", z.ZodTypeAny, {
158
+ received: {
159
+ id: string;
160
+ balance: string | number;
161
+ payment: string;
162
+ }[];
163
+ balance: string | number;
164
+ token_type: string;
165
+ }, {
166
+ received: {
167
+ id: string;
168
+ balance: string | number;
169
+ payment: string;
170
+ }[];
171
+ balance: string | number;
172
+ token_type: string;
173
+ }>, z.ZodLiteral<"recently">]>>;
174
+ guard_add: z.ZodOptional<z.ZodArray<z.ZodObject<{
175
+ guard: z.ZodEffects<z.ZodString, string, string>;
176
+ recipient: z.ZodUnion<[z.ZodObject<{
177
+ GuardIdentifier: z.ZodNumber;
178
+ }, "strip", z.ZodTypeAny, {
179
+ GuardIdentifier: number;
180
+ }, {
181
+ GuardIdentifier: number;
182
+ }>, z.ZodObject<{
183
+ Entity: z.ZodObject<{
184
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
185
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
186
+ }, "strict", z.ZodTypeAny, {
187
+ name_or_address?: string | undefined;
188
+ local_mark_first?: boolean | undefined;
189
+ }, {
190
+ name_or_address?: string | undefined;
191
+ local_mark_first?: boolean | undefined;
192
+ }>;
193
+ }, "strip", z.ZodTypeAny, {
194
+ Entity: {
195
+ name_or_address?: string | undefined;
196
+ local_mark_first?: boolean | undefined;
197
+ };
198
+ }, {
199
+ Entity: {
200
+ name_or_address?: string | undefined;
201
+ local_mark_first?: boolean | undefined;
202
+ };
203
+ }>, z.ZodObject<{
204
+ Signer: z.ZodLiteral<"signer">;
205
+ }, "strip", z.ZodTypeAny, {
206
+ Signer: "signer";
207
+ }, {
208
+ Signer: "signer";
209
+ }>]>;
210
+ amount: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
211
+ type: z.ZodLiteral<"GuardU64Identifier">;
212
+ value: z.ZodNumber;
213
+ }, "strip", z.ZodTypeAny, {
214
+ value: number;
215
+ type: "GuardU64Identifier";
216
+ }, {
217
+ value: number;
218
+ type: "GuardU64Identifier";
219
+ }>, z.ZodObject<{
220
+ type: z.ZodLiteral<"Fixed">;
221
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
222
+ }, "strip", z.ZodTypeAny, {
223
+ value: string | number;
224
+ type: "Fixed";
225
+ }, {
226
+ value: string | number;
227
+ type: "Fixed";
228
+ }>]>;
229
+ expiration_time: z.ZodOptional<z.ZodNumber>;
230
+ }, "strip", z.ZodTypeAny, {
231
+ amount: {
232
+ value: number;
233
+ type: "GuardU64Identifier";
234
+ } | {
235
+ value: string | number;
236
+ type: "Fixed";
237
+ };
238
+ recipient: {
239
+ GuardIdentifier: number;
240
+ } | {
241
+ Entity: {
242
+ name_or_address?: string | undefined;
243
+ local_mark_first?: boolean | undefined;
244
+ };
245
+ } | {
246
+ Signer: "signer";
247
+ };
248
+ guard: string;
249
+ expiration_time?: number | undefined;
250
+ }, {
251
+ amount: {
252
+ value: number;
253
+ type: "GuardU64Identifier";
254
+ } | {
255
+ value: string | number;
256
+ type: "Fixed";
257
+ };
258
+ recipient: {
259
+ GuardIdentifier: number;
260
+ } | {
261
+ Entity: {
262
+ name_or_address?: string | undefined;
263
+ local_mark_first?: boolean | undefined;
264
+ };
265
+ } | {
266
+ Signer: "signer";
267
+ };
268
+ guard: string;
269
+ expiration_time?: number | undefined;
270
+ }>, "many">>;
271
+ guard_remove_expired: z.ZodOptional<z.ZodBoolean>;
272
+ guard_expiration_time: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
273
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
274
+ id: z.ZodString;
275
+ type: z.ZodString;
276
+ }, "strict", z.ZodTypeAny, {
277
+ type: string;
278
+ id: string;
279
+ }, {
280
+ type: string;
281
+ id: string;
282
+ }>, "many">, z.ZodObject<{
283
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
284
+ token_type: z.ZodEffects<z.ZodString, string, string>;
285
+ received: z.ZodArray<z.ZodObject<{
286
+ id: z.ZodString;
287
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
288
+ payment: z.ZodString;
289
+ }, "strict", z.ZodTypeAny, {
290
+ id: string;
291
+ balance: string | number;
292
+ payment: string;
293
+ }, {
294
+ id: string;
295
+ balance: string | number;
296
+ payment: string;
297
+ }>, "many">;
298
+ }, "strict", z.ZodTypeAny, {
299
+ received: {
300
+ id: string;
301
+ balance: string | number;
302
+ payment: string;
303
+ }[];
304
+ balance: string | number;
305
+ token_type: string;
306
+ }, {
307
+ received: {
308
+ id: string;
309
+ balance: string | number;
310
+ payment: string;
311
+ }[];
312
+ balance: string | number;
313
+ token_type: string;
314
+ }>, z.ZodLiteral<"recently">]>>;
315
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
316
+ }, "strict", z.ZodTypeAny, {
317
+ object: string | {
318
+ type_parameter: string;
319
+ name?: string | undefined;
320
+ replaceExistName?: boolean | undefined;
321
+ tags?: string[] | undefined;
322
+ onChain?: boolean | undefined;
323
+ permission?: string | {
324
+ name?: string | undefined;
325
+ description?: string | undefined;
326
+ replaceExistName?: boolean | undefined;
327
+ tags?: string[] | undefined;
328
+ onChain?: boolean | undefined;
329
+ } | undefined;
330
+ };
331
+ description?: string | undefined;
332
+ owner_receive?: {
333
+ received: {
334
+ id: string;
335
+ balance: string | number;
336
+ payment: string;
337
+ }[];
338
+ balance: string | number;
339
+ token_type: string;
340
+ } | "recently" | {
341
+ type: string;
342
+ id: string;
343
+ }[] | undefined;
344
+ um?: string | null | undefined;
345
+ receive?: {
346
+ received: {
347
+ id: string;
348
+ balance: string | number;
349
+ payment: string;
350
+ }[];
351
+ balance: string | number;
352
+ token_type: string;
353
+ } | "recently" | undefined;
354
+ claim?: string | undefined;
355
+ coin_add?: {
356
+ balance: string | number;
357
+ } | {
358
+ coin: string;
359
+ } | undefined;
360
+ guard_add?: {
361
+ amount: {
362
+ value: number;
363
+ type: "GuardU64Identifier";
364
+ } | {
365
+ value: string | number;
366
+ type: "Fixed";
367
+ };
368
+ recipient: {
369
+ GuardIdentifier: number;
370
+ } | {
371
+ Entity: {
372
+ name_or_address?: string | undefined;
373
+ local_mark_first?: boolean | undefined;
374
+ };
375
+ } | {
376
+ Signer: "signer";
377
+ };
378
+ guard: string;
379
+ expiration_time?: number | undefined;
380
+ }[] | undefined;
381
+ guard_remove_expired?: boolean | undefined;
382
+ guard_expiration_time?: number | null | undefined;
383
+ }, {
384
+ object: string | {
385
+ name?: string | undefined;
386
+ replaceExistName?: boolean | undefined;
387
+ tags?: string[] | undefined;
388
+ onChain?: boolean | undefined;
389
+ type_parameter?: string | undefined;
390
+ permission?: string | {
391
+ name?: string | undefined;
392
+ description?: string | undefined;
393
+ replaceExistName?: boolean | undefined;
394
+ tags?: string[] | undefined;
395
+ onChain?: boolean | undefined;
396
+ } | undefined;
397
+ };
398
+ description?: string | undefined;
399
+ owner_receive?: {
400
+ received: {
401
+ id: string;
402
+ balance: string | number;
403
+ payment: string;
404
+ }[];
405
+ balance: string | number;
406
+ token_type: string;
407
+ } | "recently" | {
408
+ type: string;
409
+ id: string;
410
+ }[] | undefined;
411
+ um?: string | null | undefined;
412
+ receive?: {
413
+ received: {
414
+ id: string;
415
+ balance: string | number;
416
+ payment: string;
417
+ }[];
418
+ balance: string | number;
419
+ token_type: string;
420
+ } | "recently" | undefined;
421
+ claim?: string | undefined;
422
+ coin_add?: {
423
+ balance: string | number;
424
+ } | {
425
+ coin: string;
426
+ } | undefined;
427
+ guard_add?: {
428
+ amount: {
429
+ value: number;
430
+ type: "GuardU64Identifier";
431
+ } | {
432
+ value: string | number;
433
+ type: "Fixed";
434
+ };
435
+ recipient: {
436
+ GuardIdentifier: number;
437
+ } | {
438
+ Entity: {
439
+ name_or_address?: string | undefined;
440
+ local_mark_first?: boolean | undefined;
441
+ };
442
+ } | {
443
+ Signer: "signer";
444
+ };
445
+ guard: string;
446
+ expiration_time?: number | undefined;
447
+ }[] | undefined;
448
+ guard_remove_expired?: boolean | undefined;
449
+ guard_expiration_time?: number | null | undefined;
450
+ }>;
451
+ export declare const CallReward_InputSchema: z.ZodObject<{
452
+ data: z.ZodObject<{
453
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
454
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
455
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
456
+ onChain: z.ZodOptional<z.ZodBoolean>;
457
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
458
+ } & {
459
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
460
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
461
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
462
+ onChain: z.ZodOptional<z.ZodBoolean>;
463
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
464
+ } & {
465
+ description: z.ZodOptional<z.ZodString>;
466
+ }, "strict", z.ZodTypeAny, {
467
+ name?: string | undefined;
468
+ description?: string | undefined;
469
+ replaceExistName?: boolean | undefined;
470
+ tags?: string[] | undefined;
471
+ onChain?: boolean | undefined;
472
+ }, {
473
+ name?: string | undefined;
474
+ description?: string | undefined;
475
+ replaceExistName?: boolean | undefined;
476
+ tags?: string[] | undefined;
477
+ onChain?: boolean | undefined;
478
+ }>]>>;
479
+ } & {
480
+ type_parameter: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
481
+ }, "strict", z.ZodTypeAny, {
482
+ type_parameter: string;
483
+ name?: string | undefined;
484
+ replaceExistName?: boolean | undefined;
485
+ tags?: string[] | undefined;
486
+ onChain?: boolean | undefined;
487
+ permission?: string | {
488
+ name?: string | undefined;
489
+ description?: string | undefined;
490
+ replaceExistName?: boolean | undefined;
491
+ tags?: string[] | undefined;
492
+ onChain?: boolean | undefined;
493
+ } | undefined;
494
+ }, {
495
+ name?: string | undefined;
496
+ replaceExistName?: boolean | undefined;
497
+ tags?: string[] | undefined;
498
+ onChain?: boolean | undefined;
499
+ type_parameter?: string | undefined;
500
+ permission?: string | {
501
+ name?: string | undefined;
502
+ description?: string | undefined;
503
+ replaceExistName?: boolean | undefined;
504
+ tags?: string[] | undefined;
505
+ onChain?: boolean | undefined;
506
+ } | undefined;
507
+ }>]>;
508
+ claim: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
509
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
510
+ coin_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
511
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
512
+ }, "strip", z.ZodTypeAny, {
513
+ balance: string | number;
514
+ }, {
515
+ balance: string | number;
516
+ }>, z.ZodObject<{
517
+ coin: z.ZodString;
518
+ }, "strip", z.ZodTypeAny, {
519
+ coin: string;
520
+ }, {
521
+ coin: string;
522
+ }>]>>;
523
+ receive: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
524
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
525
+ token_type: z.ZodEffects<z.ZodString, string, string>;
526
+ received: z.ZodArray<z.ZodObject<{
527
+ id: z.ZodString;
528
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
529
+ payment: z.ZodString;
530
+ }, "strict", z.ZodTypeAny, {
531
+ id: string;
532
+ balance: string | number;
533
+ payment: string;
534
+ }, {
535
+ id: string;
536
+ balance: string | number;
537
+ payment: string;
538
+ }>, "many">;
539
+ }, "strict", z.ZodTypeAny, {
540
+ received: {
541
+ id: string;
542
+ balance: string | number;
543
+ payment: string;
544
+ }[];
545
+ balance: string | number;
546
+ token_type: string;
547
+ }, {
548
+ received: {
549
+ id: string;
550
+ balance: string | number;
551
+ payment: string;
552
+ }[];
553
+ balance: string | number;
554
+ token_type: string;
555
+ }>, z.ZodLiteral<"recently">]>>;
556
+ guard_add: z.ZodOptional<z.ZodArray<z.ZodObject<{
557
+ guard: z.ZodEffects<z.ZodString, string, string>;
558
+ recipient: z.ZodUnion<[z.ZodObject<{
559
+ GuardIdentifier: z.ZodNumber;
560
+ }, "strip", z.ZodTypeAny, {
561
+ GuardIdentifier: number;
562
+ }, {
563
+ GuardIdentifier: number;
564
+ }>, z.ZodObject<{
565
+ Entity: z.ZodObject<{
566
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
567
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
568
+ }, "strict", z.ZodTypeAny, {
569
+ name_or_address?: string | undefined;
570
+ local_mark_first?: boolean | undefined;
571
+ }, {
572
+ name_or_address?: string | undefined;
573
+ local_mark_first?: boolean | undefined;
574
+ }>;
575
+ }, "strip", z.ZodTypeAny, {
576
+ Entity: {
577
+ name_or_address?: string | undefined;
578
+ local_mark_first?: boolean | undefined;
579
+ };
580
+ }, {
581
+ Entity: {
582
+ name_or_address?: string | undefined;
583
+ local_mark_first?: boolean | undefined;
584
+ };
585
+ }>, z.ZodObject<{
586
+ Signer: z.ZodLiteral<"signer">;
587
+ }, "strip", z.ZodTypeAny, {
588
+ Signer: "signer";
589
+ }, {
590
+ Signer: "signer";
591
+ }>]>;
592
+ amount: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
593
+ type: z.ZodLiteral<"GuardU64Identifier">;
594
+ value: z.ZodNumber;
595
+ }, "strip", z.ZodTypeAny, {
596
+ value: number;
597
+ type: "GuardU64Identifier";
598
+ }, {
599
+ value: number;
600
+ type: "GuardU64Identifier";
601
+ }>, z.ZodObject<{
602
+ type: z.ZodLiteral<"Fixed">;
603
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
604
+ }, "strip", z.ZodTypeAny, {
605
+ value: string | number;
606
+ type: "Fixed";
607
+ }, {
608
+ value: string | number;
609
+ type: "Fixed";
610
+ }>]>;
611
+ expiration_time: z.ZodOptional<z.ZodNumber>;
612
+ }, "strip", z.ZodTypeAny, {
613
+ amount: {
614
+ value: number;
615
+ type: "GuardU64Identifier";
616
+ } | {
617
+ value: string | number;
618
+ type: "Fixed";
619
+ };
620
+ recipient: {
621
+ GuardIdentifier: number;
622
+ } | {
623
+ Entity: {
624
+ name_or_address?: string | undefined;
625
+ local_mark_first?: boolean | undefined;
626
+ };
627
+ } | {
628
+ Signer: "signer";
629
+ };
630
+ guard: string;
631
+ expiration_time?: number | undefined;
632
+ }, {
633
+ amount: {
634
+ value: number;
635
+ type: "GuardU64Identifier";
636
+ } | {
637
+ value: string | number;
638
+ type: "Fixed";
639
+ };
640
+ recipient: {
641
+ GuardIdentifier: number;
642
+ } | {
643
+ Entity: {
644
+ name_or_address?: string | undefined;
645
+ local_mark_first?: boolean | undefined;
646
+ };
647
+ } | {
648
+ Signer: "signer";
649
+ };
650
+ guard: string;
651
+ expiration_time?: number | undefined;
652
+ }>, "many">>;
653
+ guard_remove_expired: z.ZodOptional<z.ZodBoolean>;
654
+ guard_expiration_time: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
655
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
656
+ id: z.ZodString;
657
+ type: z.ZodString;
658
+ }, "strict", z.ZodTypeAny, {
659
+ type: string;
660
+ id: string;
661
+ }, {
662
+ type: string;
663
+ id: string;
664
+ }>, "many">, z.ZodObject<{
665
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
666
+ token_type: z.ZodEffects<z.ZodString, string, string>;
667
+ received: z.ZodArray<z.ZodObject<{
668
+ id: z.ZodString;
669
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
670
+ payment: z.ZodString;
671
+ }, "strict", z.ZodTypeAny, {
672
+ id: string;
673
+ balance: string | number;
674
+ payment: string;
675
+ }, {
676
+ id: string;
677
+ balance: string | number;
678
+ payment: string;
679
+ }>, "many">;
680
+ }, "strict", z.ZodTypeAny, {
681
+ received: {
682
+ id: string;
683
+ balance: string | number;
684
+ payment: string;
685
+ }[];
686
+ balance: string | number;
687
+ token_type: string;
688
+ }, {
689
+ received: {
690
+ id: string;
691
+ balance: string | number;
692
+ payment: string;
693
+ }[];
694
+ balance: string | number;
695
+ token_type: string;
696
+ }>, z.ZodLiteral<"recently">]>>;
697
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
698
+ }, "strict", z.ZodTypeAny, {
699
+ object: string | {
700
+ type_parameter: string;
701
+ name?: string | undefined;
702
+ replaceExistName?: boolean | undefined;
703
+ tags?: string[] | undefined;
704
+ onChain?: boolean | undefined;
705
+ permission?: string | {
706
+ name?: string | undefined;
707
+ description?: string | undefined;
708
+ replaceExistName?: boolean | undefined;
709
+ tags?: string[] | undefined;
710
+ onChain?: boolean | undefined;
711
+ } | undefined;
712
+ };
713
+ description?: string | undefined;
714
+ owner_receive?: {
715
+ received: {
716
+ id: string;
717
+ balance: string | number;
718
+ payment: string;
719
+ }[];
720
+ balance: string | number;
721
+ token_type: string;
722
+ } | "recently" | {
723
+ type: string;
724
+ id: string;
725
+ }[] | undefined;
726
+ um?: string | null | undefined;
727
+ receive?: {
728
+ received: {
729
+ id: string;
730
+ balance: string | number;
731
+ payment: string;
732
+ }[];
733
+ balance: string | number;
734
+ token_type: string;
735
+ } | "recently" | undefined;
736
+ claim?: string | undefined;
737
+ coin_add?: {
738
+ balance: string | number;
739
+ } | {
740
+ coin: string;
741
+ } | undefined;
742
+ guard_add?: {
743
+ amount: {
744
+ value: number;
745
+ type: "GuardU64Identifier";
746
+ } | {
747
+ value: string | number;
748
+ type: "Fixed";
749
+ };
750
+ recipient: {
751
+ GuardIdentifier: number;
752
+ } | {
753
+ Entity: {
754
+ name_or_address?: string | undefined;
755
+ local_mark_first?: boolean | undefined;
756
+ };
757
+ } | {
758
+ Signer: "signer";
759
+ };
760
+ guard: string;
761
+ expiration_time?: number | undefined;
762
+ }[] | undefined;
763
+ guard_remove_expired?: boolean | undefined;
764
+ guard_expiration_time?: number | null | undefined;
765
+ }, {
766
+ object: string | {
767
+ name?: string | undefined;
768
+ replaceExistName?: boolean | undefined;
769
+ tags?: string[] | undefined;
770
+ onChain?: boolean | undefined;
771
+ type_parameter?: string | undefined;
772
+ permission?: string | {
773
+ name?: string | undefined;
774
+ description?: string | undefined;
775
+ replaceExistName?: boolean | undefined;
776
+ tags?: string[] | undefined;
777
+ onChain?: boolean | undefined;
778
+ } | undefined;
779
+ };
780
+ description?: string | undefined;
781
+ owner_receive?: {
782
+ received: {
783
+ id: string;
784
+ balance: string | number;
785
+ payment: string;
786
+ }[];
787
+ balance: string | number;
788
+ token_type: string;
789
+ } | "recently" | {
790
+ type: string;
791
+ id: string;
792
+ }[] | undefined;
793
+ um?: string | null | undefined;
794
+ receive?: {
795
+ received: {
796
+ id: string;
797
+ balance: string | number;
798
+ payment: string;
799
+ }[];
800
+ balance: string | number;
801
+ token_type: string;
802
+ } | "recently" | undefined;
803
+ claim?: string | undefined;
804
+ coin_add?: {
805
+ balance: string | number;
806
+ } | {
807
+ coin: string;
808
+ } | undefined;
809
+ guard_add?: {
810
+ amount: {
811
+ value: number;
812
+ type: "GuardU64Identifier";
813
+ } | {
814
+ value: string | number;
815
+ type: "Fixed";
816
+ };
817
+ recipient: {
818
+ GuardIdentifier: number;
819
+ } | {
820
+ Entity: {
821
+ name_or_address?: string | undefined;
822
+ local_mark_first?: boolean | undefined;
823
+ };
824
+ } | {
825
+ Signer: "signer";
826
+ };
827
+ guard: string;
828
+ expiration_time?: number | undefined;
829
+ }[] | undefined;
830
+ guard_remove_expired?: boolean | undefined;
831
+ guard_expiration_time?: number | null | undefined;
832
+ }>;
833
+ env: z.ZodOptional<z.ZodObject<{
834
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
835
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
836
+ no_cache: z.ZodOptional<z.ZodBoolean>;
837
+ network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
838
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
839
+ }, "strict", z.ZodTypeAny, {
840
+ account: string;
841
+ no_cache?: boolean | undefined;
842
+ network?: import("wowok").ENTRYPOINT | undefined;
843
+ permission_guard?: string[] | undefined;
844
+ referrer?: string | undefined;
845
+ }, {
846
+ no_cache?: boolean | undefined;
847
+ network?: import("wowok").ENTRYPOINT | undefined;
848
+ account?: string | undefined;
849
+ permission_guard?: string[] | undefined;
850
+ referrer?: string | undefined;
851
+ }>>;
852
+ submission: z.ZodOptional<z.ZodObject<{
853
+ type: z.ZodLiteral<"submission">;
854
+ guard: z.ZodArray<z.ZodObject<{
855
+ object: z.ZodEffects<z.ZodString, string, string>;
856
+ impack: z.ZodBoolean;
857
+ }, "strict", z.ZodTypeAny, {
858
+ object: string;
859
+ impack: boolean;
860
+ }, {
861
+ object: string;
862
+ impack: boolean;
863
+ }>, "many">;
864
+ submission: z.ZodArray<z.ZodObject<{
865
+ guard: z.ZodEffects<z.ZodString, string, string>;
866
+ submission: z.ZodArray<z.ZodObject<{
867
+ identifier: z.ZodNumber;
868
+ b_submission: z.ZodBoolean;
869
+ value_type: z.ZodUnion<[z.ZodLiteral<import("wowok").ValueType.Bool>, z.ZodLiteral<import("wowok").ValueType.Address>, z.ZodLiteral<import("wowok").ValueType.String>, z.ZodLiteral<import("wowok").ValueType.U8>, z.ZodLiteral<import("wowok").ValueType.U16>, z.ZodLiteral<import("wowok").ValueType.U32>, z.ZodLiteral<import("wowok").ValueType.U64>, z.ZodLiteral<import("wowok").ValueType.U128>, z.ZodLiteral<import("wowok").ValueType.U256>, z.ZodLiteral<import("wowok").ValueType.VecBool>, z.ZodLiteral<import("wowok").ValueType.VecAddress>, z.ZodLiteral<import("wowok").ValueType.VecString>, z.ZodLiteral<import("wowok").ValueType.VecU8>, z.ZodLiteral<import("wowok").ValueType.VecU16>, z.ZodLiteral<import("wowok").ValueType.VecU32>, z.ZodLiteral<import("wowok").ValueType.VecU64>, z.ZodLiteral<import("wowok").ValueType.VecU128>, z.ZodLiteral<import("wowok").ValueType.VecU256>, z.ZodLiteral<import("wowok").ValueType.VecVecU8>, z.ZodLiteral<"Bool">, z.ZodLiteral<"Address">, z.ZodLiteral<"String">, z.ZodLiteral<"U8">, z.ZodLiteral<"U16">, z.ZodLiteral<"U32">, z.ZodLiteral<"U64">, z.ZodLiteral<"U128">, z.ZodLiteral<"U256">, z.ZodLiteral<"VecBool">, z.ZodLiteral<"VecAddress">, z.ZodLiteral<"VecString">, z.ZodLiteral<"VecU8">, z.ZodLiteral<"VecU16">, z.ZodLiteral<"VecU32">, z.ZodLiteral<"VecU64">, z.ZodLiteral<"VecU128">, z.ZodLiteral<"VecU256">, z.ZodLiteral<"VecVecU8">, z.ZodLiteral<"bool">, z.ZodLiteral<"address">, z.ZodLiteral<"string">, z.ZodLiteral<"u8">, z.ZodLiteral<"u16">, z.ZodLiteral<"u32">, z.ZodLiteral<"u64">, z.ZodLiteral<"u128">, z.ZodLiteral<"u256">, z.ZodLiteral<"vecbool">, z.ZodLiteral<"vecaddress">, z.ZodLiteral<"vecstring">, z.ZodLiteral<"vecu8">, z.ZodLiteral<"vecu16">, z.ZodLiteral<"vecu32">, z.ZodLiteral<"vecu64">, z.ZodLiteral<"vecu128">, z.ZodLiteral<"vecu256">, z.ZodLiteral<"vecvecu8">]>;
870
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
871
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
872
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
873
+ }, "strict", z.ZodTypeAny, {
874
+ name_or_address?: string | undefined;
875
+ local_mark_first?: boolean | undefined;
876
+ }, {
877
+ name_or_address?: string | undefined;
878
+ local_mark_first?: boolean | undefined;
879
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
880
+ entities: z.ZodArray<z.ZodObject<{
881
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
882
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
883
+ }, "strict", z.ZodTypeAny, {
884
+ name_or_address?: string | undefined;
885
+ local_mark_first?: boolean | undefined;
886
+ }, {
887
+ name_or_address?: string | undefined;
888
+ local_mark_first?: boolean | undefined;
889
+ }>, "many">;
890
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
891
+ }, "strict", z.ZodTypeAny, {
892
+ entities: {
893
+ name_or_address?: string | undefined;
894
+ local_mark_first?: boolean | undefined;
895
+ }[];
896
+ check_all_founded?: boolean | undefined;
897
+ }, {
898
+ entities: {
899
+ name_or_address?: string | undefined;
900
+ local_mark_first?: boolean | undefined;
901
+ }[];
902
+ check_all_founded?: boolean | undefined;
903
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
904
+ name: z.ZodDefault<z.ZodString>;
905
+ } & {
906
+ object_type: z.ZodOptional<z.ZodEnum<[import("wowok").ObjectType.Permission, import("wowok").ObjectType.Repository, import("wowok").ObjectType.Arb, import("wowok").ObjectType.Arbitration, import("wowok").ObjectType.Service, import("wowok").ObjectType.Machine, import("wowok").ObjectType.Order, import("wowok").ObjectType.Progress, import("wowok").ObjectType.Payment, import("wowok").ObjectType.Treasury, import("wowok").ObjectType.Guard, import("wowok").ObjectType.Demand, import("wowok").ObjectType.Passport, import("wowok").ObjectType.Allocation, import("wowok").ObjectType.Resource, import("wowok").ObjectType.Reward, import("wowok").ObjectType.Discount, import("wowok").ObjectType.EntityRegistrar, import("wowok").ObjectType.EntityLinker, import("wowok").ObjectType.Proof, import("wowok").ObjectType.WReceivedObject, import("wowok").ObjectType.Contact, import("wowok").ObjectType.TableItem_ProgressHistory, import("wowok").ObjectType.TableItem_PermissionPerm, import("wowok").ObjectType.TableItem_DemandPresenter, import("wowok").ObjectType.TableItem_MachineNode, import("wowok").ObjectType.TableItem_TreasuryHistory, import("wowok").ObjectType.TableItem_RepositoryData, import("wowok").ObjectType.TableItem_RewardRecord, import("wowok").ObjectType.TableItem_EntityLinker, import("wowok").ObjectType.TableItem_AddressMark, import("wowok").ObjectType.TableItem_EntityRegistrar]>>;
907
+ }, "strict", z.ZodTypeAny, {
908
+ identifier: number;
909
+ b_submission: boolean;
910
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
911
+ name: string;
912
+ value?: string | number | boolean | {
913
+ name_or_address?: string | undefined;
914
+ local_mark_first?: boolean | undefined;
915
+ } | {
916
+ entities: {
917
+ name_or_address?: string | undefined;
918
+ local_mark_first?: boolean | undefined;
919
+ }[];
920
+ check_all_founded?: boolean | undefined;
921
+ } | boolean[] | string[] | number[] | number[][] | undefined;
922
+ object_type?: import("wowok").ObjectType | undefined;
923
+ }, {
924
+ identifier: number;
925
+ b_submission: boolean;
926
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
927
+ value?: string | number | boolean | {
928
+ name_or_address?: string | undefined;
929
+ local_mark_first?: boolean | undefined;
930
+ } | {
931
+ entities: {
932
+ name_or_address?: string | undefined;
933
+ local_mark_first?: boolean | undefined;
934
+ }[];
935
+ check_all_founded?: boolean | undefined;
936
+ } | boolean[] | string[] | number[] | number[][] | undefined;
937
+ name?: string | undefined;
938
+ object_type?: import("wowok").ObjectType | undefined;
939
+ }>, "many">;
940
+ }, "strict", z.ZodTypeAny, {
941
+ guard: string;
942
+ submission: {
943
+ identifier: number;
944
+ b_submission: boolean;
945
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
946
+ name: string;
947
+ value?: string | number | boolean | {
948
+ name_or_address?: string | undefined;
949
+ local_mark_first?: boolean | undefined;
950
+ } | {
951
+ entities: {
952
+ name_or_address?: string | undefined;
953
+ local_mark_first?: boolean | undefined;
954
+ }[];
955
+ check_all_founded?: boolean | undefined;
956
+ } | boolean[] | string[] | number[] | number[][] | undefined;
957
+ object_type?: import("wowok").ObjectType | undefined;
958
+ }[];
959
+ }, {
960
+ guard: string;
961
+ submission: {
962
+ identifier: number;
963
+ b_submission: boolean;
964
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
965
+ value?: string | number | boolean | {
966
+ name_or_address?: string | undefined;
967
+ local_mark_first?: boolean | undefined;
968
+ } | {
969
+ entities: {
970
+ name_or_address?: string | undefined;
971
+ local_mark_first?: boolean | undefined;
972
+ }[];
973
+ check_all_founded?: boolean | undefined;
974
+ } | boolean[] | string[] | number[] | number[][] | undefined;
975
+ name?: string | undefined;
976
+ object_type?: import("wowok").ObjectType | undefined;
977
+ }[];
978
+ }>, "many">;
979
+ }, "strict", z.ZodTypeAny, {
980
+ type: "submission";
981
+ guard: {
982
+ object: string;
983
+ impack: boolean;
984
+ }[];
985
+ submission: {
986
+ guard: string;
987
+ submission: {
988
+ identifier: number;
989
+ b_submission: boolean;
990
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
991
+ name: string;
992
+ value?: string | number | boolean | {
993
+ name_or_address?: string | undefined;
994
+ local_mark_first?: boolean | undefined;
995
+ } | {
996
+ entities: {
997
+ name_or_address?: string | undefined;
998
+ local_mark_first?: boolean | undefined;
999
+ }[];
1000
+ check_all_founded?: boolean | undefined;
1001
+ } | boolean[] | string[] | number[] | number[][] | undefined;
1002
+ object_type?: import("wowok").ObjectType | undefined;
1003
+ }[];
1004
+ }[];
1005
+ }, {
1006
+ type: "submission";
1007
+ guard: {
1008
+ object: string;
1009
+ impack: boolean;
1010
+ }[];
1011
+ submission: {
1012
+ guard: string;
1013
+ submission: {
1014
+ identifier: number;
1015
+ b_submission: boolean;
1016
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
1017
+ value?: string | number | boolean | {
1018
+ name_or_address?: string | undefined;
1019
+ local_mark_first?: boolean | undefined;
1020
+ } | {
1021
+ entities: {
1022
+ name_or_address?: string | undefined;
1023
+ local_mark_first?: boolean | undefined;
1024
+ }[];
1025
+ check_all_founded?: boolean | undefined;
1026
+ } | boolean[] | string[] | number[] | number[][] | undefined;
1027
+ name?: string | undefined;
1028
+ object_type?: import("wowok").ObjectType | undefined;
1029
+ }[];
1030
+ }[];
1031
+ }>>;
1032
+ }, "strict", z.ZodTypeAny, {
1033
+ data: {
1034
+ object: string | {
1035
+ type_parameter: string;
1036
+ name?: string | undefined;
1037
+ replaceExistName?: boolean | undefined;
1038
+ tags?: string[] | undefined;
1039
+ onChain?: boolean | undefined;
1040
+ permission?: string | {
1041
+ name?: string | undefined;
1042
+ description?: string | undefined;
1043
+ replaceExistName?: boolean | undefined;
1044
+ tags?: string[] | undefined;
1045
+ onChain?: boolean | undefined;
1046
+ } | undefined;
1047
+ };
1048
+ description?: string | undefined;
1049
+ owner_receive?: {
1050
+ received: {
1051
+ id: string;
1052
+ balance: string | number;
1053
+ payment: string;
1054
+ }[];
1055
+ balance: string | number;
1056
+ token_type: string;
1057
+ } | "recently" | {
1058
+ type: string;
1059
+ id: string;
1060
+ }[] | undefined;
1061
+ um?: string | null | undefined;
1062
+ receive?: {
1063
+ received: {
1064
+ id: string;
1065
+ balance: string | number;
1066
+ payment: string;
1067
+ }[];
1068
+ balance: string | number;
1069
+ token_type: string;
1070
+ } | "recently" | undefined;
1071
+ claim?: string | undefined;
1072
+ coin_add?: {
1073
+ balance: string | number;
1074
+ } | {
1075
+ coin: string;
1076
+ } | undefined;
1077
+ guard_add?: {
1078
+ amount: {
1079
+ value: number;
1080
+ type: "GuardU64Identifier";
1081
+ } | {
1082
+ value: string | number;
1083
+ type: "Fixed";
1084
+ };
1085
+ recipient: {
1086
+ GuardIdentifier: number;
1087
+ } | {
1088
+ Entity: {
1089
+ name_or_address?: string | undefined;
1090
+ local_mark_first?: boolean | undefined;
1091
+ };
1092
+ } | {
1093
+ Signer: "signer";
1094
+ };
1095
+ guard: string;
1096
+ expiration_time?: number | undefined;
1097
+ }[] | undefined;
1098
+ guard_remove_expired?: boolean | undefined;
1099
+ guard_expiration_time?: number | null | undefined;
1100
+ };
1101
+ submission?: {
1102
+ type: "submission";
1103
+ guard: {
1104
+ object: string;
1105
+ impack: boolean;
1106
+ }[];
1107
+ submission: {
1108
+ guard: string;
1109
+ submission: {
1110
+ identifier: number;
1111
+ b_submission: boolean;
1112
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
1113
+ name: string;
1114
+ value?: string | number | boolean | {
1115
+ name_or_address?: string | undefined;
1116
+ local_mark_first?: boolean | undefined;
1117
+ } | {
1118
+ entities: {
1119
+ name_or_address?: string | undefined;
1120
+ local_mark_first?: boolean | undefined;
1121
+ }[];
1122
+ check_all_founded?: boolean | undefined;
1123
+ } | boolean[] | string[] | number[] | number[][] | undefined;
1124
+ object_type?: import("wowok").ObjectType | undefined;
1125
+ }[];
1126
+ }[];
1127
+ } | undefined;
1128
+ env?: {
1129
+ account: string;
1130
+ no_cache?: boolean | undefined;
1131
+ network?: import("wowok").ENTRYPOINT | undefined;
1132
+ permission_guard?: string[] | undefined;
1133
+ referrer?: string | undefined;
1134
+ } | undefined;
1135
+ }, {
1136
+ data: {
1137
+ object: string | {
1138
+ name?: string | undefined;
1139
+ replaceExistName?: boolean | undefined;
1140
+ tags?: string[] | undefined;
1141
+ onChain?: boolean | undefined;
1142
+ type_parameter?: string | undefined;
1143
+ permission?: string | {
1144
+ name?: string | undefined;
1145
+ description?: string | undefined;
1146
+ replaceExistName?: boolean | undefined;
1147
+ tags?: string[] | undefined;
1148
+ onChain?: boolean | undefined;
1149
+ } | undefined;
1150
+ };
1151
+ description?: string | undefined;
1152
+ owner_receive?: {
1153
+ received: {
1154
+ id: string;
1155
+ balance: string | number;
1156
+ payment: string;
1157
+ }[];
1158
+ balance: string | number;
1159
+ token_type: string;
1160
+ } | "recently" | {
1161
+ type: string;
1162
+ id: string;
1163
+ }[] | undefined;
1164
+ um?: string | null | undefined;
1165
+ receive?: {
1166
+ received: {
1167
+ id: string;
1168
+ balance: string | number;
1169
+ payment: string;
1170
+ }[];
1171
+ balance: string | number;
1172
+ token_type: string;
1173
+ } | "recently" | undefined;
1174
+ claim?: string | undefined;
1175
+ coin_add?: {
1176
+ balance: string | number;
1177
+ } | {
1178
+ coin: string;
1179
+ } | undefined;
1180
+ guard_add?: {
1181
+ amount: {
1182
+ value: number;
1183
+ type: "GuardU64Identifier";
1184
+ } | {
1185
+ value: string | number;
1186
+ type: "Fixed";
1187
+ };
1188
+ recipient: {
1189
+ GuardIdentifier: number;
1190
+ } | {
1191
+ Entity: {
1192
+ name_or_address?: string | undefined;
1193
+ local_mark_first?: boolean | undefined;
1194
+ };
1195
+ } | {
1196
+ Signer: "signer";
1197
+ };
1198
+ guard: string;
1199
+ expiration_time?: number | undefined;
1200
+ }[] | undefined;
1201
+ guard_remove_expired?: boolean | undefined;
1202
+ guard_expiration_time?: number | null | undefined;
1203
+ };
1204
+ submission?: {
1205
+ type: "submission";
1206
+ guard: {
1207
+ object: string;
1208
+ impack: boolean;
1209
+ }[];
1210
+ submission: {
1211
+ guard: string;
1212
+ submission: {
1213
+ identifier: number;
1214
+ b_submission: boolean;
1215
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
1216
+ value?: string | number | boolean | {
1217
+ name_or_address?: string | undefined;
1218
+ local_mark_first?: boolean | undefined;
1219
+ } | {
1220
+ entities: {
1221
+ name_or_address?: string | undefined;
1222
+ local_mark_first?: boolean | undefined;
1223
+ }[];
1224
+ check_all_founded?: boolean | undefined;
1225
+ } | boolean[] | string[] | number[] | number[][] | undefined;
1226
+ name?: string | undefined;
1227
+ object_type?: import("wowok").ObjectType | undefined;
1228
+ }[];
1229
+ }[];
1230
+ } | undefined;
1231
+ env?: {
1232
+ no_cache?: boolean | undefined;
1233
+ network?: import("wowok").ENTRYPOINT | undefined;
1234
+ account?: string | undefined;
1235
+ permission_guard?: string[] | undefined;
1236
+ referrer?: string | undefined;
1237
+ } | undefined;
1238
+ }>;