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