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