wowok_agent 2.1.9 → 2.1.18

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