@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,1974 @@
1
+ import { z } from "zod";
2
+ export declare const DisputeSchema: z.ZodObject<{
3
+ order: z.ZodEffects<z.ZodString, string, string>;
4
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
5
+ proposition: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
6
+ fee: z.ZodUnion<[z.ZodObject<{
7
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
8
+ }, "strip", z.ZodTypeAny, {
9
+ balance: string | number;
10
+ }, {
11
+ balance: string | number;
12
+ }>, z.ZodObject<{
13
+ coin: z.ZodString;
14
+ }, "strip", z.ZodTypeAny, {
15
+ coin: string;
16
+ }, {
17
+ coin: string;
18
+ }>]>;
19
+ namedArb: z.ZodOptional<z.ZodObject<{
20
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
21
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22
+ onChain: z.ZodOptional<z.ZodBoolean>;
23
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
24
+ }, "strict", z.ZodTypeAny, {
25
+ name?: string | undefined;
26
+ replaceExistName?: boolean | undefined;
27
+ tags?: string[] | undefined;
28
+ onChain?: boolean | undefined;
29
+ }, {
30
+ name?: string | undefined;
31
+ replaceExistName?: boolean | undefined;
32
+ tags?: string[] | undefined;
33
+ onChain?: boolean | undefined;
34
+ }>>;
35
+ }, "strict", z.ZodTypeAny, {
36
+ order: string;
37
+ proposition: string[];
38
+ fee: {
39
+ balance: string | number;
40
+ } | {
41
+ coin: string;
42
+ };
43
+ description?: string | undefined;
44
+ namedArb?: {
45
+ name?: string | undefined;
46
+ replaceExistName?: boolean | undefined;
47
+ tags?: string[] | undefined;
48
+ onChain?: boolean | undefined;
49
+ } | undefined;
50
+ }, {
51
+ order: string;
52
+ proposition: string[];
53
+ fee: {
54
+ balance: string | number;
55
+ } | {
56
+ coin: string;
57
+ };
58
+ description?: string | undefined;
59
+ namedArb?: {
60
+ name?: string | undefined;
61
+ replaceExistName?: boolean | undefined;
62
+ tags?: string[] | undefined;
63
+ onChain?: boolean | undefined;
64
+ } | undefined;
65
+ }>;
66
+ export declare const ConfirmSchema: z.ZodObject<{
67
+ arb: z.ZodEffects<z.ZodString, string, string>;
68
+ voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
69
+ }, "strict", z.ZodTypeAny, {
70
+ voting_deadline: number | null;
71
+ arb: string;
72
+ }, {
73
+ voting_deadline: number | null;
74
+ arb: string;
75
+ }>;
76
+ export declare const VotingDeadlineChangeSchema: z.ZodObject<{
77
+ arb: z.ZodEffects<z.ZodString, string, string>;
78
+ voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
79
+ }, "strict", z.ZodTypeAny, {
80
+ voting_deadline: number | null;
81
+ arb: string;
82
+ }, {
83
+ voting_deadline: number | null;
84
+ arb: string;
85
+ }>;
86
+ export declare const VoteSchema: z.ZodObject<{
87
+ arb: z.ZodEffects<z.ZodString, string, string>;
88
+ votes: z.ZodArray<z.ZodNumber, "many">;
89
+ voting_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
90
+ }, "strict", z.ZodTypeAny, {
91
+ votes: number[];
92
+ arb: string;
93
+ voting_guard?: string | undefined;
94
+ }, {
95
+ votes: number[];
96
+ arb: string;
97
+ voting_guard?: string | undefined;
98
+ }>;
99
+ export declare const FeedbackSchema: z.ZodObject<{
100
+ arb: z.ZodEffects<z.ZodString, string, string>;
101
+ feedback: z.ZodEffects<z.ZodString, string, string>;
102
+ }, "strict", z.ZodTypeAny, {
103
+ feedback: string;
104
+ arb: string;
105
+ }, {
106
+ feedback: string;
107
+ arb: string;
108
+ }>;
109
+ export declare const ArbitrationActionSchema: z.ZodObject<{
110
+ arb: z.ZodEffects<z.ZodString, string, string>;
111
+ feedback: z.ZodEffects<z.ZodString, string, string>;
112
+ indemnity: z.ZodNumber;
113
+ }, "strict", z.ZodTypeAny, {
114
+ feedback: string;
115
+ indemnity: number;
116
+ arb: string;
117
+ }, {
118
+ feedback: string;
119
+ indemnity: number;
120
+ arb: string;
121
+ }>;
122
+ export declare const ResetSchema: z.ZodObject<{
123
+ arb: z.ZodEffects<z.ZodString, string, string>;
124
+ feedback: z.ZodEffects<z.ZodString, string, string>;
125
+ }, "strict", z.ZodTypeAny, {
126
+ feedback: string;
127
+ arb: string;
128
+ }, {
129
+ feedback: string;
130
+ arb: string;
131
+ }>;
132
+ export declare const ArbWithdrawSchema: z.ZodObject<{
133
+ arb: z.ZodEffects<z.ZodString, string, string>;
134
+ }, "strict", z.ZodTypeAny, {
135
+ arb: string;
136
+ }, {
137
+ arb: string;
138
+ }>;
139
+ export declare const FeesTransferToSchema: z.ZodUnion<[z.ZodObject<{
140
+ allocation: z.ZodEffects<z.ZodString, string, string>;
141
+ }, "strict", z.ZodTypeAny, {
142
+ allocation: string;
143
+ }, {
144
+ allocation: string;
145
+ }>, z.ZodObject<{
146
+ treasury: z.ZodEffects<z.ZodString, string, string>;
147
+ }, "strict", z.ZodTypeAny, {
148
+ treasury: string;
149
+ }, {
150
+ treasury: string;
151
+ }>]>;
152
+ export declare const FeesTransferSchema: z.ZodObject<{
153
+ to: z.ZodUnion<[z.ZodObject<{
154
+ allocation: z.ZodEffects<z.ZodString, string, string>;
155
+ }, "strict", z.ZodTypeAny, {
156
+ allocation: string;
157
+ }, {
158
+ allocation: string;
159
+ }>, z.ZodObject<{
160
+ treasury: z.ZodEffects<z.ZodString, string, string>;
161
+ }, "strict", z.ZodTypeAny, {
162
+ treasury: string;
163
+ }, {
164
+ treasury: string;
165
+ }>]>;
166
+ payment_remark: z.ZodEffects<z.ZodString, string, string>;
167
+ payment_index: z.ZodNumber;
168
+ newPayment: z.ZodOptional<z.ZodObject<{
169
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
170
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
171
+ onChain: z.ZodOptional<z.ZodBoolean>;
172
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
173
+ }, "strict", z.ZodTypeAny, {
174
+ name?: string | undefined;
175
+ replaceExistName?: boolean | undefined;
176
+ tags?: string[] | undefined;
177
+ onChain?: boolean | undefined;
178
+ }, {
179
+ name?: string | undefined;
180
+ replaceExistName?: boolean | undefined;
181
+ tags?: string[] | undefined;
182
+ onChain?: boolean | undefined;
183
+ }>>;
184
+ }, "strict", z.ZodTypeAny, {
185
+ to: {
186
+ allocation: string;
187
+ } | {
188
+ treasury: string;
189
+ };
190
+ payment_remark: string;
191
+ payment_index: number;
192
+ newPayment?: {
193
+ name?: string | undefined;
194
+ replaceExistName?: boolean | undefined;
195
+ tags?: string[] | undefined;
196
+ onChain?: boolean | undefined;
197
+ } | undefined;
198
+ }, {
199
+ to: {
200
+ allocation: string;
201
+ } | {
202
+ treasury: string;
203
+ };
204
+ payment_remark: string;
205
+ payment_index: number;
206
+ newPayment?: {
207
+ name?: string | undefined;
208
+ replaceExistName?: boolean | undefined;
209
+ tags?: string[] | undefined;
210
+ onChain?: boolean | undefined;
211
+ } | undefined;
212
+ }>;
213
+ export declare const VotingGuardActionSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
214
+ op: z.ZodEnum<["add", "set"]>;
215
+ guards: z.ZodArray<z.ZodObject<{
216
+ guard: z.ZodString;
217
+ vote_weight: z.ZodUnion<[z.ZodObject<{
218
+ GuardIdentifier: z.ZodNumber;
219
+ }, "strip", z.ZodTypeAny, {
220
+ GuardIdentifier: number;
221
+ }, {
222
+ GuardIdentifier: number;
223
+ }>, z.ZodObject<{
224
+ FixedValue: z.ZodNumber;
225
+ }, "strip", z.ZodTypeAny, {
226
+ FixedValue: number;
227
+ }, {
228
+ FixedValue: number;
229
+ }>]>;
230
+ }, "strip", z.ZodTypeAny, {
231
+ guard: string;
232
+ vote_weight: {
233
+ GuardIdentifier: number;
234
+ } | {
235
+ FixedValue: number;
236
+ };
237
+ }, {
238
+ guard: string;
239
+ vote_weight: {
240
+ GuardIdentifier: number;
241
+ } | {
242
+ FixedValue: number;
243
+ };
244
+ }>, "many">;
245
+ }, "strict", z.ZodTypeAny, {
246
+ op: "set" | "add";
247
+ guards: {
248
+ guard: string;
249
+ vote_weight: {
250
+ GuardIdentifier: number;
251
+ } | {
252
+ FixedValue: number;
253
+ };
254
+ }[];
255
+ }, {
256
+ op: "set" | "add";
257
+ guards: {
258
+ guard: string;
259
+ vote_weight: {
260
+ GuardIdentifier: number;
261
+ } | {
262
+ FixedValue: number;
263
+ };
264
+ }[];
265
+ }>, z.ZodObject<{
266
+ op: z.ZodLiteral<"remove">;
267
+ guards: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
268
+ }, "strict", z.ZodTypeAny, {
269
+ op: "remove";
270
+ guards: string[];
271
+ }, {
272
+ op: "remove";
273
+ guards: string[];
274
+ }>, z.ZodObject<{
275
+ op: z.ZodLiteral<"clear">;
276
+ }, "strict", z.ZodTypeAny, {
277
+ op: "clear";
278
+ }, {
279
+ op: "clear";
280
+ }>]>;
281
+ export declare const CallArbitration_DataSchema: z.ZodObject<{
282
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
283
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
284
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
285
+ onChain: z.ZodOptional<z.ZodBoolean>;
286
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
287
+ } & {
288
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
289
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
290
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
291
+ onChain: z.ZodOptional<z.ZodBoolean>;
292
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
293
+ } & {
294
+ description: z.ZodOptional<z.ZodString>;
295
+ }, "strict", z.ZodTypeAny, {
296
+ name?: string | undefined;
297
+ description?: string | undefined;
298
+ replaceExistName?: boolean | undefined;
299
+ tags?: string[] | undefined;
300
+ onChain?: boolean | undefined;
301
+ }, {
302
+ name?: string | undefined;
303
+ description?: string | undefined;
304
+ replaceExistName?: boolean | undefined;
305
+ tags?: string[] | undefined;
306
+ onChain?: boolean | undefined;
307
+ }>]>>;
308
+ } & {
309
+ type_parameter: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
310
+ }, "strict", z.ZodTypeAny, {
311
+ type_parameter: string;
312
+ name?: string | undefined;
313
+ replaceExistName?: boolean | undefined;
314
+ tags?: string[] | undefined;
315
+ onChain?: boolean | undefined;
316
+ permission?: string | {
317
+ name?: string | undefined;
318
+ description?: string | undefined;
319
+ replaceExistName?: boolean | undefined;
320
+ tags?: string[] | undefined;
321
+ onChain?: boolean | undefined;
322
+ } | undefined;
323
+ }, {
324
+ name?: string | undefined;
325
+ replaceExistName?: boolean | undefined;
326
+ tags?: string[] | undefined;
327
+ onChain?: boolean | undefined;
328
+ type_parameter?: string | undefined;
329
+ permission?: string | {
330
+ name?: string | undefined;
331
+ description?: string | undefined;
332
+ replaceExistName?: boolean | undefined;
333
+ tags?: string[] | undefined;
334
+ onChain?: boolean | undefined;
335
+ } | undefined;
336
+ }>]>;
337
+ dispute: z.ZodOptional<z.ZodObject<{
338
+ order: z.ZodEffects<z.ZodString, string, string>;
339
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
340
+ proposition: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
341
+ fee: z.ZodUnion<[z.ZodObject<{
342
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
343
+ }, "strip", z.ZodTypeAny, {
344
+ balance: string | number;
345
+ }, {
346
+ balance: string | number;
347
+ }>, z.ZodObject<{
348
+ coin: z.ZodString;
349
+ }, "strip", z.ZodTypeAny, {
350
+ coin: string;
351
+ }, {
352
+ coin: string;
353
+ }>]>;
354
+ namedArb: z.ZodOptional<z.ZodObject<{
355
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
356
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
357
+ onChain: z.ZodOptional<z.ZodBoolean>;
358
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
359
+ }, "strict", z.ZodTypeAny, {
360
+ name?: string | undefined;
361
+ replaceExistName?: boolean | undefined;
362
+ tags?: string[] | undefined;
363
+ onChain?: boolean | undefined;
364
+ }, {
365
+ name?: string | undefined;
366
+ replaceExistName?: boolean | undefined;
367
+ tags?: string[] | undefined;
368
+ onChain?: boolean | undefined;
369
+ }>>;
370
+ }, "strict", z.ZodTypeAny, {
371
+ order: string;
372
+ proposition: string[];
373
+ fee: {
374
+ balance: string | number;
375
+ } | {
376
+ coin: string;
377
+ };
378
+ description?: string | undefined;
379
+ namedArb?: {
380
+ name?: string | undefined;
381
+ replaceExistName?: boolean | undefined;
382
+ tags?: string[] | undefined;
383
+ onChain?: boolean | undefined;
384
+ } | undefined;
385
+ }, {
386
+ order: string;
387
+ proposition: string[];
388
+ fee: {
389
+ balance: string | number;
390
+ } | {
391
+ coin: string;
392
+ };
393
+ description?: string | undefined;
394
+ namedArb?: {
395
+ name?: string | undefined;
396
+ replaceExistName?: boolean | undefined;
397
+ tags?: string[] | undefined;
398
+ onChain?: boolean | undefined;
399
+ } | undefined;
400
+ }>>;
401
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
402
+ location: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
403
+ fee: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
404
+ pause: z.ZodOptional<z.ZodBoolean>;
405
+ confirm: z.ZodOptional<z.ZodObject<{
406
+ arb: z.ZodEffects<z.ZodString, string, string>;
407
+ voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
408
+ }, "strict", z.ZodTypeAny, {
409
+ voting_deadline: number | null;
410
+ arb: string;
411
+ }, {
412
+ voting_deadline: number | null;
413
+ arb: string;
414
+ }>>;
415
+ voting_deadline_change: z.ZodOptional<z.ZodObject<{
416
+ arb: z.ZodEffects<z.ZodString, string, string>;
417
+ voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
418
+ }, "strict", z.ZodTypeAny, {
419
+ voting_deadline: number | null;
420
+ arb: string;
421
+ }, {
422
+ voting_deadline: number | null;
423
+ arb: string;
424
+ }>>;
425
+ vote: z.ZodOptional<z.ZodObject<{
426
+ arb: z.ZodEffects<z.ZodString, string, string>;
427
+ votes: z.ZodArray<z.ZodNumber, "many">;
428
+ voting_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
429
+ }, "strict", z.ZodTypeAny, {
430
+ votes: number[];
431
+ arb: string;
432
+ voting_guard?: string | undefined;
433
+ }, {
434
+ votes: number[];
435
+ arb: string;
436
+ voting_guard?: string | undefined;
437
+ }>>;
438
+ feedback: z.ZodOptional<z.ZodObject<{
439
+ arb: z.ZodEffects<z.ZodString, string, string>;
440
+ feedback: z.ZodEffects<z.ZodString, string, string>;
441
+ }, "strict", z.ZodTypeAny, {
442
+ feedback: string;
443
+ arb: string;
444
+ }, {
445
+ feedback: string;
446
+ arb: string;
447
+ }>>;
448
+ arbitration: z.ZodOptional<z.ZodObject<{
449
+ arb: z.ZodEffects<z.ZodString, string, string>;
450
+ feedback: z.ZodEffects<z.ZodString, string, string>;
451
+ indemnity: z.ZodNumber;
452
+ }, "strict", z.ZodTypeAny, {
453
+ feedback: string;
454
+ indemnity: number;
455
+ arb: string;
456
+ }, {
457
+ feedback: string;
458
+ indemnity: number;
459
+ arb: string;
460
+ }>>;
461
+ reset: z.ZodOptional<z.ZodObject<{
462
+ arb: z.ZodEffects<z.ZodString, string, string>;
463
+ feedback: z.ZodEffects<z.ZodString, string, string>;
464
+ }, "strict", z.ZodTypeAny, {
465
+ feedback: string;
466
+ arb: string;
467
+ }, {
468
+ feedback: string;
469
+ arb: string;
470
+ }>>;
471
+ arb_withdraw: z.ZodOptional<z.ZodObject<{
472
+ arb: z.ZodEffects<z.ZodString, string, string>;
473
+ }, "strict", z.ZodTypeAny, {
474
+ arb: string;
475
+ }, {
476
+ arb: string;
477
+ }>>;
478
+ fees_transfer: z.ZodOptional<z.ZodObject<{
479
+ to: z.ZodUnion<[z.ZodObject<{
480
+ allocation: z.ZodEffects<z.ZodString, string, string>;
481
+ }, "strict", z.ZodTypeAny, {
482
+ allocation: string;
483
+ }, {
484
+ allocation: string;
485
+ }>, z.ZodObject<{
486
+ treasury: z.ZodEffects<z.ZodString, string, string>;
487
+ }, "strict", z.ZodTypeAny, {
488
+ treasury: string;
489
+ }, {
490
+ treasury: string;
491
+ }>]>;
492
+ payment_remark: z.ZodEffects<z.ZodString, string, string>;
493
+ payment_index: z.ZodNumber;
494
+ newPayment: z.ZodOptional<z.ZodObject<{
495
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
496
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
497
+ onChain: z.ZodOptional<z.ZodBoolean>;
498
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
499
+ }, "strict", z.ZodTypeAny, {
500
+ name?: string | undefined;
501
+ replaceExistName?: boolean | undefined;
502
+ tags?: string[] | undefined;
503
+ onChain?: boolean | undefined;
504
+ }, {
505
+ name?: string | undefined;
506
+ replaceExistName?: boolean | undefined;
507
+ tags?: string[] | undefined;
508
+ onChain?: boolean | undefined;
509
+ }>>;
510
+ }, "strict", z.ZodTypeAny, {
511
+ to: {
512
+ allocation: string;
513
+ } | {
514
+ treasury: string;
515
+ };
516
+ payment_remark: string;
517
+ payment_index: number;
518
+ newPayment?: {
519
+ name?: string | undefined;
520
+ replaceExistName?: boolean | undefined;
521
+ tags?: string[] | undefined;
522
+ onChain?: boolean | undefined;
523
+ } | undefined;
524
+ }, {
525
+ to: {
526
+ allocation: string;
527
+ } | {
528
+ treasury: string;
529
+ };
530
+ payment_remark: string;
531
+ payment_index: number;
532
+ newPayment?: {
533
+ name?: string | undefined;
534
+ replaceExistName?: boolean | undefined;
535
+ tags?: string[] | undefined;
536
+ onChain?: boolean | undefined;
537
+ } | undefined;
538
+ }>>;
539
+ usage_guard: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
540
+ voting_guard: z.ZodOptional<z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
541
+ op: z.ZodEnum<["add", "set"]>;
542
+ guards: z.ZodArray<z.ZodObject<{
543
+ guard: z.ZodString;
544
+ vote_weight: z.ZodUnion<[z.ZodObject<{
545
+ GuardIdentifier: z.ZodNumber;
546
+ }, "strip", z.ZodTypeAny, {
547
+ GuardIdentifier: number;
548
+ }, {
549
+ GuardIdentifier: number;
550
+ }>, z.ZodObject<{
551
+ FixedValue: z.ZodNumber;
552
+ }, "strip", z.ZodTypeAny, {
553
+ FixedValue: number;
554
+ }, {
555
+ FixedValue: number;
556
+ }>]>;
557
+ }, "strip", z.ZodTypeAny, {
558
+ guard: string;
559
+ vote_weight: {
560
+ GuardIdentifier: number;
561
+ } | {
562
+ FixedValue: number;
563
+ };
564
+ }, {
565
+ guard: string;
566
+ vote_weight: {
567
+ GuardIdentifier: number;
568
+ } | {
569
+ FixedValue: number;
570
+ };
571
+ }>, "many">;
572
+ }, "strict", z.ZodTypeAny, {
573
+ op: "set" | "add";
574
+ guards: {
575
+ guard: string;
576
+ vote_weight: {
577
+ GuardIdentifier: number;
578
+ } | {
579
+ FixedValue: number;
580
+ };
581
+ }[];
582
+ }, {
583
+ op: "set" | "add";
584
+ guards: {
585
+ guard: string;
586
+ vote_weight: {
587
+ GuardIdentifier: number;
588
+ } | {
589
+ FixedValue: number;
590
+ };
591
+ }[];
592
+ }>, z.ZodObject<{
593
+ op: z.ZodLiteral<"remove">;
594
+ guards: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
595
+ }, "strict", z.ZodTypeAny, {
596
+ op: "remove";
597
+ guards: string[];
598
+ }, {
599
+ op: "remove";
600
+ guards: string[];
601
+ }>, z.ZodObject<{
602
+ op: z.ZodLiteral<"clear">;
603
+ }, "strict", z.ZodTypeAny, {
604
+ op: "clear";
605
+ }, {
606
+ op: "clear";
607
+ }>]>>;
608
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
609
+ id: z.ZodString;
610
+ type: z.ZodString;
611
+ content_raw: z.ZodOptional<z.ZodAny>;
612
+ }, "strict", z.ZodTypeAny, {
613
+ type: string;
614
+ id: string;
615
+ content_raw?: any;
616
+ }, {
617
+ type: string;
618
+ id: string;
619
+ content_raw?: any;
620
+ }>, "many">, z.ZodObject<{
621
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
622
+ token_type: z.ZodEffects<z.ZodString, string, string>;
623
+ received: z.ZodArray<z.ZodObject<{
624
+ id: z.ZodString;
625
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
626
+ payment: z.ZodString;
627
+ }, "strict", z.ZodTypeAny, {
628
+ id: string;
629
+ balance: string | number;
630
+ payment: string;
631
+ }, {
632
+ id: string;
633
+ balance: string | number;
634
+ payment: string;
635
+ }>, "many">;
636
+ }, "strict", z.ZodTypeAny, {
637
+ received: {
638
+ id: string;
639
+ balance: string | number;
640
+ payment: string;
641
+ }[];
642
+ balance: string | number;
643
+ token_type: string;
644
+ }, {
645
+ received: {
646
+ id: string;
647
+ balance: string | number;
648
+ payment: string;
649
+ }[];
650
+ balance: string | number;
651
+ token_type: string;
652
+ }>, z.ZodLiteral<"recently">]>>;
653
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
654
+ }, "strict", z.ZodTypeAny, {
655
+ object: string | {
656
+ type_parameter: string;
657
+ name?: string | undefined;
658
+ replaceExistName?: boolean | undefined;
659
+ tags?: string[] | undefined;
660
+ onChain?: boolean | undefined;
661
+ permission?: string | {
662
+ name?: string | undefined;
663
+ description?: string | undefined;
664
+ replaceExistName?: boolean | undefined;
665
+ tags?: string[] | undefined;
666
+ onChain?: boolean | undefined;
667
+ } | undefined;
668
+ };
669
+ description?: string | undefined;
670
+ reset?: {
671
+ feedback: string;
672
+ arb: string;
673
+ } | undefined;
674
+ location?: string | undefined;
675
+ owner_receive?: {
676
+ received: {
677
+ id: string;
678
+ balance: string | number;
679
+ payment: string;
680
+ }[];
681
+ balance: string | number;
682
+ token_type: string;
683
+ } | "recently" | {
684
+ type: string;
685
+ id: string;
686
+ content_raw?: any;
687
+ }[] | undefined;
688
+ um?: string | null | undefined;
689
+ dispute?: {
690
+ order: string;
691
+ proposition: string[];
692
+ fee: {
693
+ balance: string | number;
694
+ } | {
695
+ coin: string;
696
+ };
697
+ description?: string | undefined;
698
+ namedArb?: {
699
+ name?: string | undefined;
700
+ replaceExistName?: boolean | undefined;
701
+ tags?: string[] | undefined;
702
+ onChain?: boolean | undefined;
703
+ } | undefined;
704
+ } | undefined;
705
+ arbitration?: {
706
+ feedback: string;
707
+ indemnity: number;
708
+ arb: string;
709
+ } | undefined;
710
+ fee?: string | number | undefined;
711
+ feedback?: {
712
+ feedback: string;
713
+ arb: string;
714
+ } | undefined;
715
+ voting_guard?: {
716
+ op: "set" | "add";
717
+ guards: {
718
+ guard: string;
719
+ vote_weight: {
720
+ GuardIdentifier: number;
721
+ } | {
722
+ FixedValue: number;
723
+ };
724
+ }[];
725
+ } | {
726
+ op: "remove";
727
+ guards: string[];
728
+ } | {
729
+ op: "clear";
730
+ } | undefined;
731
+ usage_guard?: string | null | undefined;
732
+ pause?: boolean | undefined;
733
+ confirm?: {
734
+ voting_deadline: number | null;
735
+ arb: string;
736
+ } | undefined;
737
+ voting_deadline_change?: {
738
+ voting_deadline: number | null;
739
+ arb: string;
740
+ } | undefined;
741
+ vote?: {
742
+ votes: number[];
743
+ arb: string;
744
+ voting_guard?: string | undefined;
745
+ } | undefined;
746
+ arb_withdraw?: {
747
+ arb: string;
748
+ } | undefined;
749
+ fees_transfer?: {
750
+ to: {
751
+ allocation: string;
752
+ } | {
753
+ treasury: string;
754
+ };
755
+ payment_remark: string;
756
+ payment_index: number;
757
+ newPayment?: {
758
+ name?: string | undefined;
759
+ replaceExistName?: boolean | undefined;
760
+ tags?: string[] | undefined;
761
+ onChain?: boolean | undefined;
762
+ } | undefined;
763
+ } | undefined;
764
+ }, {
765
+ object: string | {
766
+ name?: string | undefined;
767
+ replaceExistName?: boolean | undefined;
768
+ tags?: string[] | undefined;
769
+ onChain?: boolean | undefined;
770
+ type_parameter?: string | undefined;
771
+ permission?: string | {
772
+ name?: string | undefined;
773
+ description?: string | undefined;
774
+ replaceExistName?: boolean | undefined;
775
+ tags?: string[] | undefined;
776
+ onChain?: boolean | undefined;
777
+ } | undefined;
778
+ };
779
+ description?: string | undefined;
780
+ reset?: {
781
+ feedback: string;
782
+ arb: string;
783
+ } | undefined;
784
+ location?: string | undefined;
785
+ owner_receive?: {
786
+ received: {
787
+ id: string;
788
+ balance: string | number;
789
+ payment: string;
790
+ }[];
791
+ balance: string | number;
792
+ token_type: string;
793
+ } | "recently" | {
794
+ type: string;
795
+ id: string;
796
+ content_raw?: any;
797
+ }[] | undefined;
798
+ um?: string | null | undefined;
799
+ dispute?: {
800
+ order: string;
801
+ proposition: string[];
802
+ fee: {
803
+ balance: string | number;
804
+ } | {
805
+ coin: string;
806
+ };
807
+ description?: string | undefined;
808
+ namedArb?: {
809
+ name?: string | undefined;
810
+ replaceExistName?: boolean | undefined;
811
+ tags?: string[] | undefined;
812
+ onChain?: boolean | undefined;
813
+ } | undefined;
814
+ } | undefined;
815
+ arbitration?: {
816
+ feedback: string;
817
+ indemnity: number;
818
+ arb: string;
819
+ } | undefined;
820
+ fee?: string | number | undefined;
821
+ feedback?: {
822
+ feedback: string;
823
+ arb: string;
824
+ } | undefined;
825
+ voting_guard?: {
826
+ op: "set" | "add";
827
+ guards: {
828
+ guard: string;
829
+ vote_weight: {
830
+ GuardIdentifier: number;
831
+ } | {
832
+ FixedValue: number;
833
+ };
834
+ }[];
835
+ } | {
836
+ op: "remove";
837
+ guards: string[];
838
+ } | {
839
+ op: "clear";
840
+ } | undefined;
841
+ usage_guard?: string | null | undefined;
842
+ pause?: boolean | undefined;
843
+ confirm?: {
844
+ voting_deadline: number | null;
845
+ arb: string;
846
+ } | undefined;
847
+ voting_deadline_change?: {
848
+ voting_deadline: number | null;
849
+ arb: string;
850
+ } | undefined;
851
+ vote?: {
852
+ votes: number[];
853
+ arb: string;
854
+ voting_guard?: string | undefined;
855
+ } | undefined;
856
+ arb_withdraw?: {
857
+ arb: string;
858
+ } | undefined;
859
+ fees_transfer?: {
860
+ to: {
861
+ allocation: string;
862
+ } | {
863
+ treasury: string;
864
+ };
865
+ payment_remark: string;
866
+ payment_index: number;
867
+ newPayment?: {
868
+ name?: string | undefined;
869
+ replaceExistName?: boolean | undefined;
870
+ tags?: string[] | undefined;
871
+ onChain?: boolean | undefined;
872
+ } | undefined;
873
+ } | undefined;
874
+ }>;
875
+ export declare const CallArbitration_InputSchema: z.ZodObject<{
876
+ data: z.ZodObject<{
877
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
878
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
879
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
880
+ onChain: z.ZodOptional<z.ZodBoolean>;
881
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
882
+ } & {
883
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
884
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
885
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
886
+ onChain: z.ZodOptional<z.ZodBoolean>;
887
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
888
+ } & {
889
+ description: z.ZodOptional<z.ZodString>;
890
+ }, "strict", z.ZodTypeAny, {
891
+ name?: string | undefined;
892
+ description?: string | undefined;
893
+ replaceExistName?: boolean | undefined;
894
+ tags?: string[] | undefined;
895
+ onChain?: boolean | undefined;
896
+ }, {
897
+ name?: string | undefined;
898
+ description?: string | undefined;
899
+ replaceExistName?: boolean | undefined;
900
+ tags?: string[] | undefined;
901
+ onChain?: boolean | undefined;
902
+ }>]>>;
903
+ } & {
904
+ type_parameter: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
905
+ }, "strict", z.ZodTypeAny, {
906
+ type_parameter: string;
907
+ name?: string | undefined;
908
+ replaceExistName?: boolean | undefined;
909
+ tags?: string[] | undefined;
910
+ onChain?: boolean | undefined;
911
+ permission?: string | {
912
+ name?: string | undefined;
913
+ description?: string | undefined;
914
+ replaceExistName?: boolean | undefined;
915
+ tags?: string[] | undefined;
916
+ onChain?: boolean | undefined;
917
+ } | undefined;
918
+ }, {
919
+ name?: string | undefined;
920
+ replaceExistName?: boolean | undefined;
921
+ tags?: string[] | undefined;
922
+ onChain?: boolean | undefined;
923
+ type_parameter?: string | undefined;
924
+ permission?: string | {
925
+ name?: string | undefined;
926
+ description?: string | undefined;
927
+ replaceExistName?: boolean | undefined;
928
+ tags?: string[] | undefined;
929
+ onChain?: boolean | undefined;
930
+ } | undefined;
931
+ }>]>;
932
+ dispute: z.ZodOptional<z.ZodObject<{
933
+ order: z.ZodEffects<z.ZodString, string, string>;
934
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
935
+ proposition: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
936
+ fee: z.ZodUnion<[z.ZodObject<{
937
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
938
+ }, "strip", z.ZodTypeAny, {
939
+ balance: string | number;
940
+ }, {
941
+ balance: string | number;
942
+ }>, z.ZodObject<{
943
+ coin: z.ZodString;
944
+ }, "strip", z.ZodTypeAny, {
945
+ coin: string;
946
+ }, {
947
+ coin: string;
948
+ }>]>;
949
+ namedArb: z.ZodOptional<z.ZodObject<{
950
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
951
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
952
+ onChain: z.ZodOptional<z.ZodBoolean>;
953
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
954
+ }, "strict", z.ZodTypeAny, {
955
+ name?: string | undefined;
956
+ replaceExistName?: boolean | undefined;
957
+ tags?: string[] | undefined;
958
+ onChain?: boolean | undefined;
959
+ }, {
960
+ name?: string | undefined;
961
+ replaceExistName?: boolean | undefined;
962
+ tags?: string[] | undefined;
963
+ onChain?: boolean | undefined;
964
+ }>>;
965
+ }, "strict", z.ZodTypeAny, {
966
+ order: string;
967
+ proposition: string[];
968
+ fee: {
969
+ balance: string | number;
970
+ } | {
971
+ coin: string;
972
+ };
973
+ description?: string | undefined;
974
+ namedArb?: {
975
+ name?: string | undefined;
976
+ replaceExistName?: boolean | undefined;
977
+ tags?: string[] | undefined;
978
+ onChain?: boolean | undefined;
979
+ } | undefined;
980
+ }, {
981
+ order: string;
982
+ proposition: string[];
983
+ fee: {
984
+ balance: string | number;
985
+ } | {
986
+ coin: string;
987
+ };
988
+ description?: string | undefined;
989
+ namedArb?: {
990
+ name?: string | undefined;
991
+ replaceExistName?: boolean | undefined;
992
+ tags?: string[] | undefined;
993
+ onChain?: boolean | undefined;
994
+ } | undefined;
995
+ }>>;
996
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
997
+ location: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
998
+ fee: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
999
+ pause: z.ZodOptional<z.ZodBoolean>;
1000
+ confirm: z.ZodOptional<z.ZodObject<{
1001
+ arb: z.ZodEffects<z.ZodString, string, string>;
1002
+ voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
1003
+ }, "strict", z.ZodTypeAny, {
1004
+ voting_deadline: number | null;
1005
+ arb: string;
1006
+ }, {
1007
+ voting_deadline: number | null;
1008
+ arb: string;
1009
+ }>>;
1010
+ voting_deadline_change: z.ZodOptional<z.ZodObject<{
1011
+ arb: z.ZodEffects<z.ZodString, string, string>;
1012
+ voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
1013
+ }, "strict", z.ZodTypeAny, {
1014
+ voting_deadline: number | null;
1015
+ arb: string;
1016
+ }, {
1017
+ voting_deadline: number | null;
1018
+ arb: string;
1019
+ }>>;
1020
+ vote: z.ZodOptional<z.ZodObject<{
1021
+ arb: z.ZodEffects<z.ZodString, string, string>;
1022
+ votes: z.ZodArray<z.ZodNumber, "many">;
1023
+ voting_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1024
+ }, "strict", z.ZodTypeAny, {
1025
+ votes: number[];
1026
+ arb: string;
1027
+ voting_guard?: string | undefined;
1028
+ }, {
1029
+ votes: number[];
1030
+ arb: string;
1031
+ voting_guard?: string | undefined;
1032
+ }>>;
1033
+ feedback: z.ZodOptional<z.ZodObject<{
1034
+ arb: z.ZodEffects<z.ZodString, string, string>;
1035
+ feedback: z.ZodEffects<z.ZodString, string, string>;
1036
+ }, "strict", z.ZodTypeAny, {
1037
+ feedback: string;
1038
+ arb: string;
1039
+ }, {
1040
+ feedback: string;
1041
+ arb: string;
1042
+ }>>;
1043
+ arbitration: z.ZodOptional<z.ZodObject<{
1044
+ arb: z.ZodEffects<z.ZodString, string, string>;
1045
+ feedback: z.ZodEffects<z.ZodString, string, string>;
1046
+ indemnity: z.ZodNumber;
1047
+ }, "strict", z.ZodTypeAny, {
1048
+ feedback: string;
1049
+ indemnity: number;
1050
+ arb: string;
1051
+ }, {
1052
+ feedback: string;
1053
+ indemnity: number;
1054
+ arb: string;
1055
+ }>>;
1056
+ reset: z.ZodOptional<z.ZodObject<{
1057
+ arb: z.ZodEffects<z.ZodString, string, string>;
1058
+ feedback: z.ZodEffects<z.ZodString, string, string>;
1059
+ }, "strict", z.ZodTypeAny, {
1060
+ feedback: string;
1061
+ arb: string;
1062
+ }, {
1063
+ feedback: string;
1064
+ arb: string;
1065
+ }>>;
1066
+ arb_withdraw: z.ZodOptional<z.ZodObject<{
1067
+ arb: z.ZodEffects<z.ZodString, string, string>;
1068
+ }, "strict", z.ZodTypeAny, {
1069
+ arb: string;
1070
+ }, {
1071
+ arb: string;
1072
+ }>>;
1073
+ fees_transfer: z.ZodOptional<z.ZodObject<{
1074
+ to: z.ZodUnion<[z.ZodObject<{
1075
+ allocation: z.ZodEffects<z.ZodString, string, string>;
1076
+ }, "strict", z.ZodTypeAny, {
1077
+ allocation: string;
1078
+ }, {
1079
+ allocation: string;
1080
+ }>, z.ZodObject<{
1081
+ treasury: z.ZodEffects<z.ZodString, string, string>;
1082
+ }, "strict", z.ZodTypeAny, {
1083
+ treasury: string;
1084
+ }, {
1085
+ treasury: string;
1086
+ }>]>;
1087
+ payment_remark: z.ZodEffects<z.ZodString, string, string>;
1088
+ payment_index: z.ZodNumber;
1089
+ newPayment: z.ZodOptional<z.ZodObject<{
1090
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1091
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1092
+ onChain: z.ZodOptional<z.ZodBoolean>;
1093
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1094
+ }, "strict", z.ZodTypeAny, {
1095
+ name?: string | undefined;
1096
+ replaceExistName?: boolean | undefined;
1097
+ tags?: string[] | undefined;
1098
+ onChain?: boolean | undefined;
1099
+ }, {
1100
+ name?: string | undefined;
1101
+ replaceExistName?: boolean | undefined;
1102
+ tags?: string[] | undefined;
1103
+ onChain?: boolean | undefined;
1104
+ }>>;
1105
+ }, "strict", z.ZodTypeAny, {
1106
+ to: {
1107
+ allocation: string;
1108
+ } | {
1109
+ treasury: string;
1110
+ };
1111
+ payment_remark: string;
1112
+ payment_index: number;
1113
+ newPayment?: {
1114
+ name?: string | undefined;
1115
+ replaceExistName?: boolean | undefined;
1116
+ tags?: string[] | undefined;
1117
+ onChain?: boolean | undefined;
1118
+ } | undefined;
1119
+ }, {
1120
+ to: {
1121
+ allocation: string;
1122
+ } | {
1123
+ treasury: string;
1124
+ };
1125
+ payment_remark: string;
1126
+ payment_index: number;
1127
+ newPayment?: {
1128
+ name?: string | undefined;
1129
+ replaceExistName?: boolean | undefined;
1130
+ tags?: string[] | undefined;
1131
+ onChain?: boolean | undefined;
1132
+ } | undefined;
1133
+ }>>;
1134
+ usage_guard: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
1135
+ voting_guard: z.ZodOptional<z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
1136
+ op: z.ZodEnum<["add", "set"]>;
1137
+ guards: z.ZodArray<z.ZodObject<{
1138
+ guard: z.ZodString;
1139
+ vote_weight: z.ZodUnion<[z.ZodObject<{
1140
+ GuardIdentifier: z.ZodNumber;
1141
+ }, "strip", z.ZodTypeAny, {
1142
+ GuardIdentifier: number;
1143
+ }, {
1144
+ GuardIdentifier: number;
1145
+ }>, z.ZodObject<{
1146
+ FixedValue: z.ZodNumber;
1147
+ }, "strip", z.ZodTypeAny, {
1148
+ FixedValue: number;
1149
+ }, {
1150
+ FixedValue: number;
1151
+ }>]>;
1152
+ }, "strip", z.ZodTypeAny, {
1153
+ guard: string;
1154
+ vote_weight: {
1155
+ GuardIdentifier: number;
1156
+ } | {
1157
+ FixedValue: number;
1158
+ };
1159
+ }, {
1160
+ guard: string;
1161
+ vote_weight: {
1162
+ GuardIdentifier: number;
1163
+ } | {
1164
+ FixedValue: number;
1165
+ };
1166
+ }>, "many">;
1167
+ }, "strict", z.ZodTypeAny, {
1168
+ op: "set" | "add";
1169
+ guards: {
1170
+ guard: string;
1171
+ vote_weight: {
1172
+ GuardIdentifier: number;
1173
+ } | {
1174
+ FixedValue: number;
1175
+ };
1176
+ }[];
1177
+ }, {
1178
+ op: "set" | "add";
1179
+ guards: {
1180
+ guard: string;
1181
+ vote_weight: {
1182
+ GuardIdentifier: number;
1183
+ } | {
1184
+ FixedValue: number;
1185
+ };
1186
+ }[];
1187
+ }>, z.ZodObject<{
1188
+ op: z.ZodLiteral<"remove">;
1189
+ guards: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
1190
+ }, "strict", z.ZodTypeAny, {
1191
+ op: "remove";
1192
+ guards: string[];
1193
+ }, {
1194
+ op: "remove";
1195
+ guards: string[];
1196
+ }>, z.ZodObject<{
1197
+ op: z.ZodLiteral<"clear">;
1198
+ }, "strict", z.ZodTypeAny, {
1199
+ op: "clear";
1200
+ }, {
1201
+ op: "clear";
1202
+ }>]>>;
1203
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
1204
+ id: z.ZodString;
1205
+ type: z.ZodString;
1206
+ content_raw: z.ZodOptional<z.ZodAny>;
1207
+ }, "strict", z.ZodTypeAny, {
1208
+ type: string;
1209
+ id: string;
1210
+ content_raw?: any;
1211
+ }, {
1212
+ type: string;
1213
+ id: string;
1214
+ content_raw?: any;
1215
+ }>, "many">, z.ZodObject<{
1216
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1217
+ token_type: z.ZodEffects<z.ZodString, string, string>;
1218
+ received: z.ZodArray<z.ZodObject<{
1219
+ id: z.ZodString;
1220
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1221
+ payment: z.ZodString;
1222
+ }, "strict", z.ZodTypeAny, {
1223
+ id: string;
1224
+ balance: string | number;
1225
+ payment: string;
1226
+ }, {
1227
+ id: string;
1228
+ balance: string | number;
1229
+ payment: string;
1230
+ }>, "many">;
1231
+ }, "strict", z.ZodTypeAny, {
1232
+ received: {
1233
+ id: string;
1234
+ balance: string | number;
1235
+ payment: string;
1236
+ }[];
1237
+ balance: string | number;
1238
+ token_type: string;
1239
+ }, {
1240
+ received: {
1241
+ id: string;
1242
+ balance: string | number;
1243
+ payment: string;
1244
+ }[];
1245
+ balance: string | number;
1246
+ token_type: string;
1247
+ }>, z.ZodLiteral<"recently">]>>;
1248
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
1249
+ }, "strict", z.ZodTypeAny, {
1250
+ object: string | {
1251
+ type_parameter: string;
1252
+ name?: string | undefined;
1253
+ replaceExistName?: boolean | undefined;
1254
+ tags?: string[] | undefined;
1255
+ onChain?: boolean | undefined;
1256
+ permission?: string | {
1257
+ name?: string | undefined;
1258
+ description?: string | undefined;
1259
+ replaceExistName?: boolean | undefined;
1260
+ tags?: string[] | undefined;
1261
+ onChain?: boolean | undefined;
1262
+ } | undefined;
1263
+ };
1264
+ description?: string | undefined;
1265
+ reset?: {
1266
+ feedback: string;
1267
+ arb: string;
1268
+ } | undefined;
1269
+ location?: string | undefined;
1270
+ owner_receive?: {
1271
+ received: {
1272
+ id: string;
1273
+ balance: string | number;
1274
+ payment: string;
1275
+ }[];
1276
+ balance: string | number;
1277
+ token_type: string;
1278
+ } | "recently" | {
1279
+ type: string;
1280
+ id: string;
1281
+ content_raw?: any;
1282
+ }[] | undefined;
1283
+ um?: string | null | undefined;
1284
+ dispute?: {
1285
+ order: string;
1286
+ proposition: string[];
1287
+ fee: {
1288
+ balance: string | number;
1289
+ } | {
1290
+ coin: string;
1291
+ };
1292
+ description?: string | undefined;
1293
+ namedArb?: {
1294
+ name?: string | undefined;
1295
+ replaceExistName?: boolean | undefined;
1296
+ tags?: string[] | undefined;
1297
+ onChain?: boolean | undefined;
1298
+ } | undefined;
1299
+ } | undefined;
1300
+ arbitration?: {
1301
+ feedback: string;
1302
+ indemnity: number;
1303
+ arb: string;
1304
+ } | undefined;
1305
+ fee?: string | number | undefined;
1306
+ feedback?: {
1307
+ feedback: string;
1308
+ arb: string;
1309
+ } | undefined;
1310
+ voting_guard?: {
1311
+ op: "set" | "add";
1312
+ guards: {
1313
+ guard: string;
1314
+ vote_weight: {
1315
+ GuardIdentifier: number;
1316
+ } | {
1317
+ FixedValue: number;
1318
+ };
1319
+ }[];
1320
+ } | {
1321
+ op: "remove";
1322
+ guards: string[];
1323
+ } | {
1324
+ op: "clear";
1325
+ } | undefined;
1326
+ usage_guard?: string | null | undefined;
1327
+ pause?: boolean | undefined;
1328
+ confirm?: {
1329
+ voting_deadline: number | null;
1330
+ arb: string;
1331
+ } | undefined;
1332
+ voting_deadline_change?: {
1333
+ voting_deadline: number | null;
1334
+ arb: string;
1335
+ } | undefined;
1336
+ vote?: {
1337
+ votes: number[];
1338
+ arb: string;
1339
+ voting_guard?: string | undefined;
1340
+ } | undefined;
1341
+ arb_withdraw?: {
1342
+ arb: string;
1343
+ } | undefined;
1344
+ fees_transfer?: {
1345
+ to: {
1346
+ allocation: string;
1347
+ } | {
1348
+ treasury: string;
1349
+ };
1350
+ payment_remark: string;
1351
+ payment_index: number;
1352
+ newPayment?: {
1353
+ name?: string | undefined;
1354
+ replaceExistName?: boolean | undefined;
1355
+ tags?: string[] | undefined;
1356
+ onChain?: boolean | undefined;
1357
+ } | undefined;
1358
+ } | undefined;
1359
+ }, {
1360
+ object: string | {
1361
+ name?: string | undefined;
1362
+ replaceExistName?: boolean | undefined;
1363
+ tags?: string[] | undefined;
1364
+ onChain?: boolean | undefined;
1365
+ type_parameter?: string | undefined;
1366
+ permission?: string | {
1367
+ name?: string | undefined;
1368
+ description?: string | undefined;
1369
+ replaceExistName?: boolean | undefined;
1370
+ tags?: string[] | undefined;
1371
+ onChain?: boolean | undefined;
1372
+ } | undefined;
1373
+ };
1374
+ description?: string | undefined;
1375
+ reset?: {
1376
+ feedback: string;
1377
+ arb: string;
1378
+ } | undefined;
1379
+ location?: string | undefined;
1380
+ owner_receive?: {
1381
+ received: {
1382
+ id: string;
1383
+ balance: string | number;
1384
+ payment: string;
1385
+ }[];
1386
+ balance: string | number;
1387
+ token_type: string;
1388
+ } | "recently" | {
1389
+ type: string;
1390
+ id: string;
1391
+ content_raw?: any;
1392
+ }[] | undefined;
1393
+ um?: string | null | undefined;
1394
+ dispute?: {
1395
+ order: string;
1396
+ proposition: string[];
1397
+ fee: {
1398
+ balance: string | number;
1399
+ } | {
1400
+ coin: string;
1401
+ };
1402
+ description?: string | undefined;
1403
+ namedArb?: {
1404
+ name?: string | undefined;
1405
+ replaceExistName?: boolean | undefined;
1406
+ tags?: string[] | undefined;
1407
+ onChain?: boolean | undefined;
1408
+ } | undefined;
1409
+ } | undefined;
1410
+ arbitration?: {
1411
+ feedback: string;
1412
+ indemnity: number;
1413
+ arb: string;
1414
+ } | undefined;
1415
+ fee?: string | number | undefined;
1416
+ feedback?: {
1417
+ feedback: string;
1418
+ arb: string;
1419
+ } | undefined;
1420
+ voting_guard?: {
1421
+ op: "set" | "add";
1422
+ guards: {
1423
+ guard: string;
1424
+ vote_weight: {
1425
+ GuardIdentifier: number;
1426
+ } | {
1427
+ FixedValue: number;
1428
+ };
1429
+ }[];
1430
+ } | {
1431
+ op: "remove";
1432
+ guards: string[];
1433
+ } | {
1434
+ op: "clear";
1435
+ } | undefined;
1436
+ usage_guard?: string | null | undefined;
1437
+ pause?: boolean | undefined;
1438
+ confirm?: {
1439
+ voting_deadline: number | null;
1440
+ arb: string;
1441
+ } | undefined;
1442
+ voting_deadline_change?: {
1443
+ voting_deadline: number | null;
1444
+ arb: string;
1445
+ } | undefined;
1446
+ vote?: {
1447
+ votes: number[];
1448
+ arb: string;
1449
+ voting_guard?: string | undefined;
1450
+ } | undefined;
1451
+ arb_withdraw?: {
1452
+ arb: string;
1453
+ } | undefined;
1454
+ fees_transfer?: {
1455
+ to: {
1456
+ allocation: string;
1457
+ } | {
1458
+ treasury: string;
1459
+ };
1460
+ payment_remark: string;
1461
+ payment_index: number;
1462
+ newPayment?: {
1463
+ name?: string | undefined;
1464
+ replaceExistName?: boolean | undefined;
1465
+ tags?: string[] | undefined;
1466
+ onChain?: boolean | undefined;
1467
+ } | undefined;
1468
+ } | undefined;
1469
+ }>;
1470
+ env: z.ZodOptional<z.ZodObject<{
1471
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
1472
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1473
+ no_cache: z.ZodOptional<z.ZodBoolean>;
1474
+ network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
1475
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1476
+ }, "strict", z.ZodTypeAny, {
1477
+ account: string;
1478
+ no_cache?: boolean | undefined;
1479
+ network?: import("wowok").ENTRYPOINT | undefined;
1480
+ permission_guard?: string[] | undefined;
1481
+ referrer?: string | undefined;
1482
+ }, {
1483
+ no_cache?: boolean | undefined;
1484
+ network?: import("wowok").ENTRYPOINT | undefined;
1485
+ account?: string | undefined;
1486
+ permission_guard?: string[] | undefined;
1487
+ referrer?: string | undefined;
1488
+ }>>;
1489
+ submission: z.ZodOptional<z.ZodObject<{
1490
+ type: z.ZodLiteral<"submission">;
1491
+ guard: z.ZodArray<z.ZodObject<{
1492
+ object: z.ZodEffects<z.ZodString, string, string>;
1493
+ impack: z.ZodBoolean;
1494
+ }, "strict", z.ZodTypeAny, {
1495
+ object: string;
1496
+ impack: boolean;
1497
+ }, {
1498
+ object: string;
1499
+ impack: boolean;
1500
+ }>, "many">;
1501
+ submission: z.ZodArray<z.ZodObject<{
1502
+ guard: z.ZodEffects<z.ZodString, string, string>;
1503
+ submission: z.ZodArray<z.ZodObject<{
1504
+ identifier: z.ZodNumber;
1505
+ b_submission: z.ZodBoolean;
1506
+ 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">]>;
1507
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
1508
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1509
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
1510
+ }, "strict", z.ZodTypeAny, {
1511
+ name_or_address?: string | undefined;
1512
+ local_mark_first?: boolean | undefined;
1513
+ }, {
1514
+ name_or_address?: string | undefined;
1515
+ local_mark_first?: boolean | undefined;
1516
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
1517
+ entities: z.ZodArray<z.ZodObject<{
1518
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1519
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
1520
+ }, "strict", z.ZodTypeAny, {
1521
+ name_or_address?: string | undefined;
1522
+ local_mark_first?: boolean | undefined;
1523
+ }, {
1524
+ name_or_address?: string | undefined;
1525
+ local_mark_first?: boolean | undefined;
1526
+ }>, "many">;
1527
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
1528
+ }, "strict", z.ZodTypeAny, {
1529
+ entities: {
1530
+ name_or_address?: string | undefined;
1531
+ local_mark_first?: boolean | undefined;
1532
+ }[];
1533
+ check_all_founded?: boolean | undefined;
1534
+ }, {
1535
+ entities: {
1536
+ name_or_address?: string | undefined;
1537
+ local_mark_first?: boolean | undefined;
1538
+ }[];
1539
+ check_all_founded?: boolean | undefined;
1540
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
1541
+ name: z.ZodDefault<z.ZodString>;
1542
+ } & {
1543
+ 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]>>;
1544
+ }, "strict", z.ZodTypeAny, {
1545
+ identifier: number;
1546
+ b_submission: boolean;
1547
+ 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";
1548
+ name: string;
1549
+ value?: string | number | boolean | {
1550
+ name_or_address?: string | undefined;
1551
+ local_mark_first?: boolean | undefined;
1552
+ } | {
1553
+ entities: {
1554
+ name_or_address?: string | undefined;
1555
+ local_mark_first?: boolean | undefined;
1556
+ }[];
1557
+ check_all_founded?: boolean | undefined;
1558
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1559
+ object_type?: import("wowok").ObjectType | undefined;
1560
+ }, {
1561
+ identifier: number;
1562
+ b_submission: boolean;
1563
+ 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";
1564
+ value?: string | number | boolean | {
1565
+ name_or_address?: string | undefined;
1566
+ local_mark_first?: boolean | undefined;
1567
+ } | {
1568
+ entities: {
1569
+ name_or_address?: string | undefined;
1570
+ local_mark_first?: boolean | undefined;
1571
+ }[];
1572
+ check_all_founded?: boolean | undefined;
1573
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1574
+ name?: string | undefined;
1575
+ object_type?: import("wowok").ObjectType | undefined;
1576
+ }>, "many">;
1577
+ }, "strict", z.ZodTypeAny, {
1578
+ guard: string;
1579
+ submission: {
1580
+ identifier: number;
1581
+ b_submission: boolean;
1582
+ 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";
1583
+ name: string;
1584
+ value?: string | number | boolean | {
1585
+ name_or_address?: string | undefined;
1586
+ local_mark_first?: boolean | undefined;
1587
+ } | {
1588
+ entities: {
1589
+ name_or_address?: string | undefined;
1590
+ local_mark_first?: boolean | undefined;
1591
+ }[];
1592
+ check_all_founded?: boolean | undefined;
1593
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1594
+ object_type?: import("wowok").ObjectType | undefined;
1595
+ }[];
1596
+ }, {
1597
+ guard: string;
1598
+ submission: {
1599
+ identifier: number;
1600
+ b_submission: boolean;
1601
+ 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";
1602
+ value?: string | number | boolean | {
1603
+ name_or_address?: string | undefined;
1604
+ local_mark_first?: boolean | undefined;
1605
+ } | {
1606
+ entities: {
1607
+ name_or_address?: string | undefined;
1608
+ local_mark_first?: boolean | undefined;
1609
+ }[];
1610
+ check_all_founded?: boolean | undefined;
1611
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1612
+ name?: string | undefined;
1613
+ object_type?: import("wowok").ObjectType | undefined;
1614
+ }[];
1615
+ }>, "many">;
1616
+ }, "strict", z.ZodTypeAny, {
1617
+ type: "submission";
1618
+ guard: {
1619
+ object: string;
1620
+ impack: boolean;
1621
+ }[];
1622
+ submission: {
1623
+ guard: string;
1624
+ submission: {
1625
+ identifier: number;
1626
+ b_submission: boolean;
1627
+ 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";
1628
+ name: string;
1629
+ value?: string | number | boolean | {
1630
+ name_or_address?: string | undefined;
1631
+ local_mark_first?: boolean | undefined;
1632
+ } | {
1633
+ entities: {
1634
+ name_or_address?: string | undefined;
1635
+ local_mark_first?: boolean | undefined;
1636
+ }[];
1637
+ check_all_founded?: boolean | undefined;
1638
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1639
+ object_type?: import("wowok").ObjectType | undefined;
1640
+ }[];
1641
+ }[];
1642
+ }, {
1643
+ type: "submission";
1644
+ guard: {
1645
+ object: string;
1646
+ impack: boolean;
1647
+ }[];
1648
+ submission: {
1649
+ guard: string;
1650
+ submission: {
1651
+ identifier: number;
1652
+ b_submission: boolean;
1653
+ 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";
1654
+ value?: string | number | boolean | {
1655
+ name_or_address?: string | undefined;
1656
+ local_mark_first?: boolean | undefined;
1657
+ } | {
1658
+ entities: {
1659
+ name_or_address?: string | undefined;
1660
+ local_mark_first?: boolean | undefined;
1661
+ }[];
1662
+ check_all_founded?: boolean | undefined;
1663
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1664
+ name?: string | undefined;
1665
+ object_type?: import("wowok").ObjectType | undefined;
1666
+ }[];
1667
+ }[];
1668
+ }>>;
1669
+ }, "strict", z.ZodTypeAny, {
1670
+ data: {
1671
+ object: string | {
1672
+ type_parameter: string;
1673
+ name?: string | undefined;
1674
+ replaceExistName?: boolean | undefined;
1675
+ tags?: string[] | undefined;
1676
+ onChain?: boolean | undefined;
1677
+ permission?: string | {
1678
+ name?: string | undefined;
1679
+ description?: string | undefined;
1680
+ replaceExistName?: boolean | undefined;
1681
+ tags?: string[] | undefined;
1682
+ onChain?: boolean | undefined;
1683
+ } | undefined;
1684
+ };
1685
+ description?: string | undefined;
1686
+ reset?: {
1687
+ feedback: string;
1688
+ arb: string;
1689
+ } | undefined;
1690
+ location?: string | undefined;
1691
+ owner_receive?: {
1692
+ received: {
1693
+ id: string;
1694
+ balance: string | number;
1695
+ payment: string;
1696
+ }[];
1697
+ balance: string | number;
1698
+ token_type: string;
1699
+ } | "recently" | {
1700
+ type: string;
1701
+ id: string;
1702
+ content_raw?: any;
1703
+ }[] | undefined;
1704
+ um?: string | null | undefined;
1705
+ dispute?: {
1706
+ order: string;
1707
+ proposition: string[];
1708
+ fee: {
1709
+ balance: string | number;
1710
+ } | {
1711
+ coin: string;
1712
+ };
1713
+ description?: string | undefined;
1714
+ namedArb?: {
1715
+ name?: string | undefined;
1716
+ replaceExistName?: boolean | undefined;
1717
+ tags?: string[] | undefined;
1718
+ onChain?: boolean | undefined;
1719
+ } | undefined;
1720
+ } | undefined;
1721
+ arbitration?: {
1722
+ feedback: string;
1723
+ indemnity: number;
1724
+ arb: string;
1725
+ } | undefined;
1726
+ fee?: string | number | undefined;
1727
+ feedback?: {
1728
+ feedback: string;
1729
+ arb: string;
1730
+ } | undefined;
1731
+ voting_guard?: {
1732
+ op: "set" | "add";
1733
+ guards: {
1734
+ guard: string;
1735
+ vote_weight: {
1736
+ GuardIdentifier: number;
1737
+ } | {
1738
+ FixedValue: number;
1739
+ };
1740
+ }[];
1741
+ } | {
1742
+ op: "remove";
1743
+ guards: string[];
1744
+ } | {
1745
+ op: "clear";
1746
+ } | undefined;
1747
+ usage_guard?: string | null | undefined;
1748
+ pause?: boolean | undefined;
1749
+ confirm?: {
1750
+ voting_deadline: number | null;
1751
+ arb: string;
1752
+ } | undefined;
1753
+ voting_deadline_change?: {
1754
+ voting_deadline: number | null;
1755
+ arb: string;
1756
+ } | undefined;
1757
+ vote?: {
1758
+ votes: number[];
1759
+ arb: string;
1760
+ voting_guard?: string | undefined;
1761
+ } | undefined;
1762
+ arb_withdraw?: {
1763
+ arb: string;
1764
+ } | undefined;
1765
+ fees_transfer?: {
1766
+ to: {
1767
+ allocation: string;
1768
+ } | {
1769
+ treasury: string;
1770
+ };
1771
+ payment_remark: string;
1772
+ payment_index: number;
1773
+ newPayment?: {
1774
+ name?: string | undefined;
1775
+ replaceExistName?: boolean | undefined;
1776
+ tags?: string[] | undefined;
1777
+ onChain?: boolean | undefined;
1778
+ } | undefined;
1779
+ } | undefined;
1780
+ };
1781
+ submission?: {
1782
+ type: "submission";
1783
+ guard: {
1784
+ object: string;
1785
+ impack: boolean;
1786
+ }[];
1787
+ submission: {
1788
+ guard: string;
1789
+ submission: {
1790
+ identifier: number;
1791
+ b_submission: boolean;
1792
+ 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";
1793
+ name: string;
1794
+ value?: string | number | boolean | {
1795
+ name_or_address?: string | undefined;
1796
+ local_mark_first?: boolean | undefined;
1797
+ } | {
1798
+ entities: {
1799
+ name_or_address?: string | undefined;
1800
+ local_mark_first?: boolean | undefined;
1801
+ }[];
1802
+ check_all_founded?: boolean | undefined;
1803
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1804
+ object_type?: import("wowok").ObjectType | undefined;
1805
+ }[];
1806
+ }[];
1807
+ } | undefined;
1808
+ env?: {
1809
+ account: string;
1810
+ no_cache?: boolean | undefined;
1811
+ network?: import("wowok").ENTRYPOINT | undefined;
1812
+ permission_guard?: string[] | undefined;
1813
+ referrer?: string | undefined;
1814
+ } | undefined;
1815
+ }, {
1816
+ data: {
1817
+ object: string | {
1818
+ name?: string | undefined;
1819
+ replaceExistName?: boolean | undefined;
1820
+ tags?: string[] | undefined;
1821
+ onChain?: boolean | undefined;
1822
+ type_parameter?: string | undefined;
1823
+ permission?: string | {
1824
+ name?: string | undefined;
1825
+ description?: string | undefined;
1826
+ replaceExistName?: boolean | undefined;
1827
+ tags?: string[] | undefined;
1828
+ onChain?: boolean | undefined;
1829
+ } | undefined;
1830
+ };
1831
+ description?: string | undefined;
1832
+ reset?: {
1833
+ feedback: string;
1834
+ arb: string;
1835
+ } | undefined;
1836
+ location?: string | undefined;
1837
+ owner_receive?: {
1838
+ received: {
1839
+ id: string;
1840
+ balance: string | number;
1841
+ payment: string;
1842
+ }[];
1843
+ balance: string | number;
1844
+ token_type: string;
1845
+ } | "recently" | {
1846
+ type: string;
1847
+ id: string;
1848
+ content_raw?: any;
1849
+ }[] | undefined;
1850
+ um?: string | null | undefined;
1851
+ dispute?: {
1852
+ order: string;
1853
+ proposition: string[];
1854
+ fee: {
1855
+ balance: string | number;
1856
+ } | {
1857
+ coin: string;
1858
+ };
1859
+ description?: string | undefined;
1860
+ namedArb?: {
1861
+ name?: string | undefined;
1862
+ replaceExistName?: boolean | undefined;
1863
+ tags?: string[] | undefined;
1864
+ onChain?: boolean | undefined;
1865
+ } | undefined;
1866
+ } | undefined;
1867
+ arbitration?: {
1868
+ feedback: string;
1869
+ indemnity: number;
1870
+ arb: string;
1871
+ } | undefined;
1872
+ fee?: string | number | undefined;
1873
+ feedback?: {
1874
+ feedback: string;
1875
+ arb: string;
1876
+ } | undefined;
1877
+ voting_guard?: {
1878
+ op: "set" | "add";
1879
+ guards: {
1880
+ guard: string;
1881
+ vote_weight: {
1882
+ GuardIdentifier: number;
1883
+ } | {
1884
+ FixedValue: number;
1885
+ };
1886
+ }[];
1887
+ } | {
1888
+ op: "remove";
1889
+ guards: string[];
1890
+ } | {
1891
+ op: "clear";
1892
+ } | undefined;
1893
+ usage_guard?: string | null | undefined;
1894
+ pause?: boolean | undefined;
1895
+ confirm?: {
1896
+ voting_deadline: number | null;
1897
+ arb: string;
1898
+ } | undefined;
1899
+ voting_deadline_change?: {
1900
+ voting_deadline: number | null;
1901
+ arb: string;
1902
+ } | undefined;
1903
+ vote?: {
1904
+ votes: number[];
1905
+ arb: string;
1906
+ voting_guard?: string | undefined;
1907
+ } | undefined;
1908
+ arb_withdraw?: {
1909
+ arb: string;
1910
+ } | undefined;
1911
+ fees_transfer?: {
1912
+ to: {
1913
+ allocation: string;
1914
+ } | {
1915
+ treasury: string;
1916
+ };
1917
+ payment_remark: string;
1918
+ payment_index: number;
1919
+ newPayment?: {
1920
+ name?: string | undefined;
1921
+ replaceExistName?: boolean | undefined;
1922
+ tags?: string[] | undefined;
1923
+ onChain?: boolean | undefined;
1924
+ } | undefined;
1925
+ } | undefined;
1926
+ };
1927
+ submission?: {
1928
+ type: "submission";
1929
+ guard: {
1930
+ object: string;
1931
+ impack: boolean;
1932
+ }[];
1933
+ submission: {
1934
+ guard: string;
1935
+ submission: {
1936
+ identifier: number;
1937
+ b_submission: boolean;
1938
+ 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";
1939
+ value?: string | number | boolean | {
1940
+ name_or_address?: string | undefined;
1941
+ local_mark_first?: boolean | undefined;
1942
+ } | {
1943
+ entities: {
1944
+ name_or_address?: string | undefined;
1945
+ local_mark_first?: boolean | undefined;
1946
+ }[];
1947
+ check_all_founded?: boolean | undefined;
1948
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1949
+ name?: string | undefined;
1950
+ object_type?: import("wowok").ObjectType | undefined;
1951
+ }[];
1952
+ }[];
1953
+ } | undefined;
1954
+ env?: {
1955
+ no_cache?: boolean | undefined;
1956
+ network?: import("wowok").ENTRYPOINT | undefined;
1957
+ account?: string | undefined;
1958
+ permission_guard?: string[] | undefined;
1959
+ referrer?: string | undefined;
1960
+ } | undefined;
1961
+ }>;
1962
+ export type Dispute = z.infer<typeof DisputeSchema>;
1963
+ export type Confirm = z.infer<typeof ConfirmSchema>;
1964
+ export type VotingDeadlineChange = z.infer<typeof VotingDeadlineChangeSchema>;
1965
+ export type Vote = z.infer<typeof VoteSchema>;
1966
+ export type Feedback = z.infer<typeof FeedbackSchema>;
1967
+ export type ArbitrationAction = z.infer<typeof ArbitrationActionSchema>;
1968
+ export type Reset = z.infer<typeof ResetSchema>;
1969
+ export type ArbWithdraw = z.infer<typeof ArbWithdrawSchema>;
1970
+ export type FeesTransferTo = z.infer<typeof FeesTransferToSchema>;
1971
+ export type FeesTransfer = z.infer<typeof FeesTransferSchema>;
1972
+ export type VotingGuardAction = z.infer<typeof VotingGuardActionSchema>;
1973
+ export type CallArbitration_Data = z.infer<typeof CallArbitration_DataSchema>;
1974
+ export type CallArbitration_Input = z.infer<typeof CallArbitration_InputSchema>;