@wowok/agent-mcp 2.3.13 → 2.3.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/dist/harness/checkpoint.d.ts +8 -0
  2. package/dist/harness/checkpoint.js +129 -0
  3. package/dist/harness/index.d.ts +33 -0
  4. package/dist/harness/index.js +75 -0
  5. package/dist/harness/plan.d.ts +18 -0
  6. package/dist/harness/plan.js +252 -0
  7. package/dist/harness/recover.d.ts +17 -0
  8. package/dist/harness/recover.js +139 -0
  9. package/dist/harness/types.d.ts +137 -0
  10. package/dist/harness/types.js +1 -0
  11. package/dist/harness/verify.d.ts +42 -0
  12. package/dist/harness/verify.js +237 -0
  13. package/dist/index.js +134 -52
  14. package/dist/loop-engineering/aggregate.d.ts +50 -0
  15. package/dist/loop-engineering/aggregate.js +132 -0
  16. package/dist/loop-engineering/diagnose.d.ts +21 -0
  17. package/dist/loop-engineering/diagnose.js +179 -0
  18. package/dist/loop-engineering/improve.d.ts +26 -0
  19. package/dist/loop-engineering/improve.js +178 -0
  20. package/dist/loop-engineering/index.d.ts +4 -0
  21. package/dist/loop-engineering/index.js +4 -0
  22. package/dist/loop-engineering/pipeline.d.ts +17 -0
  23. package/dist/loop-engineering/pipeline.js +56 -0
  24. package/dist/mode-market/index.d.ts +3 -0
  25. package/dist/mode-market/index.js +3 -0
  26. package/dist/mode-market/registry.d.ts +53 -0
  27. package/dist/mode-market/registry.js +124 -0
  28. package/dist/mode-market/review.d.ts +27 -0
  29. package/dist/mode-market/review.js +214 -0
  30. package/dist/mode-market/submission.d.ts +25 -0
  31. package/dist/mode-market/submission.js +85 -0
  32. package/dist/schema/call/allocation.d.ts +40 -40
  33. package/dist/schema/call/arbitration.d.ts +90 -90
  34. package/dist/schema/call/base.d.ts +1054 -0
  35. package/dist/schema/call/base.js +100 -22
  36. package/dist/schema/call/bridge-handler.js +36 -18
  37. package/dist/schema/call/bridge.d.ts +115 -115
  38. package/dist/schema/call/handler.d.ts +2 -1
  39. package/dist/schema/call/handler.js +94 -3
  40. package/dist/schema/call/index.d.ts +1 -0
  41. package/dist/schema/call/index.js +1 -0
  42. package/dist/schema/call/machine.d.ts +144 -144
  43. package/dist/schema/call/order.d.ts +12 -12
  44. package/dist/schema/call/progress.d.ts +6 -6
  45. package/dist/schema/call/reward.d.ts +6 -6
  46. package/dist/schema/call/semantic.d.ts +23 -0
  47. package/dist/schema/call/semantic.js +764 -0
  48. package/dist/schema/call/service.d.ts +142 -142
  49. package/dist/schema/call/treasury.d.ts +204 -204
  50. package/dist/schema/local/index.d.ts +113 -2
  51. package/dist/schema/local/index.js +11 -1
  52. package/dist/schema/messenger/index.d.ts +416 -92
  53. package/dist/schema/messenger/index.js +9 -0
  54. package/dist/schema/operations.d.ts +988 -495
  55. package/dist/schema/operations.js +14 -3
  56. package/dist/schema/query/index.d.ts +346 -342
  57. package/dist/schema/query/index.js +4 -1
  58. package/dist/schemas/account_operation.output.json +3 -0
  59. package/dist/schemas/account_operation.schema.json +1 -1
  60. package/dist/schemas/index.json +1 -1
  61. package/dist/schemas/local_info_operation.output.json +3 -0
  62. package/dist/schemas/local_mark_operation.output.json +3 -0
  63. package/dist/schemas/messenger_operation.output.json +21 -0
  64. package/dist/schemas/messenger_operation.schema.json +21 -0
  65. package/dist/schemas/onchain_events.output.json +3 -0
  66. package/dist/schemas/onchain_operations.output.json +464 -21
  67. package/dist/schemas/onchain_operations.schema.json +21 -17
  68. package/dist/schemas/onchain_operations_allocation.schema.json +11 -9
  69. package/dist/schemas/onchain_operations_arbitration.schema.json +11 -9
  70. package/dist/schemas/onchain_operations_contact.schema.json +11 -9
  71. package/dist/schemas/onchain_operations_demand.schema.json +11 -9
  72. package/dist/schemas/onchain_operations_gen_passport.schema.json +21 -17
  73. package/dist/schemas/onchain_operations_guard.schema.json +11 -9
  74. package/dist/schemas/onchain_operations_machine.schema.json +11 -9
  75. package/dist/schemas/onchain_operations_order.schema.json +11 -9
  76. package/dist/schemas/onchain_operations_payment.schema.json +11 -9
  77. package/dist/schemas/onchain_operations_permission.schema.json +11 -9
  78. package/dist/schemas/onchain_operations_personal.schema.json +11 -9
  79. package/dist/schemas/onchain_operations_progress.schema.json +11 -9
  80. package/dist/schemas/onchain_operations_repository.schema.json +11 -9
  81. package/dist/schemas/onchain_operations_reward.schema.json +11 -9
  82. package/dist/schemas/onchain_operations_service.schema.json +11 -9
  83. package/dist/schemas/onchain_operations_treasury.schema.json +11 -9
  84. package/dist/schemas/onchain_table_data.output.json +3 -0
  85. package/dist/schemas/query_toolkit.schema.json +5 -1
  86. package/dist/telemetry/index.d.ts +19 -0
  87. package/dist/telemetry/index.js +112 -0
  88. package/dist/telemetry/redact.d.ts +2 -0
  89. package/dist/telemetry/redact.js +23 -0
  90. package/dist/telemetry/storage.d.ts +8 -0
  91. package/dist/telemetry/storage.js +80 -0
  92. package/package.json +6 -3
@@ -588,6 +588,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
588
588
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
589
589
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
590
590
  }, "strip", z.ZodTypeAny, {
591
+ sharing: string | number;
591
592
  who: {
592
593
  GuardIdentifier: number;
593
594
  } | {
@@ -598,9 +599,9 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
598
599
  } | {
599
600
  Signer: "signer";
600
601
  };
601
- sharing: string | number;
602
602
  mode: "Amount" | "Rate" | "Surplus";
603
603
  }, {
604
+ sharing: string | number;
604
605
  who: {
605
606
  GuardIdentifier: number;
606
607
  } | {
@@ -611,7 +612,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
611
612
  } | {
612
613
  Signer: "signer";
613
614
  };
614
- sharing: string | number;
615
615
  mode: "Amount" | "Rate" | "Surplus";
616
616
  }>, "many">;
617
617
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -619,6 +619,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
619
619
  }, "strip", z.ZodTypeAny, {
620
620
  guard: string;
621
621
  sharing: {
622
+ sharing: string | number;
622
623
  who: {
623
624
  GuardIdentifier: number;
624
625
  } | {
@@ -629,7 +630,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
629
630
  } | {
630
631
  Signer: "signer";
631
632
  };
632
- sharing: string | number;
633
633
  mode: "Amount" | "Rate" | "Surplus";
634
634
  }[];
635
635
  max?: string | number | null | undefined;
@@ -637,6 +637,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
637
637
  }, {
638
638
  guard: string;
639
639
  sharing: {
640
+ sharing: string | number;
640
641
  who: {
641
642
  GuardIdentifier: number;
642
643
  } | {
@@ -647,7 +648,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
647
648
  } | {
648
649
  Signer: "signer";
649
650
  };
650
- sharing: string | number;
651
651
  mode: "Amount" | "Rate" | "Surplus";
652
652
  }[];
653
653
  max?: string | number | null | undefined;
@@ -655,10 +655,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
655
655
  }>, "many">;
656
656
  }, "strip", z.ZodTypeAny, {
657
657
  description: string;
658
- threshold: string | number;
659
658
  allocators: {
660
659
  guard: string;
661
660
  sharing: {
661
+ sharing: string | number;
662
662
  who: {
663
663
  GuardIdentifier: number;
664
664
  } | {
@@ -669,18 +669,18 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
669
669
  } | {
670
670
  Signer: "signer";
671
671
  };
672
- sharing: string | number;
673
672
  mode: "Amount" | "Rate" | "Surplus";
674
673
  }[];
675
674
  max?: string | number | null | undefined;
676
675
  fix?: string | number | undefined;
677
676
  }[];
677
+ threshold: string | number;
678
678
  }, {
679
679
  description: string;
680
- threshold: string | number;
681
680
  allocators: {
682
681
  guard: string;
683
682
  sharing: {
683
+ sharing: string | number;
684
684
  who: {
685
685
  GuardIdentifier: number;
686
686
  } | {
@@ -691,12 +691,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
691
691
  } | {
692
692
  Signer: "signer";
693
693
  };
694
- sharing: string | number;
695
694
  mode: "Amount" | "Rate" | "Surplus";
696
695
  }[];
697
696
  max?: string | number | null | undefined;
698
697
  fix?: string | number | undefined;
699
698
  }[];
699
+ threshold: string | number;
700
700
  }>, z.ZodNull]>>;
701
701
  buy_guard: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
702
702
  compensation_fund_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -810,6 +810,25 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
810
810
  } | undefined;
811
811
  };
812
812
  description?: string | undefined;
813
+ publish?: boolean | undefined;
814
+ machine?: string | null | undefined;
815
+ discount?: {
816
+ name: string;
817
+ recipient: {
818
+ entities: {
819
+ name_or_address?: string | undefined;
820
+ local_mark_first?: boolean | undefined;
821
+ }[];
822
+ check_all_founded?: boolean | undefined;
823
+ };
824
+ count: number;
825
+ discount_type: import("@wowok/wowok").DiscountType;
826
+ transferable: boolean;
827
+ discount_value: string | number;
828
+ time_ms_end: number;
829
+ benchmark?: string | number | undefined;
830
+ time_ms_start?: number | undefined;
831
+ } | undefined;
813
832
  location?: string | undefined;
