@wowok/agent-mcp 2.2.8

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