814
833
  owner_receive?: {
815
834
  received: {
@@ -834,24 +853,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
834
853
  op: "clear";
835
854
  } | undefined;
836
855
  um?: string | null | undefined;
837
- discount?: {
838
- name: string;
839
- recipient: {
840
- entities: {
841
- name_or_address?: string | undefined;
842
- local_mark_first?: boolean | undefined;
843
- }[];
844
- check_all_founded?: boolean | undefined;
845
- };
846
- count: number;
847
- discount_type: import("@wowok/wowok").DiscountType;
848
- transferable: boolean;
849
- discount_value: string | number;
850
- time_ms_end: number;
851
- benchmark?: string | number | undefined;
852
- time_ms_start?: number | undefined;
853
- } | undefined;
854
- machine?: string | null | undefined;
855
856
  sales?: {
856
857
  op: "add";
857
858
  sales: {
@@ -900,10 +901,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
900
901
  } | undefined;
901
902
  order_allocators?: {
902
903
  description: string;
903
- threshold: string | number;
904
904
  allocators: {
905
905
  guard: string;
906
906
  sharing: {
907
+ sharing: string | number;
907
908
  who: {
908
909
  GuardIdentifier: number;
909
910
  } | {
@@ -914,15 +915,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
914
915
  } | {
915
916
  Signer: "signer";
916
917
  };
917
- sharing: string | number;
918
918
  mode: "Amount" | "Rate" | "Surplus";
919
919
  }[];
920
920
  max?: string | number | null | undefined;
921
921
  fix?: string | number | undefined;
922
922
  }[];
923
+ threshold: string | number;
923
924
  } | null | undefined;
924
925
  pause?: boolean | undefined;
925
- publish?: boolean | undefined;
926
926
  order_new?: {
927
927
  buy: {
928
928
  items: {
@@ -1002,6 +1002,25 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1002
1002
  } | undefined;
1003
1003
  };
1004
1004
  description?: string | undefined;
1005
+ publish?: boolean | undefined;
1006
+ machine?: string | null | undefined;
1007
+ discount?: {
1008
+ name: string;
1009
+ recipient: {
1010
+ entities: {
1011
+ name_or_address?: string | undefined;
1012
+ local_mark_first?: boolean | undefined;
1013
+ }[];
1014
+ check_all_founded?: boolean | undefined;
1015
+ };
1016
+ count: number;
1017
+ discount_type: import("@wowok/wowok").DiscountType;
1018
+ transferable: boolean;
1019
+ discount_value: string | number;
1020
+ time_ms_end: number;
1021
+ benchmark?: string | number | undefined;
1022
+ time_ms_start?: number | undefined;
1023
+ } | undefined;
1005
1024
  location?: string | undefined;
1006
1025
  owner_receive?: {
1007
1026
  received: {
@@ -1026,24 +1045,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1026
1045
  op: "clear";
1027
1046
  } | undefined;
1028
1047
  um?: string | null | undefined;
1029
- discount?: {
1030
- name: string;
1031
- recipient: {
1032
- entities: {
1033
- name_or_address?: string | undefined;
1034
- local_mark_first?: boolean | undefined;
1035
- }[];
1036
- check_all_founded?: boolean | undefined;
1037
- };
1038
- count: number;
1039
- discount_type: import("@wowok/wowok").DiscountType;
1040
- transferable: boolean;
1041
- discount_value: string | number;
1042
- time_ms_end: number;
1043
- benchmark?: string | number | undefined;
1044
- time_ms_start?: number | undefined;
1045
- } | undefined;
1046
- machine?: string | null | undefined;
1047
1048
  sales?: {
1048
1049
  op: "add";
1049
1050
  sales: {
@@ -1092,10 +1093,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1092
1093
  } | undefined;
1093
1094
  order_allocators?: {
1094
1095
  description: string;
1095
- threshold: string | number;
1096
1096
  allocators: {
1097
1097
  guard: string;
1098
1098
  sharing: {
1099
+ sharing: string | number;
1099
1100
  who: {
1100
1101
  GuardIdentifier: number;
1101
1102
  } | {
@@ -1106,15 +1107,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1106
1107
  } | {
1107
1108
  Signer: "signer";
1108
1109
  };
1109
- sharing: string | number;
1110
1110
  mode: "Amount" | "Rate" | "Surplus";
1111
1111
  }[];
1112
1112
  max?: string | number | null | undefined;
1113
1113
  fix?: string | number | undefined;
1114
1114
  }[];
1115
+ threshold: string | number;
1115
1116
  } | null | undefined;
1116
1117
  pause?: boolean | undefined;
1117
- publish?: boolean | undefined;
1118
1118
  order_new?: {
1119
1119
  buy: {
1120
1120
  items: {
@@ -1395,6 +1395,25 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1395
1395
  } | undefined;
1396
1396
  };
1397
1397
  description?: string | undefined;
1398
+ publish?: boolean | undefined;
1399
+ machine?: string | null | undefined;
1400
+ discount?: {
1401
+ name: string;
1402
+ recipient: {
1403
+ entities: {
1404
+ name_or_address?: string | undefined;
1405
+ local_mark_first?: boolean | undefined;
1406
+ }[];
1407
+ check_all_founded?: boolean | undefined;
1408
+ };
1409
+ count: number;
1410
+ discount_type: import("@wowok/wowok").DiscountType;
1411
+ transferable: boolean;
1412
+ discount_value: string | number;
1413
+ time_ms_end: number;
1414
+ benchmark?: string | number | undefined;
1415
+ time_ms_start?: number | undefined;
1416
+ } | undefined;
1398
1417
  location?: string | undefined;
1399
1418
  owner_receive?: {
1400
1419
  received: {
@@ -1419,24 +1438,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1419
1438
  op: "clear";
1420
1439
  } | undefined;
1421
1440
  um?: string | null | undefined;
1422
- discount?: {
1423
- name: string;
1424
- recipient: {
1425
- entities: {
1426
- name_or_address?: string | undefined;
1427
- local_mark_first?: boolean | undefined;
1428
- }[];
1429
- check_all_founded?: boolean | undefined;
1430
- };
1431
- count: number;
1432
- discount_type: import("@wowok/wowok").DiscountType;
1433
- transferable: boolean;
1434
- discount_value: string | number;
1435
- time_ms_end: number;
1436
- benchmark?: string | number | undefined;
1437
- time_ms_start?: number | undefined;
1438
- } | undefined;
1439
- machine?: string | null | undefined;
1440
1441
  sales?: {
1441
1442
  op: "add";
1442
1443
  sales: {
@@ -1485,10 +1486,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1485
1486
  } | undefined;
1486
1487
  order_allocators?: {
1487
1488
  description: string;
1488
- threshold: string | number;
1489
1489
  allocators: {
1490
1490
  guard: string;
1491
1491
  sharing: {
1492
+ sharing: string | number;
1492
1493
  who: {
1493
1494
  GuardIdentifier: number;
1494
1495
  } | {
@@ -1499,15 +1500,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1499
1500
  } | {
1500
1501
  Signer: "signer";
1501
1502
  };
1502
- sharing: string | number;
1503
1503
  mode: "Amount" | "Rate" | "Surplus";
1504
1504
  }[];
1505
1505
  max?: string | number | null | undefined;
1506
1506
  fix?: string | number | undefined;
1507
1507
  }[];
1508
+ threshold: string | number;
1508
1509
  } | null | undefined;
1509
1510
  pause?: boolean | undefined;
1510
- publish?: boolean | undefined;
1511
1511
  order_new?: {
1512
1512
  buy: {
1513
1513
  items: {
@@ -1624,6 +1624,25 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1624
1624
  } | undefined;
1625
1625
  };
1626
1626
  description?: string | undefined;
1627
+ publish?: boolean | undefined;
1628
+ machine?: string | null | undefined;
1629
+ discount?: {
1630
+ name: string;
1631
+ recipient: {
1632
+ entities: {
1633
+ name_or_address?: string | undefined;
1634
+ local_mark_first?: boolean | undefined;
1635
+ }[];
1636
+ check_all_founded?: boolean | undefined;
1637
+ };
1638
+ count: number;
1639
+ discount_type: import("@wowok/wowok").DiscountType;
1640
+ transferable: boolean;
1641
+ discount_value: string | number;
1642
+ time_ms_end: number;
1643
+ benchmark?: string | number | undefined;
1644
+ time_ms_start?: number | undefined;
1645
+ } | undefined;
1627
1646
  location?: string | undefined;
1628
1647
  owner_receive?: {
1629
1648
  received: {
@@ -1648,24 +1667,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1648
1667
  op: "clear";
1649
1668
  } | undefined;
1650
1669
  um?: string | null | undefined;
1651
- discount?: {
1652
- name: string;
1653
- recipient: {
1654
- entities: {
1655
- name_or_address?: string | undefined;
1656
- local_mark_first?: boolean | undefined;
1657
- }[];
1658
- check_all_founded?: boolean | undefined;
1659
- };
1660
- count: number;
1661
- discount_type: import("@wowok/wowok").DiscountType;
1662
- transferable: boolean;
1663
- discount_value: string | number;
1664
- time_ms_end: number;
1665
- benchmark?: string | number | undefined;
1666
- time_ms_start?: number | undefined;
1667
- } | undefined;
1668
- machine?: string | null | undefined;
1669
1670
  sales?: {
1670
1671
  op: "add";
1671
1672
  sales: {
@@ -1714,10 +1715,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1714
1715
  } | undefined;
1715
1716
  order_allocators?: {
1716
1717
  description: string;
1717
- threshold: string | number;
1718
1718
  allocators: {
1719
1719
  guard: string;
1720
1720
  sharing: {
1721
+ sharing: string | number;
1721
1722
  who: {
1722
1723
  GuardIdentifier: number;
1723
1724
  } | {
@@ -1728,15 +1729,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1728
1729
  } | {
1729
1730
  Signer: "signer";
1730
1731
  };
1731
- sharing: string | number;
1732
1732
  mode: "Amount" | "Rate" | "Surplus";
1733
1733
  }[];
1734
1734
  max?: string | number | null | undefined;
1735
1735
  fix?: string | number | undefined;
1736
1736
  }[];
1737
+ threshold: string | number;
1737
1738
  } | null | undefined;
1738
1739
  pause?: boolean | undefined;
1739
- publish?: boolean | undefined;
1740
1740
  order_new?: {
1741
1741
  buy: {
1742
1742
  items: {
@@ -1983,13 +1983,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1983
1983
  onChain?: boolean | undefined;
1984
1984
  }>>;
1985
1985
  }, "strict", z.ZodTypeAny, {
1986
- task?: string | null | undefined;
1987
- namedNew?: {
1988
- name?: string | undefined;
1989
- replaceExistName?: boolean | undefined;
1990
- tags?: string[] | undefined;
1991
- onChain?: boolean | undefined;
1992
- } | undefined;
1993
1986
  repository?: {
1994
1987
  op: "set" | "add";
1995
1988
  objects: string[];
@@ -1999,6 +1992,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1999
1992
  } | {
2000
1993
  op: "clear";
2001
1994
  } | undefined;
1995
+ task?: string | null | undefined;
1996
+ namedNew?: {
1997
+ name?: string | undefined;
1998
+ replaceExistName?: boolean | undefined;
1999
+ tags?: string[] | undefined;
2000
+ onChain?: boolean | undefined;
2001
+ } | undefined;
2002
2002
  progress_namedOperator?: {
2003
2003
  name: string;
2004
2004
  op: "set" | "add" | "remove";
@@ -2011,13 +2011,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2011
2011
  };
2012
2012
  } | undefined;
2013
2013
  }, {
2014
- task?: string | null | undefined;
2015
- namedNew?: {
2016
- name?: string | undefined;
2017
- replaceExistName?: boolean | undefined;
2018
- tags?: string[] | undefined;
2019
- onChain?: boolean | undefined;
2020
- } | undefined;
2021
2014
  repository?: {
2022
2015
  op: "set" | "add";
2023
2016
  objects: string[];
@@ -2027,6 +2020,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2027
2020
  } | {
2028
2021
  op: "clear";
2029
2022
  } | undefined;
2023
+ task?: string | null | undefined;
2024
+ namedNew?: {
2025
+ name?: string | undefined;
2026
+ replaceExistName?: boolean | undefined;
2027
+ tags?: string[] | undefined;
2028
+ onChain?: boolean | undefined;
2029
+ } | undefined;
2030
2030
  progress_namedOperator?: {
2031
2031
  name: string;
2032
2032
  op: "set" | "add" | "remove";
@@ -2614,6 +2614,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2614
2614
  } | undefined;
2615
2615
  };
2616
2616
  description?: string | undefined;
2617
+ publish?: boolean | undefined;
2618
+ repository?: {
2619
+ op: "set" | "add";
2620
+ objects: string[];
2621
+ } | {
2622
+ op: "remove";
2623
+ objects: string[];
2624
+ } | {
2625
+ op: "clear";
2626
+ } | undefined;
2617
2627
  owner_receive?: {
2618
2628
  received: {
2619
2629
  id: string;
@@ -2714,23 +2724,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2714
2724
  } | {
2715
2725
  json_or_markdown_file: string;
2716
2726
  } | undefined;
2717
- repository?: {
2718
- op: "set" | "add";
2719
- objects: string[];
2720
- } | {
2721
- op: "remove";
2722
- objects: string[];
2723
- } | {
2724
- op: "clear";
2725
- } | undefined;
2726
2727
  progress_new?: {
2727
- task?: string | null | undefined;
2728
- namedNew?: {
2729
- name?: string | undefined;
2730
- replaceExistName?: boolean | undefined;
2731
- tags?: string[] | undefined;
2732
- onChain?: boolean | undefined;
2733
- } | undefined;
2734
2728
  repository?: {
2735
2729
  op: "set" | "add";
2736
2730
  objects: string[];
@@ -2740,6 +2734,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2740
2734
  } | {
2741
2735
  op: "clear";
2742
2736
  } | undefined;
2737
+ task?: string | null | undefined;
2738
+ namedNew?: {
2739
+ name?: string | undefined;
2740
+ replaceExistName?: boolean | undefined;
2741
+ tags?: string[] | undefined;
2742
+ onChain?: boolean | undefined;
2743
+ } | undefined;
2743
2744
  progress_namedOperator?: {
2744
2745
  name: string;
2745
2746
  op: "set" | "add" | "remove";
@@ -2753,7 +2754,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2753
2754
  } | undefined;
2754
2755
  } | undefined;
2755
2756
  pause?: boolean | undefined;
2756
- publish?: boolean | undefined;
2757
2757
  }, {
2758
2758
  object: string | {
2759
2759
  name?: string | undefined;
@@ -2769,6 +2769,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2769
2769
  } | undefined;
2770
2770
  };
2771
2771
  description?: string | undefined;
2772
+ publish?: boolean | undefined;
2773
+ repository?: {
2774
+ op: "set" | "add";
2775
+ objects: string[];
2776
+ } | {
2777
+ op: "remove";
2778
+ objects: string[];
2779
+ } | {
2780
+ op: "clear";
2781
+ } | undefined;
2772
2782
  owner_receive?: {
2773
2783
  received: {
2774
2784
  id: string;
@@ -2869,23 +2879,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2869
2879
  } | {
2870
2880
  json_or_markdown_file: string;
2871
2881
  } | undefined;
2872
- repository?: {
2873
- op: "set" | "add";
2874
- objects: string[];
2875
- } | {
2876
- op: "remove";
2877
- objects: string[];
2878
- } | {
2879
- op: "clear";
2880
- } | undefined;
2881
2882
  progress_new?: {
2882
- task?: string | null | undefined;
2883
- namedNew?: {
2884
- name?: string | undefined;
2885
- replaceExistName?: boolean | undefined;
2886
- tags?: string[] | undefined;
2887
- onChain?: boolean | undefined;
2888
- } | undefined;
2889
2883
  repository?: {
2890
2884
  op: "set" | "add";
2891
2885
  objects: string[];
@@ -2895,6 +2889,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2895
2889
  } | {
2896
2890
  op: "clear";
2897
2891
  } | undefined;
2892
+ task?: string | null | undefined;
2893
+ namedNew?: {
2894
+ name?: string | undefined;
2895
+ replaceExistName?: boolean | undefined;
2896
+ tags?: string[] | undefined;
2897
+ onChain?: boolean | undefined;
2898
+ } | undefined;
2898
2899
  progress_namedOperator?: {
2899
2900
  name: string;
2900
2901
  op: "set" | "add" | "remove";
@@ -2908,7 +2909,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2908
2909
  } | undefined;
2909
2910
  } | undefined;
2910
2911
  pause?: boolean | undefined;
2911
- publish?: boolean | undefined;
2912
2912
  }>;
2913
2913
  env: z.ZodOptional<z.ZodObject<{
2914
2914
  account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
@@ -3125,6 +3125,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3125
3125
  } | undefined;
3126
3126
  };
3127
3127
  description?: string | undefined;
3128
+ publish?: boolean | undefined;
3129
+ repository?: {
3130
+ op: "set" | "add";
3131
+ objects: string[];
3132
+ } | {
3133
+ op: "remove";
3134
+ objects: string[];
3135
+ } | {
3136
+ op: "clear";
3137
+ } | undefined;
3128
3138
  owner_receive?: {
3129
3139
  received: {
3130
3140
  id: string;
@@ -3225,23 +3235,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3225
3235
  } | {
3226
3236
  json_or_markdown_file: string;
3227
3237
  } | undefined;
3228
- repository?: {
3229
- op: "set" | "add";
3230
- objects: string[];
3231
- } | {
3232
- op: "remove";
3233
- objects: string[];
3234
- } | {
3235
- op: "clear";
3236
- } | undefined;
3237
3238
  progress_new?: {
3238
- task?: string | null | undefined;
3239
- namedNew?: {
3240
- name?: string | undefined;
3241
- replaceExistName?: boolean | undefined;
3242
- tags?: string[] | undefined;
3243
- onChain?: boolean | undefined;
3244
- } | undefined;
3245
3239
  repository?: {
3246
3240
  op: "set" | "add";
3247
3241
  objects: string[];
@@ -3251,6 +3245,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3251
3245
  } | {
3252
3246
  op: "clear";
3253
3247
  } | undefined;
3248
+ task?: string | null | undefined;
3249
+ namedNew?: {
3250
+ name?: string | undefined;
3251
+ replaceExistName?: boolean | undefined;
3252
+ tags?: string[] | undefined;
3253
+ onChain?: boolean | undefined;
3254
+ } | undefined;
3254
3255
  progress_namedOperator?: {
3255
3256
  name: string;
3256
3257
  op: "set" | "add" | "remove";
@@ -3264,7 +3265,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3264
3265
  } | undefined;
3265
3266
  } | undefined;
3266
3267
  pause?: boolean | undefined;
3267
- publish?: boolean | undefined;
3268
3268
  };
3269
3269
  operation_type: "machine";
3270
3270
  submission?: {
@@ -3317,6 +3317,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3317
3317
  } | undefined;
3318
3318
  };
3319
3319
  description?: string | undefined;
3320
+ publish?: boolean | undefined;
3321
+ repository?: {
3322
+ op: "set" | "add";
3323
+ objects: string[];
3324
+ } | {
3325
+ op: "remove";
3326
+ objects: string[];
3327
+ } | {
3328
+ op: "clear";
3329
+ } | undefined;
3320
3330
  owner_receive?: {
3321
3331
  received: {
3322
3332
  id: string;
@@ -3417,23 +3427,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3417
3427
  } | {
3418
3428
  json_or_markdown_file: string;
3419
3429
  } | undefined;
3420
- repository?: {
3421
- op: "set" | "add";
3422
- objects: string[];
3423
- } | {
3424
- op: "remove";
3425
- objects: string[];
3426
- } | {
3427
- op: "clear";
3428
- } | undefined;
3429
3430
  progress_new?: {
3430
- task?: string | null | undefined;
3431
- namedNew?: {
3432
- name?: string | undefined;
3433
- replaceExistName?: boolean | undefined;
3434
- tags?: string[] | undefined;
3435
- onChain?: boolean | undefined;
3436
- } | undefined;
3437
3431
  repository?: {
3438
3432
  op: "set" | "add";
3439
3433
  objects: string[];
@@ -3443,6 +3437,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3443
3437
  } | {
3444
3438
  op: "clear";
3445
3439
  } | undefined;
3440
+ task?: string | null | undefined;
3441
+ namedNew?: {
3442
+ name?: string | undefined;
3443
+ replaceExistName?: boolean | undefined;
3444
+ tags?: string[] | undefined;
3445
+ onChain?: boolean | undefined;
3446
+ } | undefined;
3446
3447
  progress_namedOperator?: {
3447
3448
  name: string;
3448
3449
  op: "set" | "add" | "remove";
@@ -3456,7 +3457,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3456
3457
  } | undefined;
3457
3458
  } | undefined;
3458
3459
  pause?: boolean | undefined;
3459
- publish?: boolean | undefined;
3460
3460
  };
3461
3461
  operation_type: "machine";
3462
3462
  submission?: {
@@ -3605,7 +3605,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3605
3605
  }>>;
3606
3606
  }, "strict", z.ZodTypeAny, {
3607
3607
  object: string;
3608
- task?: string | undefined;
3609
3608
  repository?: {
3610
3609
  op: "set" | "add";
3611
3610
  objects: string[];
@@ -3615,6 +3614,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3615
3614
  } | {
3616
3615
  op: "clear";
3617
3616
  } | undefined;
3617
+ task?: string | undefined;
3618
3618
  progress_namedOperator?: {
3619
3619
  name: string;
3620
3620
  op: "set" | "add" | "remove";
@@ -3637,7 +3637,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3637
3637
  } | undefined;
3638
3638
  }, {
3639
3639
  object: string;
3640
- task?: string | undefined;
3641
3640
  repository?: {
3642
3641
  op: "set" | "add";
3643
3642
  objects: string[];
@@ -3647,6 +3646,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3647
3646
  } | {
3648
3647
  op: "clear";
3649
3648
  } | undefined;
3649
+ task?: string | undefined;
3650
3650
  progress_namedOperator?: {
3651
3651
  name: string;
3652
3652
  op: "set" | "add" | "remove";
@@ -3870,7 +3870,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3870
3870
  }, "strip", z.ZodTypeAny, {
3871
3871
  data: {
3872
3872
  object: string;
3873
- task?: string | undefined;
3874
3873
  repository?: {
3875
3874
  op: "set" | "add";
3876
3875
  objects: string[];
@@ -3880,6 +3879,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3880
3879
  } | {
3881
3880
  op: "clear";
3882
3881
  } | undefined;
3882
+ task?: string | undefined;
3883
3883
  progress_namedOperator?: {
3884
3884
  name: string;
3885
3885
  op: "set" | "add" | "remove";
@@ -3939,7 +3939,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3939
3939
  }, {
3940
3940
  data: {
3941
3941
  object: string;
3942
- task?: string | undefined;
3943
3942
  repository?: {
3944
3943
  op: "set" | "add";
3945
3944
  objects: string[];
@@ -3949,6 +3948,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3949
3948
  } | {
3950
3949
  op: "clear";
3951
3950
  } | undefined;
3951
+ task?: string | undefined;
3952
3952
  progress_namedOperator?: {
3953
3953
  name: string;
3954
3954
  op: "set" | "add" | "remove";
@@ -5181,67 +5181,67 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5181
5181
  arb: z.ZodEffects<z.ZodString, string, string>;
5182
5182
  voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
5183
5183
  }, "strict", z.ZodTypeAny, {
5184
- voting_deadline: number | null;
5185
5184
  arb: string;
5186
- }, {
5187
5185
  voting_deadline: number | null;
5186
+ }, {
5188
5187
  arb: string;
5188
+ voting_deadline: number | null;
5189
5189
  }>>;
5190
5190
  voting_deadline_change: z.ZodOptional<z.ZodObject<{
5191
5191
  arb: z.ZodEffects<z.ZodString, string, string>;
5192
5192
  voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
5193
5193
  }, "strict", z.ZodTypeAny, {
5194
- voting_deadline: number | null;
5195
5194
  arb: string;
5196
- }, {
5197
5195
  voting_deadline: number | null;
5196
+ }, {
5198
5197
  arb: string;
5198
+ voting_deadline: number | null;
5199
5199
  }>>;
5200
5200
  vote: z.ZodOptional<z.ZodObject<{
5201
5201
  arb: z.ZodEffects<z.ZodString, string, string>;
5202
5202
  votes: z.ZodArray<z.ZodNumber, "many">;
5203
5203
  voting_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
5204
5204
  }, "strict", z.ZodTypeAny, {
5205
- votes: number[];
5206
5205
  arb: string;
5206
+ votes: number[];
5207
5207
  voting_guard?: string | undefined;
5208
5208
  }, {
5209
- votes: number[];
5210
5209
  arb: string;
5210
+ votes: number[];
5211
5211
  voting_guard?: string | undefined;
5212
5212
  }>>;
5213
5213
  feedback: z.ZodOptional<z.ZodObject<{
5214
5214
  arb: z.ZodEffects<z.ZodString, string, string>;
5215
5215
  feedback: z.ZodEffects<z.ZodString, string, string>;
5216
5216
  }, "strict", z.ZodTypeAny, {
5217
- feedback: string;
5218
5217
  arb: string;
5219
- }, {
5220
5218
  feedback: string;
5219
+ }, {
5221
5220
  arb: string;
5221
+ feedback: string;
5222
5222
  }>>;
5223
5223
  arbitration: z.ZodOptional<z.ZodObject<{
5224
5224
  arb: z.ZodEffects<z.ZodString, string, string>;
5225
5225
  feedback: z.ZodEffects<z.ZodString, string, string>;
5226
5226
  indemnity: z.ZodNumber;
5227
5227
  }, "strict", z.ZodTypeAny, {
5228
+ arb: string;
5228
5229
  feedback: string;
5229
5230
  indemnity: number;
5230
- arb: string;
5231
5231
  }, {
5232
+ arb: string;
5232
5233
  feedback: string;
5233
5234
  indemnity: number;
5234
- arb: string;
5235
5235
  }>>;
5236
5236
  reset: z.ZodOptional<z.ZodObject<{
5237
5237
  arb: z.ZodEffects<z.ZodString, string, string>;
5238
5238
  feedback: z.ZodEffects<z.ZodString, string, string>;
5239
5239
  }, "strict", z.ZodTypeAny, {
5240
- feedback: string;
5241
5240
  arb: string;
5242
- }, {
5243
5241
  feedback: string;
5242
+ }, {
5244
5243
  arb: string;
5244
+ feedback: string;
5245
5245
  }>>;
5246
5246
  arb_withdraw: z.ZodOptional<z.ZodObject<{
5247
5247
  arb: z.ZodEffects<z.ZodString, string, string>;
@@ -5443,8 +5443,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5443
5443
  };
5444
5444
  description?: string | undefined;
5445
5445
  reset?: {
5446
+ arb: string;
5446
5447
  feedback: string;
5448
+ } | undefined;
5449
+ arbitration?: {
5447
5450
  arb: string;
5451
+ feedback: string;
5452
+ indemnity: number;
5448
5453
  } | undefined;
5449
5454
  location?: string | undefined;
5450
5455
  owner_receive?: {
@@ -5477,15 +5482,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5477
5482
  onChain?: boolean | undefined;
5478
5483
  } | undefined;
5479
5484
  } | undefined;
5480
- arbitration?: {
5481
- feedback: string;
5482
- indemnity: number;
5483
- arb: string;
5484
- } | undefined;
5485
5485
  fee?: string | number | undefined;
5486
5486
  feedback?: {
5487
- feedback: string;
5488
5487
  arb: string;
5488
+ feedback: string;
5489
5489
  } | undefined;
5490
5490
  voting_guard?: {
5491
5491
  op: "set" | "add";
@@ -5506,16 +5506,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5506
5506
  usage_guard?: string | null | undefined;
5507
5507
  pause?: boolean | undefined;
5508
5508
  confirm?: {
5509
- voting_deadline: number | null;
5510
5509
  arb: string;
5510
+ voting_deadline: number | null;
5511
5511
  } | undefined;
5512
5512
  voting_deadline_change?: {
5513
- voting_deadline: number | null;
5514
5513
  arb: string;
5514
+ voting_deadline: number | null;
5515
5515
  } | undefined;
5516
5516
  vote?: {
5517
- votes: number[];
5518
5517
  arb: string;
5518
+ votes: number[];
5519
5519
  voting_guard?: string | undefined;
5520
5520
  } | undefined;
5521
5521
  arb_withdraw?: {
@@ -5553,8 +5553,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5553
5553
  };
5554
5554
  description?: string | undefined;
5555
5555
  reset?: {
5556
+ arb: string;
5556
5557
  feedback: string;
5558
+ } | undefined;
5559
+ arbitration?: {
5557
5560
  arb: string;
5561
+ feedback: string;
5562
+ indemnity: number;
5558
5563
  } | undefined;
5559
5564
  location?: string | undefined;
5560
5565
  owner_receive?: {
@@ -5587,15 +5592,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5587
5592
  onChain?: boolean | undefined;
5588
5593
  } | undefined;
5589
5594
  } | undefined;
5590
- arbitration?: {
5591
- feedback: string;
5592
- indemnity: number;
5593
- arb: string;
5594
- } | undefined;
5595
5595
  fee?: string | number | undefined;
5596
5596
  feedback?: {
5597
- feedback: string;
5598
5597
  arb: string;
5598
+ feedback: string;
5599
5599
  } | undefined;
5600
5600
  voting_guard?: {
5601
5601
  op: "set" | "add";
@@ -5616,16 +5616,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5616
5616
  usage_guard?: string | null | undefined;
5617
5617
  pause?: boolean | undefined;
5618
5618
  confirm?: {
5619
- voting_deadline: number | null;
5620
5619
  arb: string;
5620
+ voting_deadline: number | null;
5621
5621
  } | undefined;
5622
5622
  voting_deadline_change?: {
5623
- voting_deadline: number | null;
5624
5623
  arb: string;
5624
+ voting_deadline: number | null;
5625
5625
  } | undefined;
5626
5626
  vote?: {
5627
- votes: number[];
5628
5627
  arb: string;
5628
+ votes: number[];
5629
5629
  voting_guard?: string | undefined;
5630
5630
  } | undefined;
5631
5631
  arb_withdraw?: {
@@ -5864,8 +5864,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5864
5864
  };
5865
5865
  description?: string | undefined;
5866
5866
  reset?: {
5867
+ arb: string;
5867
5868
  feedback: string;
5869
+ } | undefined;
5870
+ arbitration?: {
5868
5871
  arb: string;
5872
+ feedback: string;
5873
+ indemnity: number;
5869
5874
  } | undefined;
5870
5875
  location?: string | undefined;
5871
5876
  owner_receive?: {
@@ -5898,15 +5903,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5898
5903
  onChain?: boolean | undefined;
5899
5904
  } | undefined;
5900
5905
  } | undefined;
5901
- arbitration?: {
5902
- feedback: string;
5903
- indemnity: number;
5904
- arb: string;
5905
- } | undefined;
5906
5906
  fee?: string | number | undefined;
5907
5907
  feedback?: {
5908
- feedback: string;
5909
5908
  arb: string;
5909
+ feedback: string;
5910
5910
  } | undefined;
5911
5911
  voting_guard?: {
5912
5912
  op: "set" | "add";
@@ -5927,16 +5927,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5927
5927
  usage_guard?: string | null | undefined;
5928
5928
  pause?: boolean | undefined;
5929
5929
  confirm?: {
5930
- voting_deadline: number | null;
5931
5930
  arb: string;
5931
+ voting_deadline: number | null;
5932
5932
  } | undefined;
5933
5933
  voting_deadline_change?: {
5934
- voting_deadline: number | null;
5935
5934
  arb: string;
5935
+ voting_deadline: number | null;
5936
5936
  } | undefined;
5937
5937
  vote?: {
5938
- votes: number[];
5939
5938
  arb: string;
5939
+ votes: number[];
5940
5940
  voting_guard?: string | undefined;
5941
5941
  } | undefined;
5942
5942
  arb_withdraw?: {
@@ -6011,8 +6011,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6011
6011
  };
6012
6012
  description?: string | undefined;
6013
6013
  reset?: {
6014
+ arb: string;
6014
6015
  feedback: string;
6016
+ } | undefined;
6017
+ arbitration?: {
6015
6018
  arb: string;
6019
+ feedback: string;
6020
+ indemnity: number;
6016
6021
  } | undefined;
6017
6022
  location?: string | undefined;
6018
6023
  owner_receive?: {
@@ -6045,15 +6050,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6045
6050
  onChain?: boolean | undefined;
6046
6051
  } | undefined;
6047
6052
  } | undefined;
6048
- arbitration?: {
6049
- feedback: string;
6050
- indemnity: number;
6051
- arb: string;
6052
- } | undefined;
6053
6053
  fee?: string | number | undefined;
6054
6054
  feedback?: {
6055
- feedback: string;
6056
6055
  arb: string;
6056
+ feedback: string;
6057
6057
  } | undefined;
6058
6058
  voting_guard?: {
6059
6059
  op: "set" | "add";
@@ -6074,16 +6074,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6074
6074
  usage_guard?: string | null | undefined;
6075
6075
  pause?: boolean | undefined;
6076
6076
  confirm?: {
6077
- voting_deadline: number | null;
6078
6077
  arb: string;
6078
+ voting_deadline: number | null;
6079
6079
  } | undefined;
6080
6080
  voting_deadline_change?: {
6081
- voting_deadline: number | null;
6082
6081
  arb: string;
6082
+ voting_deadline: number | null;
6083
6083
  } | undefined;
6084
6084
  vote?: {
6085
- votes: number[];
6086
6085
  arb: string;
6086
+ votes: number[];
6087
6087
  voting_guard?: string | undefined;
6088
6088
  } | undefined;
6089
6089
  arb_withdraw?: {
@@ -7261,6 +7261,49 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7261
7261
  } | undefined;
7262
7262
  };
7263
7263
  description?: string | undefined;
7264
+ deposit?: {
7265
+ coin: {
7266
+ balance: string | number;
7267
+ } | {
7268
+ coin: string;
7269
+ };
7270
+ payment_info: {
7271
+ index: string | number;
7272
+ remark: string;
7273
+ for_object?: string | null | undefined;
7274
+ for_guard?: string | null | undefined;
7275
+ };
7276
+ by_external_deposit_guard?: string | undefined;
7277
+ namedNewPayment?: {
7278
+ name?: string | undefined;
7279
+ replaceExistName?: boolean | undefined;
7280
+ tags?: string[] | undefined;
7281
+ onChain?: boolean | undefined;
7282
+ } | undefined;
7283
+ } | undefined;
7284
+ withdraw?: {
7285
+ amount: {
7286
+ fixed: string | number;
7287
+ } | {
7288
+ by_external_withdraw_guard: string;
7289
+ };
7290
+ recipient: {
7291
+ name_or_address?: string | undefined;
7292
+ local_mark_first?: boolean | undefined;
7293
+ };
7294
+ payment_info: {
7295
+ index: string | number;
7296
+ remark: string;
7297
+ for_object?: string | null | undefined;
7298
+ for_guard?: string | null | undefined;
7299
+ };
7300
+ namedNewPayment?: {
7301
+ name?: string | undefined;
7302
+ replaceExistName?: boolean | undefined;
7303
+ tags?: string[] | undefined;
7304
+ onChain?: boolean | undefined;
7305
+ } | undefined;
7306
+ } | undefined;
7264
7307
  owner_receive?: {
7265
7308
  received: {
7266
7309
  id: string;
@@ -7324,6 +7367,22 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7324
7367
  balance: string | number;
7325
7368
  token_type: string;
7326
7369
  } | "recently" | undefined;
7370
+ }, {
7371
+ object: string | {
7372
+ name?: string | undefined;
7373
+ replaceExistName?: boolean | undefined;
7374
+ tags?: string[] | undefined;
7375
+ onChain?: boolean | undefined;
7376
+ type_parameter?: string | undefined;
7377
+ permission?: string | {
7378
+ name?: string | undefined;
7379
+ description?: string | undefined;
7380
+ replaceExistName?: boolean | undefined;
7381
+ tags?: string[] | undefined;
7382
+ onChain?: boolean | undefined;
7383
+ } | undefined;
7384
+ };
7385
+ description?: string | undefined;
7327
7386
  deposit?: {
7328
7387
  coin: {
7329
7388
  balance: string | number;
@@ -7367,22 +7426,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7367
7426
  onChain?: boolean | undefined;
7368
7427
  } | undefined;
7369
7428
  } | undefined;
7370
- }, {
7371
- object: string | {
7372
- name?: string | undefined;
7373
- replaceExistName?: boolean | undefined;
7374
- tags?: string[] | undefined;
7375
- onChain?: boolean | undefined;
7376
- type_parameter?: string | undefined;
7377
- permission?: string | {
7378
- name?: string | undefined;
7379
- description?: string | undefined;
7380
- replaceExistName?: boolean | undefined;
7381
- tags?: string[] | undefined;
7382
- onChain?: boolean | undefined;
7383
- } | undefined;
7384
- };
7385
- description?: string | undefined;
7386
7429
  owner_receive?: {
7387
7430
  received: {
7388
7431
  id: string;
@@ -7446,49 +7489,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7446
7489
  balance: string | number;
7447
7490
  token_type: string;
7448
7491
  } | "recently" | undefined;
7449
- deposit?: {
7450
- coin: {
7451
- balance: string | number;
7452
- } | {
7453
- coin: string;
7454
- };
7455
- payment_info: {
7456
- index: string | number;
7457
- remark: string;
7458
- for_object?: string | null | undefined;
7459
- for_guard?: string | null | undefined;
7460
- };
7461
- by_external_deposit_guard?: string | undefined;
7462
- namedNewPayment?: {
7463
- name?: string | undefined;
7464
- replaceExistName?: boolean | undefined;
7465
- tags?: string[] | undefined;
7466
- onChain?: boolean | undefined;
7467
- } | undefined;
7468
- } | undefined;
7469
- withdraw?: {
7470
- amount: {
7471
- fixed: string | number;
7472
- } | {
7473
- by_external_withdraw_guard: string;
7474
- };
7475
- recipient: {
7476
- name_or_address?: string | undefined;
7477
- local_mark_first?: boolean | undefined;
7478
- };
7479
- payment_info: {
7480
- index: string | number;
7481
- remark: string;
7482
- for_object?: string | null | undefined;
7483
- for_guard?: string | null | undefined;
7484
- };
7485
- namedNewPayment?: {
7486
- name?: string | undefined;
7487
- replaceExistName?: boolean | undefined;
7488
- tags?: string[] | undefined;
7489
- onChain?: boolean | undefined;
7490
- } | undefined;
7491
- } | undefined;
7492
7492
  }>;
7493
7493
  env: z.ZodOptional<z.ZodObject<{
7494
7494
  account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
@@ -7706,6 +7706,49 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7706
7706
  } | undefined;
7707
7707
  };
7708
7708
  description?: string | undefined;
7709
+ deposit?: {
7710
+ coin: {
7711
+ balance: string | number;
7712
+ } | {
7713
+ coin: string;
7714
+ };
7715
+ payment_info: {
7716
+ index: string | number;
7717
+ remark: string;
7718
+ for_object?: string | null | undefined;
7719
+ for_guard?: string | null | undefined;
7720
+ };
7721
+ by_external_deposit_guard?: string | undefined;
7722
+ namedNewPayment?: {
7723
+ name?: string | undefined;
7724
+ replaceExistName?: boolean | undefined;
7725
+ tags?: string[] | undefined;
7726
+ onChain?: boolean | undefined;
7727
+ } | undefined;
7728
+ } | undefined;
7729
+ withdraw?: {
7730
+ amount: {
7731
+ fixed: string | number;
7732
+ } | {
7733
+ by_external_withdraw_guard: string;
7734
+ };
7735
+ recipient: {
7736
+ name_or_address?: string | undefined;
7737
+ local_mark_first?: boolean | undefined;
7738
+ };
7739
+ payment_info: {
7740
+ index: string | number;
7741
+ remark: string;
7742
+ for_object?: string | null | undefined;
7743
+ for_guard?: string | null | undefined;
7744
+ };
7745
+ namedNewPayment?: {
7746
+ name?: string | undefined;
7747
+ replaceExistName?: boolean | undefined;
7748
+ tags?: string[] | undefined;
7749
+ onChain?: boolean | undefined;
7750
+ } | undefined;
7751
+ } | undefined;
7709
7752
  owner_receive?: {
7710
7753
  received: {
7711
7754
  id: string;
@@ -7769,49 +7812,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7769
7812
  balance: string | number;
7770
7813
  token_type: string;
7771
7814
  } | "recently" | undefined;
7772
- deposit?: {
7773
- coin: {
7774
- balance: string | number;
7775
- } | {
7776
- coin: string;
7777
- };
7778
- payment_info: {
7779
- index: string | number;
7780
- remark: string;
7781
- for_object?: string | null | undefined;
7782
- for_guard?: string | null | undefined;
7783
- };
7784
- by_external_deposit_guard?: string | undefined;
7785
- namedNewPayment?: {
7786
- name?: string | undefined;
7787
- replaceExistName?: boolean | undefined;
7788
- tags?: string[] | undefined;
7789
- onChain?: boolean | undefined;
7790
- } | undefined;
7791
- } | undefined;
7792
- withdraw?: {
7793
- amount: {
7794
- fixed: string | number;
7795
- } | {
7796
- by_external_withdraw_guard: string;
7797
- };
7798
- recipient: {
7799
- name_or_address?: string | undefined;
7800
- local_mark_first?: boolean | undefined;
7801
- };
7802
- payment_info: {
7803
- index: string | number;
7804
- remark: string;
7805
- for_object?: string | null | undefined;
7806
- for_guard?: string | null | undefined;
7807
- };
7808
- namedNewPayment?: {
7809
- name?: string | undefined;
7810
- replaceExistName?: boolean | undefined;
7811
- tags?: string[] | undefined;
7812
- onChain?: boolean | undefined;
7813
- } | undefined;
7814
- } | undefined;
7815
7815
  };
7816
7816
  operation_type: "treasury";
7817
7817
  submission?: {
@@ -7865,6 +7865,49 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7865
7865
  } | undefined;
7866
7866
  };
7867
7867
  description?: string | undefined;
7868
+ deposit?: {
7869
+ coin: {
7870
+ balance: string | number;
7871
+ } | {
7872
+ coin: string;
7873
+ };
7874
+ payment_info: {
7875
+ index: string | number;
7876
+ remark: string;
7877
+ for_object?: string | null | undefined;
7878
+ for_guard?: string | null | undefined;
7879
+ };
7880
+ by_external_deposit_guard?: string | undefined;
7881
+ namedNewPayment?: {
7882
+ name?: string | undefined;
7883
+ replaceExistName?: boolean | undefined;
7884
+ tags?: string[] | undefined;
7885
+ onChain?: boolean | undefined;
7886
+ } | undefined;
7887
+ } | undefined;
7888
+ withdraw?: {
7889
+ amount: {
7890
+ fixed: string | number;
7891
+ } | {
7892
+ by_external_withdraw_guard: string;
7893
+ };
7894
+ recipient: {
7895
+ name_or_address?: string | undefined;
7896
+ local_mark_first?: boolean | undefined;
7897
+ };
7898
+ payment_info: {
7899
+ index: string | number;
7900
+ remark: string;
7901
+ for_object?: string | null | undefined;
7902
+ for_guard?: string | null | undefined;
7903
+ };
7904
+ namedNewPayment?: {
7905
+ name?: string | undefined;
7906
+ replaceExistName?: boolean | undefined;
7907
+ tags?: string[] | undefined;
7908
+ onChain?: boolean | undefined;
7909
+ } | undefined;
7910
+ } | undefined;
7868
7911
  owner_receive?: {
7869
7912
  received: {
7870
7913
  id: string;
@@ -7928,49 +7971,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7928
7971
  balance: string | number;
7929
7972
  token_type: string;
7930
7973
  } | "recently" | undefined;
7931
- deposit?: {
7932
- coin: {
7933
- balance: string | number;
7934
- } | {
7935
- coin: string;
7936
- };
7937
- payment_info: {
7938
- index: string | number;
7939
- remark: string;
7940
- for_object?: string | null | undefined;
7941
- for_guard?: string | null | undefined;
7942
- };
7943
- by_external_deposit_guard?: string | undefined;
7944
- namedNewPayment?: {
7945
- name?: string | undefined;
7946
- replaceExistName?: boolean | undefined;
7947
- tags?: string[] | undefined;
7948
- onChain?: boolean | undefined;
7949
- } | undefined;
7950
- } | undefined;
7951
- withdraw?: {
7952
- amount: {
7953
- fixed: string | number;
7954
- } | {
7955
- by_external_withdraw_guard: string;
7956
- };
7957
- recipient: {
7958
- name_or_address?: string | undefined;
7959
- local_mark_first?: boolean | undefined;
7960
- };
7961
- payment_info: {
7962
- index: string | number;
7963
- remark: string;
7964
- for_object?: string | null | undefined;
7965
- for_guard?: string | null | undefined;
7966
- };
7967
- namedNewPayment?: {
7968
- name?: string | undefined;
7969
- replaceExistName?: boolean | undefined;
7970
- tags?: string[] | undefined;
7971
- onChain?: boolean | undefined;
7972
- } | undefined;
7973
- } | undefined;
7974
7974
  };
7975
7975
  operation_type: "treasury";
7976
7976
  submission?: {
@@ -8277,6 +8277,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8277
8277
  } | undefined;
8278
8278
  };
8279
8279
  description?: string | undefined;
8280
+ claim?: string | undefined;
8280
8281
  owner_receive?: {
8281
8282
  received: {
8282
8283
  id: string;
@@ -8300,7 +8301,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8300
8301
  balance: string | number;
8301
8302
  token_type: string;
8302
8303
  } | "recently" | undefined;
8303
- claim?: string | undefined;
8304
8304
  coin_add?: {
8305
8305
  balance: string | number;
8306
8306
  } | {
@@ -8346,6 +8346,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8346
8346
  } | undefined;
8347
8347
  };
8348
8348
  description?: string | undefined;
8349
+ claim?: string | undefined;
8349
8350
  owner_receive?: {
8350
8351
  received: {
8351
8352
  id: string;
@@ -8369,7 +8370,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8369
8370
  balance: string | number;
8370
8371
  token_type: string;
8371
8372
  } | "recently" | undefined;
8372
- claim?: string | undefined;
8373
8373
  coin_add?: {
8374
8374
  balance: string | number;
8375
8375
  } | {
@@ -8616,6 +8616,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8616
8616
  } | undefined;
8617
8617
  };
8618
8618
  description?: string | undefined;
8619
+ claim?: string | undefined;
8619
8620
  owner_receive?: {
8620
8621
  received: {
8621
8622
  id: string;
@@ -8639,7 +8640,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8639
8640
  balance: string | number;
8640
8641
  token_type: string;
8641
8642
  } | "recently" | undefined;
8642
- claim?: string | undefined;
8643
8643
  coin_add?: {
8644
8644
  balance: string | number;
8645
8645
  } | {
@@ -8722,6 +8722,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8722
8722
  } | undefined;
8723
8723
  };
8724
8724
  description?: string | undefined;
8725
+ claim?: string | undefined;
8725
8726
  owner_receive?: {
8726
8727
  received: {
8727
8728
  id: string;
@@ -8745,7 +8746,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8745
8746
  balance: string | number;
8746
8747
  token_type: string;
8747
8748
  } | "recently" | undefined;
8748
- claim?: string | undefined;
8749
8749
  coin_add?: {
8750
8750
  balance: string | number;
8751
8751
  } | {
@@ -8877,6 +8877,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8877
8877
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
8878
8878
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
8879
8879
  }, "strip", z.ZodTypeAny, {
8880
+ sharing: string | number;
8880
8881
  who: {
8881
8882
  GuardIdentifier: number;
8882
8883
  } | {
@@ -8887,9 +8888,9 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8887
8888
  } | {
8888
8889
  Signer: "signer";
8889
8890
  };
8890
- sharing: string | number;
8891
8891
  mode: "Amount" | "Rate" | "Surplus";
8892
8892
  }, {
8893
+ sharing: string | number;
8893
8894
  who: {
8894
8895
  GuardIdentifier: number;
8895
8896
  } | {
@@ -8900,7 +8901,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8900
8901
  } | {
8901
8902
  Signer: "signer";
8902
8903
  };
8903
- sharing: string | number;
8904
8904
  mode: "Amount" | "Rate" | "Surplus";
8905
8905
  }>, "many">;
8906
8906
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -8908,6 +8908,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8908
8908
  }, "strip", z.ZodTypeAny, {
8909
8909
  guard: string;
8910
8910
  sharing: {
8911
+ sharing: string | number;
8911
8912
  who: {
8912
8913
  GuardIdentifier: number;
8913
8914
  } | {
@@ -8918,7 +8919,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8918
8919
  } | {
8919
8920
  Signer: "signer";
8920
8921
  };
8921
- sharing: string | number;
8922
8922
  mode: "Amount" | "Rate" | "Surplus";
8923
8923
  }[];
8924
8924
  max?: string | number | null | undefined;
@@ -8926,6 +8926,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8926
8926
  }, {
8927
8927
  guard: string;
8928
8928
  sharing: {
8929
+ sharing: string | number;
8929
8930
  who: {
8930
8931
  GuardIdentifier: number;
8931
8932
  } | {
@@ -8936,7 +8937,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8936
8937
  } | {
8937
8938
  Signer: "signer";
8938
8939
  };
8939
- sharing: string | number;
8940
8940
  mode: "Amount" | "Rate" | "Surplus";
8941
8941
  }[];
8942
8942
  max?: string | number | null | undefined;
@@ -8944,10 +8944,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8944
8944
  }>, "many">;
8945
8945
  }, "strip", z.ZodTypeAny, {
8946
8946
  description: string;
8947
- threshold: string | number;
8948
8947
  allocators: {
8949
8948
  guard: string;
8950
8949
  sharing: {
8950
+ sharing: string | number;
8951
8951
  who: {
8952
8952
  GuardIdentifier: number;
8953
8953
  } | {
@@ -8958,18 +8958,18 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8958
8958
  } | {
8959
8959
  Signer: "signer";
8960
8960
  };
8961
- sharing: string | number;
8962
8961
  mode: "Amount" | "Rate" | "Surplus";
8963
8962
  }[];
8964
8963
  max?: string | number | null | undefined;
8965
8964
  fix?: string | number | undefined;
8966
8965
  }[];
8966
+ threshold: string | number;
8967
8967
  }, {
8968
8968
  description: string;
8969
- threshold: string | number;
8970
8969
  allocators: {
8971
8970
  guard: string;
8972
8971
  sharing: {
8972
+ sharing: string | number;
8973
8973
  who: {
8974
8974
  GuardIdentifier: number;
8975
8975
  } | {
@@ -8980,12 +8980,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8980
8980
  } | {
8981
8981
  Signer: "signer";
8982
8982
  };
8983
- sharing: string | number;
8984
8983
  mode: "Amount" | "Rate" | "Surplus";
8985
8984
  }[];
8986
8985
  max?: string | number | null | undefined;
8987
8986
  fix?: string | number | undefined;
8988
8987
  }[];
8988
+ threshold: string | number;
8989
8989
  }>;
8990
8990
  coin: z.ZodUnion<[z.ZodObject<{
8991
8991
  balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -9031,10 +9031,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9031
9031
  };
9032
9032
  allocators: {
9033
9033
  description: string;
9034
- threshold: string | number;
9035
9034
  allocators: {
9036
9035
  guard: string;
9037
9036
  sharing: {
9037
+ sharing: string | number;
9038
9038
  who: {
9039
9039
  GuardIdentifier: number;
9040
9040
  } | {
@@ -9045,12 +9045,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9045
9045
  } | {
9046
9046
  Signer: "signer";
9047
9047
  };
9048
- sharing: string | number;
9049
9048
  mode: "Amount" | "Rate" | "Surplus";
9050
9049
  }[];
9051
9050
  max?: string | number | null | undefined;
9052
9051
  fix?: string | number | undefined;
9053
9052
  }[];
9053
+ threshold: string | number;
9054
9054
  };
9055
9055
  payment_info: {
9056
9056
  index: string | number;
@@ -9073,10 +9073,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9073
9073
  };
9074
9074
  allocators: {
9075
9075
  description: string;
9076
- threshold: string | number;
9077
9076
  allocators: {
9078
9077
  guard: string;
9079
9078
  sharing: {
9079
+ sharing: string | number;
9080
9080
  who: {
9081
9081
  GuardIdentifier: number;
9082
9082
  } | {
@@ -9087,12 +9087,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9087
9087
  } | {
9088
9088
  Signer: "signer";
9089
9089
  };
9090
- sharing: string | number;
9091
9090
  mode: "Amount" | "Rate" | "Surplus";
9092
9091
  }[];
9093
9092
  max?: string | number | null | undefined;
9094
9093
  fix?: string | number | undefined;
9095
9094
  }[];
9095
+ threshold: string | number;
9096
9096
  };
9097
9097
  payment_info: {
9098
9098
  index: string | number;
@@ -9376,10 +9376,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9376
9376
  };
9377
9377
  allocators: {
9378
9378
  description: string;
9379
- threshold: string | number;
9380
9379
  allocators: {
9381
9380
  guard: string;
9382
9381
  sharing: {
9382
+ sharing: string | number;
9383
9383
  who: {
9384
9384
  GuardIdentifier: number;
9385
9385
  } | {
@@ -9390,12 +9390,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9390
9390
  } | {
9391
9391
  Signer: "signer";
9392
9392
  };
9393
- sharing: string | number;
9394
9393
  mode: "Amount" | "Rate" | "Surplus";
9395
9394
  }[];
9396
9395
  max?: string | number | null | undefined;
9397
9396
  fix?: string | number | undefined;
9398
9397
  }[];
9398
+ threshold: string | number;
9399
9399
  };
9400
9400
  payment_info: {
9401
9401
  index: string | number;
@@ -9467,10 +9467,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9467
9467
  };
9468
9468
  allocators: {
9469
9469
  description: string;
9470
- threshold: string | number;
9471
9470
  allocators: {
9472
9471
  guard: string;
9473
9472
  sharing: {
9473
+ sharing: string | number;
9474
9474
  who: {
9475
9475
  GuardIdentifier: number;
9476
9476
  } | {
@@ -9481,12 +9481,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9481
9481
  } | {
9482
9482
  Signer: "signer";
9483
9483
  };
9484
- sharing: string | number;
9485
9484
  mode: "Amount" | "Rate" | "Surplus";
9486
9485
  }[];
9487
9486
  max?: string | number | null | undefined;
9488
9487
  fix?: string | number | undefined;
9489
9488
  }[];
9489
+ threshold: string | number;
9490
9490
  };
9491
9491
  payment_info: {
9492
9492
  index: string | number;
@@ -12620,11 +12620,11 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12620
12620
  arb: z.ZodEffects<z.ZodString, string, string>;
12621
12621
  objection: z.ZodEffects<z.ZodString, string, string>;
12622
12622
  }, "strict", z.ZodTypeAny, {
12623
- objection: string;
12624
12623
  arb: string;
12625
- }, {
12626
12624
  objection: string;
12625
+ }, {
12627
12626
  arb: string;
12627
+ objection: string;
12628
12628
  }>>;
12629
12629
  arb_claim_compensation: z.ZodOptional<z.ZodObject<{
12630
12630
  arb: z.ZodEffects<z.ZodString, string, string>;
@@ -12744,8 +12744,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12744
12744
  proposition?: string[] | undefined;
12745
12745
  } | undefined;
12746
12746
  arb_objection?: {
12747
- objection: string;
12748
12747
  arb: string;
12748
+ objection: string;
12749
12749
  } | undefined;
12750
12750
  arb_claim_compensation?: {
12751
12751
  arb: string;
@@ -12795,8 +12795,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12795
12795
  proposition?: string[] | undefined;
12796
12796
  } | undefined;
12797
12797
  arb_objection?: {
12798
- objection: string;
12799
12798
  arb: string;
12799
+ objection: string;
12800
12800
  } | undefined;
12801
12801
  arb_claim_compensation?: {
12802
12802
  arb: string;
@@ -13047,8 +13047,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13047
13047
  proposition?: string[] | undefined;
13048
13048
  } | undefined;
13049
13049
  arb_objection?: {
13050
- objection: string;
13051
13050
  arb: string;
13051
+ objection: string;
13052
13052
  } | undefined;
13053
13053
  arb_claim_compensation?: {
13054
13054
  arb: string;
@@ -13135,8 +13135,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13135
13135
  proposition?: string[] | undefined;
13136
13136
  } | undefined;
13137
13137
  arb_objection?: {
13138
- objection: string;
13139
13138
  arb: string;
13139
+ objection: string;
13140
13140
  } | undefined;
13141
13141
  arb_claim_compensation?: {
13142
13142
  arb: string;
@@ -13472,6 +13472,423 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13472
13472
  }[];
13473
13473
  }[];
13474
13474
  } | undefined;
13475
+ }>, z.ZodObject<{
13476
+ operation_type: z.ZodLiteral<"proof">;
13477
+ data: z.ZodObject<{
13478
+ namedNew: z.ZodOptional<z.ZodObject<{
13479
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13480
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13481
+ onChain: z.ZodOptional<z.ZodBoolean>;
13482
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
13483
+ }, "strict", z.ZodTypeAny, {
13484
+ name?: string | undefined;
13485
+ replaceExistName?: boolean | undefined;
13486
+ tags?: string[] | undefined;
13487
+ onChain?: boolean | undefined;
13488
+ }, {
13489
+ name?: string | undefined;
13490
+ replaceExistName?: boolean | undefined;
13491
+ tags?: string[] | undefined;
13492
+ onChain?: boolean | undefined;
13493
+ }>>;
13494
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13495
+ proof: z.ZodString;
13496
+ server_pubkey: z.ZodString;
13497
+ server_signature: z.ZodString;
13498
+ proof_type: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
13499
+ item_count: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull]>>;
13500
+ about_address: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
13501
+ }, "strict", z.ZodTypeAny, {
13502
+ proof: string;
13503
+ server_pubkey: string;
13504
+ server_signature: string;
13505
+ proof_type: string | number;
13506
+ description?: string | undefined;
13507
+ item_count?: string | number | null | undefined;
13508
+ about_address?: string | null | undefined;
13509
+ namedNew?: {
13510
+ name?: string | undefined;
13511
+ replaceExistName?: boolean | undefined;
13512
+ tags?: string[] | undefined;
13513
+ onChain?: boolean | undefined;
13514
+ } | undefined;
13515
+ }, {
13516
+ proof: string;
13517
+ server_pubkey: string;
13518
+ server_signature: string;
13519
+ proof_type: string | number;
13520
+ description?: string | undefined;
13521
+ item_count?: string | number | null | undefined;
13522
+ about_address?: string | null | undefined;
13523
+ namedNew?: {
13524
+ name?: string | undefined;
13525
+ replaceExistName?: boolean | undefined;
13526
+ tags?: string[] | undefined;
13527
+ onChain?: boolean | undefined;
13528
+ } | undefined;
13529
+ }>;
13530
+ env: z.ZodOptional<z.ZodObject<{
13531
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
13532
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13533
+ no_cache: z.ZodOptional<z.ZodBoolean>;
13534
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
13535
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13536
+ }, "strict", z.ZodTypeAny, {
13537
+ account: string;
13538
+ no_cache?: boolean | undefined;
13539
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
13540
+ permission_guard?: string[] | undefined;
13541
+ referrer?: string | undefined;
13542
+ }, {
13543
+ no_cache?: boolean | undefined;
13544
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
13545
+ account?: string | undefined;
13546
+ permission_guard?: string[] | undefined;
13547
+ referrer?: string | undefined;
13548
+ }>>;
13549
+ submission: z.ZodOptional<z.ZodObject<{
13550
+ type: z.ZodLiteral<"submission">;
13551
+ guard: z.ZodArray<z.ZodObject<{
13552
+ object: z.ZodEffects<z.ZodString, string, string>;
13553
+ impack: z.ZodBoolean;
13554
+ }, "strict", z.ZodTypeAny, {
13555
+ object: string;
13556
+ impack: boolean;
13557
+ }, {
13558
+ object: string;
13559
+ impack: boolean;
13560
+ }>, "many">;
13561
+ submission: z.ZodArray<z.ZodObject<{
13562
+ guard: z.ZodEffects<z.ZodString, string, string>;
13563
+ submission: z.ZodArray<z.ZodObject<{
13564
+ identifier: z.ZodNumber;
13565
+ b_submission: z.ZodBoolean;
13566
+ value_type: z.ZodUnion<[z.ZodLiteral<import("@wowok/wowok").ValueType.Bool>, z.ZodLiteral<import("@wowok/wowok").ValueType.Address>, z.ZodLiteral<import("@wowok/wowok").ValueType.String>, z.ZodLiteral<import("@wowok/wowok").ValueType.U8>, z.ZodLiteral<import("@wowok/wowok").ValueType.U16>, z.ZodLiteral<import("@wowok/wowok").ValueType.U32>, z.ZodLiteral<import("@wowok/wowok").ValueType.U64>, z.ZodLiteral<import("@wowok/wowok").ValueType.U128>, z.ZodLiteral<import("@wowok/wowok").ValueType.U256>, z.ZodLiteral<import("@wowok/wowok").ValueType.VecBool>, z.ZodLiteral<import("@wowok/wowok").ValueType.VecAddress>, z.ZodLiteral<import("@wowok/wowok").ValueType.VecString>, z.ZodLiteral<import("@wowok/wowok").ValueType.VecU8>, z.ZodLiteral<import("@wowok/wowok").ValueType.VecU16>, z.ZodLiteral<import("@wowok/wowok").ValueType.VecU32>, z.ZodLiteral<import("@wowok/wowok").ValueType.VecU64>, z.ZodLiteral<import("@wowok/wowok").ValueType.VecU128>, z.ZodLiteral<import("@wowok/wowok").ValueType.VecU256>, z.ZodLiteral<import("@wowok/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">]>;
13567
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
13568
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13569
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
13570
+ }, "strict", z.ZodTypeAny, {
13571
+ name_or_address?: string | undefined;
13572
+ local_mark_first?: boolean | undefined;
13573
+ }, {
13574
+ name_or_address?: string | undefined;
13575
+ local_mark_first?: boolean | undefined;
13576
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
13577
+ entities: z.ZodArray<z.ZodObject<{
13578
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13579
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
13580
+ }, "strict", z.ZodTypeAny, {
13581
+ name_or_address?: string | undefined;
13582
+ local_mark_first?: boolean | undefined;
13583
+ }, {
13584
+ name_or_address?: string | undefined;
13585
+ local_mark_first?: boolean | undefined;
13586
+ }>, "many">;
13587
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
13588
+ }, "strict", z.ZodTypeAny, {
13589
+ entities: {
13590
+ name_or_address?: string | undefined;
13591
+ local_mark_first?: boolean | undefined;
13592
+ }[];
13593
+ check_all_founded?: boolean | undefined;
13594
+ }, {
13595
+ entities: {
13596
+ name_or_address?: string | undefined;
13597
+ local_mark_first?: boolean | undefined;
13598
+ }[];
13599
+ check_all_founded?: boolean | undefined;
13600
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
13601
+ name: z.ZodDefault<z.ZodString>;
13602
+ } & {
13603
+ object_type: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ObjectType.Permission, import("@wowok/wowok").ObjectType.Repository, import("@wowok/wowok").ObjectType.Arb, import("@wowok/wowok").ObjectType.Arbitration, import("@wowok/wowok").ObjectType.Service, import("@wowok/wowok").ObjectType.Machine, import("@wowok/wowok").ObjectType.Order, import("@wowok/wowok").ObjectType.Progress, import("@wowok/wowok").ObjectType.Payment, import("@wowok/wowok").ObjectType.Treasury, import("@wowok/wowok").ObjectType.Guard, import("@wowok/wowok").ObjectType.Demand, import("@wowok/wowok").ObjectType.Passport, import("@wowok/wowok").ObjectType.Allocation, import("@wowok/wowok").ObjectType.Resource, import("@wowok/wowok").ObjectType.Reward, import("@wowok/wowok").ObjectType.Discount, import("@wowok/wowok").ObjectType.EntityRegistrar, import("@wowok/wowok").ObjectType.EntityLinker, import("@wowok/wowok").ObjectType.Proof, import("@wowok/wowok").ObjectType.WReceivedObject, import("@wowok/wowok").ObjectType.Contact, import("@wowok/wowok").ObjectType.TableItem_ProgressHistory, import("@wowok/wowok").ObjectType.TableItem_PermissionPerm, import("@wowok/wowok").ObjectType.TableItem_DemandPresenter, import("@wowok/wowok").ObjectType.TableItem_MachineNode, import("@wowok/wowok").ObjectType.TableItem_TreasuryHistory, import("@wowok/wowok").ObjectType.TableItem_RepositoryData, import("@wowok/wowok").ObjectType.TableItem_RewardRecord, import("@wowok/wowok").ObjectType.TableItem_EntityLinker, import("@wowok/wowok").ObjectType.TableItem_AddressMark, import("@wowok/wowok").ObjectType.TableItem_EntityRegistrar]>>;
13604
+ }, "strict", z.ZodTypeAny, {
13605
+ identifier: number;
13606
+ b_submission: boolean;
13607
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType.Bool | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13608
+ name: string;
13609
+ value?: string | number | boolean | {
13610
+ name_or_address?: string | undefined;
13611
+ local_mark_first?: boolean | undefined;
13612
+ } | {
13613
+ entities: {
13614
+ name_or_address?: string | undefined;
13615
+ local_mark_first?: boolean | undefined;
13616
+ }[];
13617
+ check_all_founded?: boolean | undefined;
13618
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13619
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
13620
+ }, {
13621
+ identifier: number;
13622
+ b_submission: boolean;
13623
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType.Bool | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13624
+ value?: string | number | boolean | {
13625
+ name_or_address?: string | undefined;
13626
+ local_mark_first?: boolean | undefined;
13627
+ } | {
13628
+ entities: {
13629
+ name_or_address?: string | undefined;
13630
+ local_mark_first?: boolean | undefined;
13631
+ }[];
13632
+ check_all_founded?: boolean | undefined;
13633
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13634
+ name?: string | undefined;
13635
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
13636
+ }>, "many">;
13637
+ }, "strict", z.ZodTypeAny, {
13638
+ guard: string;
13639
+ submission: {
13640
+ identifier: number;
13641
+ b_submission: boolean;
13642
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType.Bool | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13643
+ name: string;
13644
+ value?: string | number | boolean | {
13645
+ name_or_address?: string | undefined;
13646
+ local_mark_first?: boolean | undefined;
13647
+ } | {
13648
+ entities: {
13649
+ name_or_address?: string | undefined;
13650
+ local_mark_first?: boolean | undefined;
13651
+ }[];
13652
+ check_all_founded?: boolean | undefined;
13653
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13654
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
13655
+ }[];
13656
+ }, {
13657
+ guard: string;
13658
+ submission: {
13659
+ identifier: number;
13660
+ b_submission: boolean;
13661
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType.Bool | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13662
+ value?: string | number | boolean | {
13663
+ name_or_address?: string | undefined;
13664
+ local_mark_first?: boolean | undefined;
13665
+ } | {
13666
+ entities: {
13667
+ name_or_address?: string | undefined;
13668
+ local_mark_first?: boolean | undefined;
13669
+ }[];
13670
+ check_all_founded?: boolean | undefined;
13671
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13672
+ name?: string | undefined;
13673
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
13674
+ }[];
13675
+ }>, "many">;
13676
+ }, "strict", z.ZodTypeAny, {
13677
+ type: "submission";
13678
+ guard: {
13679
+ object: string;
13680
+ impack: boolean;
13681
+ }[];
13682
+ submission: {
13683
+ guard: string;
13684
+ submission: {
13685
+ identifier: number;
13686
+ b_submission: boolean;
13687
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType.Bool | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13688
+ name: string;
13689
+ value?: string | number | boolean | {
13690
+ name_or_address?: string | undefined;
13691
+ local_mark_first?: boolean | undefined;
13692
+ } | {
13693
+ entities: {
13694
+ name_or_address?: string | undefined;
13695
+ local_mark_first?: boolean | undefined;
13696
+ }[];
13697
+ check_all_founded?: boolean | undefined;
13698
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13699
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
13700
+ }[];
13701
+ }[];
13702
+ }, {
13703
+ type: "submission";
13704
+ guard: {
13705
+ object: string;
13706
+ impack: boolean;
13707
+ }[];
13708
+ submission: {
13709
+ guard: string;
13710
+ submission: {
13711
+ identifier: number;
13712
+ b_submission: boolean;
13713
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType.Bool | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13714
+ value?: string | number | boolean | {
13715
+ name_or_address?: string | undefined;
13716
+ local_mark_first?: boolean | undefined;
13717
+ } | {
13718
+ entities: {
13719
+ name_or_address?: string | undefined;
13720
+ local_mark_first?: boolean | undefined;
13721
+ }[];
13722
+ check_all_founded?: boolean | undefined;
13723
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13724
+ name?: string | undefined;
13725
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
13726
+ }[];
13727
+ }[];
13728
+ }>>;
13729
+ }, "strip", z.ZodTypeAny, {
13730
+ data: {
13731
+ proof: string;
13732
+ server_pubkey: string;
13733
+ server_signature: string;
13734
+ proof_type: string | number;
13735
+ description?: string | undefined;
13736
+ item_count?: string | number | null | undefined;
13737
+ about_address?: string | null | undefined;
13738
+ namedNew?: {
13739
+ name?: string | undefined;
13740
+ replaceExistName?: boolean | undefined;
13741
+ tags?: string[] | undefined;
13742
+ onChain?: boolean | undefined;
13743
+ } | undefined;
13744
+ };
13745
+ operation_type: "proof";
13746
+ submission?: {
13747
+ type: "submission";
13748
+ guard: {
13749
+ object: string;
13750
+ impack: boolean;
13751
+ }[];
13752
+ submission: {
13753
+ guard: string;
13754
+ submission: {
13755
+ identifier: number;
13756
+ b_submission: boolean;
13757
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType.Bool | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13758
+ name: string;
13759
+ value?: string | number | boolean | {
13760
+ name_or_address?: string | undefined;
13761
+ local_mark_first?: boolean | undefined;
13762
+ } | {
13763
+ entities: {
13764
+ name_or_address?: string | undefined;
13765
+ local_mark_first?: boolean | undefined;
13766
+ }[];
13767
+ check_all_founded?: boolean | undefined;
13768
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13769
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
13770
+ }[];
13771
+ }[];
13772
+ } | undefined;
13773
+ env?: {
13774
+ account: string;
13775
+ no_cache?: boolean | undefined;
13776
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
13777
+ permission_guard?: string[] | undefined;
13778
+ referrer?: string | undefined;
13779
+ } | undefined;
13780
+ }, {
13781
+ data: {
13782
+ proof: string;
13783
+ server_pubkey: string;
13784
+ server_signature: string;
13785
+ proof_type: string | number;
13786
+ description?: string | undefined;
13787
+ item_count?: string | number | null | undefined;
13788
+ about_address?: string | null | undefined;
13789
+ namedNew?: {
13790
+ name?: string | undefined;
13791
+ replaceExistName?: boolean | undefined;
13792
+ tags?: string[] | undefined;
13793
+ onChain?: boolean | undefined;
13794
+ } | undefined;
13795
+ };
13796
+ operation_type: "proof";
13797
+ submission?: {
13798
+ type: "submission";
13799
+ guard: {
13800
+ object: string;
13801
+ impack: boolean;
13802
+ }[];
13803
+ submission: {
13804
+ guard: string;
13805
+ submission: {
13806
+ identifier: number;
13807
+ b_submission: boolean;
13808
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType.Bool | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13809
+ value?: string | number | boolean | {
13810
+ name_or_address?: string | undefined;
13811
+ local_mark_first?: boolean | undefined;
13812
+ } | {
13813
+ entities: {
13814
+ name_or_address?: string | undefined;
13815
+ local_mark_first?: boolean | undefined;
13816
+ }[];
13817
+ check_all_founded?: boolean | undefined;
13818
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13819
+ name?: string | undefined;
13820
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
13821
+ }[];
13822
+ }[];
13823
+ } | undefined;
13824
+ env?: {
13825
+ no_cache?: boolean | undefined;
13826
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
13827
+ account?: string | undefined;
13828
+ permission_guard?: string[] | undefined;
13829
+ referrer?: string | undefined;
13830
+ } | undefined;
13831
+ }>, z.ZodObject<{
13832
+ proof: z.ZodString;
13833
+ server_pubkey: z.ZodString;
13834
+ server_signature: z.ZodString;
13835
+ proof_type: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
13836
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13837
+ item_count: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull]>>;
13838
+ about_address: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
13839
+ env: z.ZodOptional<z.ZodObject<{
13840
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
13841
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13842
+ no_cache: z.ZodOptional<z.ZodBoolean>;
13843
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
13844
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13845
+ }, "strict", z.ZodTypeAny, {
13846
+ account: string;
13847
+ no_cache?: boolean | undefined;
13848
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
13849
+ permission_guard?: string[] | undefined;
13850
+ referrer?: string | undefined;
13851
+ }, {
13852
+ no_cache?: boolean | undefined;
13853
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
13854
+ account?: string | undefined;
13855
+ permission_guard?: string[] | undefined;
13856
+ referrer?: string | undefined;
13857
+ }>>;
13858
+ } & {
13859
+ operation_type: z.ZodLiteral<"gen_proof">;
13860
+ }, "strict", z.ZodTypeAny, {
13861
+ operation_type: "gen_proof";
13862
+ proof: string;
13863
+ server_pubkey: string;
13864
+ server_signature: string;
13865
+ proof_type: string | number;
13866
+ description?: string | undefined;
13867
+ env?: {
13868
+ account: string;
13869
+ no_cache?: boolean | undefined;
13870
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
13871
+ permission_guard?: string[] | undefined;
13872
+ referrer?: string | undefined;
13873
+ } | undefined;
13874
+ item_count?: string | number | null | undefined;
13875
+ about_address?: string | null | undefined;
13876
+ }, {
13877
+ operation_type: "gen_proof";
13878
+ proof: string;
13879
+ server_pubkey: string;
13880
+ server_signature: string;
13881
+ proof_type: string | number;
13882
+ description?: string | undefined;
13883
+ env?: {
13884
+ no_cache?: boolean | undefined;
13885
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
13886
+ account?: string | undefined;
13887
+ permission_guard?: string[] | undefined;
13888
+ referrer?: string | undefined;
13889
+ } | undefined;
13890
+ item_count?: string | number | null | undefined;
13891
+ about_address?: string | null | undefined;
13475
13892
  }>]>, {
13476
13893
  data: {
13477
13894
  object: string | {
@@ -13489,6 +13906,25 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13489
13906
  } | undefined;
13490
13907
  };
13491
13908
  description?: string | undefined;
13909
+ publish?: boolean | undefined;
13910
+ machine?: string | null | undefined;
13911
+ discount?: {
13912
+ name: string;
13913
+ recipient: {
13914
+ entities: {
13915
+ name_or_address?: string | undefined;
13916
+ local_mark_first?: boolean | undefined;
13917
+ }[];
13918
+ check_all_founded?: boolean | undefined;
13919
+ };
13920
+ count: number;
13921
+ discount_type: import("@wowok/wowok").DiscountType;
13922
+ transferable: boolean;
13923
+ discount_value: string | number;
13924
+ time_ms_end: number;
13925
+ benchmark?: string | number | undefined;
13926
+ time_ms_start?: number | undefined;
13927
+ } | undefined;
13492
13928
  location?: string | undefined;
13493
13929
  owner_receive?: {
13494
13930
  received: {
@@ -13513,24 +13949,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13513
13949
  op: "clear";
13514
13950
  } | undefined;
13515
13951
  um?: string | null | undefined;
13516
- discount?: {
13517
- name: string;
13518
- recipient: {
13519
- entities: {
13520
- name_or_address?: string | undefined;
13521
- local_mark_first?: boolean | undefined;
13522
- }[];
13523
- check_all_founded?: boolean | undefined;
13524
- };
13525
- count: number;
13526
- discount_type: import("@wowok/wowok").DiscountType;
13527
- transferable: boolean;
13528
- discount_value: string | number;
13529
- time_ms_end: number;
13530
- benchmark?: string | number | undefined;
13531
- time_ms_start?: number | undefined;
13532
- } | undefined;
13533
- machine?: string | null | undefined;
13534
13952
  sales?: {
13535
13953
  op: "add";
13536
13954
  sales: {
@@ -13579,10 +13997,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13579
13997
  } | undefined;
13580
13998
  order_allocators?: {
13581
13999
  description: string;
13582
- threshold: string | number;
13583
14000
  allocators: {
13584
14001
  guard: string;
13585
14002
  sharing: {
14003
+ sharing: string | number;
13586
14004
  who: {
13587
14005
  GuardIdentifier: number;
13588
14006
  } | {
@@ -13593,15 +14011,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13593
14011
  } | {
13594
14012
  Signer: "signer";
13595
14013
  };
13596
- sharing: string | number;
13597
14014
  mode: "Amount" | "Rate" | "Surplus";
13598
14015
  }[];
13599
14016
  max?: string | number | null | undefined;
13600
14017
  fix?: string | number | undefined;
13601
14018
  }[];
14019
+ threshold: string | number;
13602
14020
  } | null | undefined;
13603
14021
  pause?: boolean | undefined;
13604
- publish?: boolean | undefined;
13605
14022
  order_new?: {
13606
14023
  buy: {
13607
14024
  items: {
@@ -13717,6 +14134,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13717
14134
  } | undefined;
13718
14135
  };
13719
14136
  description?: string | undefined;
14137
+ publish?: boolean | undefined;
14138
+ repository?: {
14139
+ op: "set" | "add";
14140
+ objects: string[];
14141
+ } | {
14142
+ op: "remove";
14143
+ objects: string[];
14144
+ } | {
14145
+ op: "clear";
14146
+ } | undefined;
13720
14147
  owner_receive?: {
13721
14148
  received: {
13722
14149
  id: string;
@@ -13817,23 +14244,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13817
14244
  } | {
13818
14245
  json_or_markdown_file: string;
13819
14246
  } | undefined;
13820
- repository?: {
13821
- op: "set" | "add";
13822
- objects: string[];
13823
- } | {
13824
- op: "remove";
13825
- objects: string[];
13826
- } | {
13827
- op: "clear";
13828
- } | undefined;
13829
14247
  progress_new?: {
13830
- task?: string | null | undefined;
13831
- namedNew?: {
13832
- name?: string | undefined;
13833
- replaceExistName?: boolean | undefined;
13834
- tags?: string[] | undefined;
13835
- onChain?: boolean | undefined;
13836
- } | undefined;
13837
14248
  repository?: {
13838
14249
  op: "set" | "add";
13839
14250
  objects: string[];
@@ -13843,6 +14254,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13843
14254
  } | {
13844
14255
  op: "clear";
13845
14256
  } | undefined;
14257
+ task?: string | null | undefined;
14258
+ namedNew?: {
14259
+ name?: string | undefined;
14260
+ replaceExistName?: boolean | undefined;
14261
+ tags?: string[] | undefined;
14262
+ onChain?: boolean | undefined;
14263
+ } | undefined;
13846
14264
  progress_namedOperator?: {
13847
14265
  name: string;
13848
14266
  op: "set" | "add" | "remove";
@@ -13856,7 +14274,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13856
14274
  } | undefined;
13857
14275
  } | undefined;
13858
14276
  pause?: boolean | undefined;
13859
- publish?: boolean | undefined;
13860
14277
  };
13861
14278
  operation_type: "machine";
13862
14279
  submission?: {
@@ -13896,7 +14313,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13896
14313
  } | {
13897
14314
  data: {
13898
14315
  object: string;
13899
- task?: string | undefined;
13900
14316
  repository?: {
13901
14317
  op: "set" | "add";
13902
14318
  objects: string[];
@@ -13906,6 +14322,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13906
14322
  } | {
13907
14323
  op: "clear";
13908
14324
  } | undefined;
14325
+ task?: string | undefined;
13909
14326
  progress_namedOperator?: {
13910
14327
  name: string;
13911
14328
  op: "set" | "add" | "remove";
@@ -14105,8 +14522,13 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14105
14522
  };
14106
14523
  description?: string | undefined;
14107
14524
  reset?: {
14525
+ arb: string;
14108
14526
  feedback: string;
14527
+ } | undefined;
14528
+ arbitration?: {
14109
14529
  arb: string;
14530
+ feedback: string;
14531
+ indemnity: number;
14110
14532
  } | undefined;
14111
14533
  location?: string | undefined;
14112
14534
  owner_receive?: {
@@ -14139,15 +14561,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14139
14561
  onChain?: boolean | undefined;
14140
14562
  } | undefined;
14141
14563
  } | undefined;
14142
- arbitration?: {
14143
- feedback: string;
14144
- indemnity: number;
14145
- arb: string;
14146
- } | undefined;
14147
14564
  fee?: string | number | undefined;
14148
14565
  feedback?: {
14149
- feedback: string;
14150
14566
  arb: string;
14567
+ feedback: string;
14151
14568
  } | undefined;
14152
14569
  voting_guard?: {
14153
14570
  op: "set" | "add";
@@ -14168,16 +14585,16 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14168
14585
  usage_guard?: string | null | undefined;
14169
14586
  pause?: boolean | undefined;
14170
14587
  confirm?: {
14171
- voting_deadline: number | null;
14172
14588
  arb: string;
14589
+ voting_deadline: number | null;
14173
14590
  } | undefined;
14174
14591
  voting_deadline_change?: {
14175
- voting_deadline: number | null;
14176
14592
  arb: string;
14593
+ voting_deadline: number | null;
14177
14594
  } | undefined;
14178
14595
  vote?: {
14179
- votes: number[];
14180
14596
  arb: string;
14597
+ votes: number[];
14181
14598
  voting_guard?: string | undefined;
14182
14599
  } | undefined;
14183
14600
  arb_withdraw?: {
@@ -14336,6 +14753,49 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14336
14753
  } | undefined;
14337
14754
  };
14338
14755
  description?: string | undefined;
14756
+ deposit?: {
14757
+ coin: {
14758
+ balance: string | number;
14759
+ } | {
14760
+ coin: string;
14761
+ };
14762
+ payment_info: {
14763
+ index: string | number;
14764
+ remark: string;
14765
+ for_object?: string | null | undefined;
14766
+ for_guard?: string | null | undefined;
14767
+ };
14768
+ by_external_deposit_guard?: string | undefined;
14769
+ namedNewPayment?: {
14770
+ name?: string | undefined;
14771
+ replaceExistName?: boolean | undefined;
14772
+ tags?: string[] | undefined;
14773
+ onChain?: boolean | undefined;
14774
+ } | undefined;
14775
+ } | undefined;
14776
+ withdraw?: {
14777
+ amount: {
14778
+ fixed: string | number;
14779
+ } | {
14780
+ by_external_withdraw_guard: string;
14781
+ };
14782
+ recipient: {
14783
+ name_or_address?: string | undefined;
14784
+ local_mark_first?: boolean | undefined;
14785
+ };
14786
+ payment_info: {
14787
+ index: string | number;
14788
+ remark: string;
14789
+ for_object?: string | null | undefined;
14790
+ for_guard?: string | null | undefined;
14791
+ };
14792
+ namedNewPayment?: {
14793
+ name?: string | undefined;
14794
+ replaceExistName?: boolean | undefined;
14795
+ tags?: string[] | undefined;
14796
+ onChain?: boolean | undefined;
14797
+ } | undefined;
14798
+ } | undefined;
14339
14799
  owner_receive?: {
14340
14800
  received: {
14341
14801
  id: string;
@@ -14399,49 +14859,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14399
14859
  balance: string | number;
14400
14860
  token_type: string;
14401
14861
  } | "recently" | undefined;
14402
- deposit?: {
14403
- coin: {
14404
- balance: string | number;
14405
- } | {
14406
- coin: string;
14407
- };
14408
- payment_info: {
14409
- index: string | number;
14410
- remark: string;
14411
- for_object?: string | null | undefined;
14412
- for_guard?: string | null | undefined;
14413
- };
14414
- by_external_deposit_guard?: string | undefined;
14415
- namedNewPayment?: {
14416
- name?: string | undefined;
14417
- replaceExistName?: boolean | undefined;
14418
- tags?: string[] | undefined;
14419
- onChain?: boolean | undefined;
14420
- } | undefined;
14421
- } | undefined;
14422
- withdraw?: {
14423
- amount: {
14424
- fixed: string | number;
14425
- } | {
14426
- by_external_withdraw_guard: string;
14427
- };
14428
- recipient: {
14429
- name_or_address?: string | undefined;
14430
- local_mark_first?: boolean | undefined;
14431
- };
14432
- payment_info: {
14433
- index: string | number;
14434
- remark: string;
14435
- for_object?: string | null | undefined;
14436
- for_guard?: string | null | undefined;
14437
- };
14438
- namedNewPayment?: {
14439
- name?: string | undefined;
14440
- replaceExistName?: boolean | undefined;
14441
- tags?: string[] | undefined;
14442
- onChain?: boolean | undefined;
14443
- } | undefined;
14444
- } | undefined;
14445
14862
  };
14446
14863
  operation_type: "treasury";
14447
14864
  submission?: {
@@ -14495,6 +14912,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14495
14912
  } | undefined;
14496
14913
  };
14497
14914
  description?: string | undefined;
14915
+ claim?: string | undefined;
14498
14916
  owner_receive?: {
14499
14917
  received: {
14500
14918
  id: string;
@@ -14518,7 +14936,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14518
14936
  balance: string | number;
14519
14937
  token_type: string;
14520
14938
  } | "recently" | undefined;
14521
- claim?: string | undefined;
14522
14939
  coin_add?: {
14523
14940
  balance: string | number;
14524
14941
  } | {
@@ -14600,10 +15017,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14600
15017
  };
14601
15018
  allocators: {
14602
15019
  description: string;
14603
- threshold: string | number;
14604
15020
  allocators: {
14605
15021
  guard: string;
14606
15022
  sharing: {
15023
+ sharing: string | number;
14607
15024
  who: {
14608
15025
  GuardIdentifier: number;
14609
15026
  } | {
@@ -14614,12 +15031,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14614
15031
  } | {
14615
15032
  Signer: "signer";
14616
15033
  };
14617
- sharing: string | number;
14618
15034
  mode: "Amount" | "Rate" | "Surplus";
14619
15035
  }[];
14620
15036
  max?: string | number | null | undefined;
14621
15037
  fix?: string | number | undefined;
14622
15038
  }[];
15039
+ threshold: string | number;
14623
15040
  };
14624
15041
  payment_info: {
14625
15042
  index: string | number;
@@ -15098,8 +15515,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15098
15515
  proposition?: string[] | undefined;
15099
15516
  } | undefined;
15100
15517
  arb_objection?: {
15101
- objection: string;
15102
15518
  arb: string;
15519
+ objection: string;
15103
15520
  } | undefined;
15104
15521
  arb_claim_compensation?: {
15105
15522
  arb: string;
@@ -15196,6 +15613,73 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15196
15613
  }[];
15197
15614
  }[];
15198
15615
  } | undefined;
15616
+ } | {
15617
+ data: {
15618
+ proof: string;
15619
+ server_pubkey: string;
15620
+ server_signature: string;
15621
+ proof_type: string | number;
15622
+ description?: string | undefined;
15623
+ item_count?: string | number | null | undefined;
15624
+ about_address?: string | null | undefined;
15625
+ namedNew?: {
15626
+ name?: string | undefined;
15627
+ replaceExistName?: boolean | undefined;
15628
+ tags?: string[] | undefined;
15629
+ onChain?: boolean | undefined;
15630
+ } | undefined;
15631
+ };
15632
+ operation_type: "proof";
15633
+ submission?: {
15634
+ type: "submission";
15635
+ guard: {
15636
+ object: string;
15637
+ impack: boolean;
15638
+ }[];
15639
+ submission: {
15640
+ guard: string;
15641
+ submission: {
15642
+ identifier: number;
15643
+ b_submission: boolean;
15644
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType.Bool | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
15645
+ name: string;
15646
+ value?: string | number | boolean | {
15647
+ name_or_address?: string | undefined;
15648
+ local_mark_first?: boolean | undefined;
15649
+ } | {
15650
+ entities: {
15651
+ name_or_address?: string | undefined;
15652
+ local_mark_first?: boolean | undefined;
15653
+ }[];
15654
+ check_all_founded?: boolean | undefined;
15655
+ } | string[] | boolean[] | number[] | number[][] | undefined;
15656
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
15657
+ }[];
15658
+ }[];
15659
+ } | undefined;
15660
+ env?: {
15661
+ account: string;
15662
+ no_cache?: boolean | undefined;
15663
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
15664
+ permission_guard?: string[] | undefined;
15665
+ referrer?: string | undefined;
15666
+ } | undefined;
15667
+ } | {
15668
+ operation_type: "gen_proof";
15669
+ proof: string;
15670
+ server_pubkey: string;
15671
+ server_signature: string;
15672
+ proof_type: string | number;
15673
+ description?: string | undefined;
15674
+ env?: {
15675
+ account: string;
15676
+ no_cache?: boolean | undefined;
15677
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
15678
+ permission_guard?: string[] | undefined;
15679
+ referrer?: string | undefined;
15680
+ } | undefined;
15681
+ item_count?: string | number | null | undefined;
15682
+ about_address?: string | null | undefined;
15199
15683
  }, unknown>;
15200
15684
  export declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15201
15685
  type: z.ZodLiteral<"generate">;
@@ -15389,21 +15873,21 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
15389
15873
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
15390
15874
  }, "strip", z.ZodTypeAny, {
15391
15875
  name: string;
15876
+ parent: string;
15392
15877
  entity: number | {
15393
15878
  name_or_address?: string | undefined;
15394
15879
  local_mark_first?: boolean | undefined;
15395
15880
  };
15396
- parent: string;
15397
15881
  query_type: "onchain_table_item_repository_data";
15398
15882
  no_cache?: boolean | undefined;
15399
15883
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
15400
15884
  }, {
15401
15885
  name: string;
15886
+ parent: string;
15402
15887
  entity: number | {
15403
15888
  name_or_address?: string | undefined;
15404
15889
  local_mark_first?: boolean | undefined;
15405
15890
  };
15406
- parent: string;
15407
15891
  query_type: "onchain_table_item_repository_data";
15408
15892
  no_cache?: boolean | undefined;
15409
15893
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -15698,11 +16182,11 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
15698
16182
  limit?: number | null | undefined;
15699
16183
  } | {
15700
16184
  name: string;
16185
+ parent: string;
15701
16186
  entity: number | {
15702
16187
  name_or_address?: string | undefined;
15703
16188
  local_mark_first?: boolean | undefined;
15704
16189
  };
15705
- parent: string;
15706
16190
  query_type: "onchain_table_item_repository_data";
15707
16191
  no_cache?: boolean | undefined;
15708
16192
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -15896,6 +16380,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
15896
16380
  gte?: number | undefined;
15897
16381
  lte?: number | undefined;
15898
16382
  }>>;
16383
+ includePubkey: z.ZodOptional<z.ZodBoolean>;
15899
16384
  }, "strip", z.ZodTypeAny, {
15900
16385
  address?: string | undefined;
15901
16386
  name?: string | undefined;
@@ -15910,6 +16395,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
15910
16395
  m?: string | undefined;
15911
16396
  suspended?: boolean | undefined;
15912
16397
  hasMessenger?: boolean | undefined;
16398
+ includePubkey?: boolean | undefined;
15913
16399
  }, {
15914
16400
  address?: string | undefined;
15915
16401
  name?: string | undefined;
@@ -15924,6 +16410,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
15924
16410
  m?: string | undefined;
15925
16411
  suspended?: boolean | undefined;
15926
16412
  hasMessenger?: boolean | undefined;
16413
+ includePubkey?: boolean | undefined;
15927
16414
  }>>;
15928
16415
  }, "strip", z.ZodTypeAny, {
15929
16416
  query_type: "account_list";
@@ -15941,6 +16428,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
15941
16428
  m?: string | undefined;
15942
16429
  suspended?: boolean | undefined;
15943
16430
  hasMessenger?: boolean | undefined;
16431
+ includePubkey?: boolean | undefined;
15944
16432
  } | undefined;
15945
16433
  }, {
15946
16434
  query_type: "account_list";
@@ -15958,6 +16446,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
15958
16446
  m?: string | undefined;
15959
16447
  suspended?: boolean | undefined;
15960
16448
  hasMessenger?: boolean | undefined;
16449
+ includePubkey?: boolean | undefined;
15961
16450
  } | undefined;
15962
16451
  }>, z.ZodObject<{
15963
16452
  query_type: z.ZodLiteral<"local_info_list">;
@@ -16214,6 +16703,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16214
16703
  m?: string | undefined;
16215
16704
  suspended?: boolean | undefined;
16216
16705
  hasMessenger?: boolean | undefined;
16706
+ includePubkey?: boolean | undefined;
16217
16707
  } | undefined;
16218
16708
  } | {
16219
16709
  query_type: "local_info_list";
@@ -21989,6 +22479,7 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21989
22479
  }>, "many">>;
21990
22480
  }, z.ZodTypeAny, "passthrough"> | undefined;
21991
22481
  }>]>;
22482
+ semantic: z.ZodOptional<z.ZodAny>;
21992
22483
  }, "strip", z.ZodTypeAny, {
21993
22484
  result: {
21994
22485
  query_type: "onchain_table";
@@ -23144,6 +23635,7 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
23144
23635
  }>, "many">>;
23145
23636
  }, z.ZodTypeAny, "passthrough"> | undefined;
23146
23637
  };
23638
+ semantic?: any;
23147
23639
  }, {
23148
23640
  result: {
23149
23641
  query_type: "onchain_table";
@@ -24299,4 +24791,5 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
24299
24791
  }>, "many">>;
24300
24792
  }, z.ZodTypeAny, "passthrough"> | undefined;
24301
24793
  };
24794
+ semantic?: any;
24302
24795
  }>;