@wowok/agent-mcp 2.3.4 → 2.3.6

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 (48) hide show
  1. package/dist/index.d.ts +20 -20
  2. package/dist/schema/call/allocation.d.ts +1 -1
  3. package/dist/schema/call/arbitration.d.ts +1 -1
  4. package/dist/schema/call/base.d.ts +1 -1
  5. package/dist/schema/call/contact.d.ts +1 -1
  6. package/dist/schema/call/demand.d.ts +1 -1
  7. package/dist/schema/call/guard.d.ts +3 -3
  8. package/dist/schema/call/machine.d.ts +2 -2
  9. package/dist/schema/call/order.d.ts +1 -1
  10. package/dist/schema/call/payment.d.ts +1 -1
  11. package/dist/schema/call/permission.d.ts +1 -1
  12. package/dist/schema/call/personal.d.ts +1 -1
  13. package/dist/schema/call/progress.d.ts +1 -1
  14. package/dist/schema/call/proof.d.ts +2 -2
  15. package/dist/schema/call/repository.d.ts +1 -1
  16. package/dist/schema/call/reward.d.ts +1 -1
  17. package/dist/schema/call/service.d.ts +1 -1
  18. package/dist/schema/call/treasury.d.ts +1 -1
  19. package/dist/schema/common/index.d.ts +2 -2
  20. package/dist/schema/common/index.js +1 -0
  21. package/dist/schema/local/index.d.ts +29 -29
  22. package/dist/schema/local/wip.d.ts +34 -34
  23. package/dist/schema/local/wip.js +2 -2
  24. package/dist/schema/messenger/index.d.ts +1 -1
  25. package/dist/schema/query/index.d.ts +22 -22
  26. package/dist/schemas/account_operation.schema.json +2 -1
  27. package/dist/schemas/guard2file.schema.json +2 -1
  28. package/dist/schemas/index.json +1 -1
  29. package/dist/schemas/machineNode2file.schema.json +2 -1
  30. package/dist/schemas/messenger_operation.schema.json +2 -1
  31. package/dist/schemas/onchain_events.schema.json +2 -1
  32. package/dist/schemas/onchain_operations_allocation.schema.json +2 -1
  33. package/dist/schemas/onchain_operations_arbitration.schema.json +2 -1
  34. package/dist/schemas/onchain_operations_contact.schema.json +2 -1
  35. package/dist/schemas/onchain_operations_demand.schema.json +2 -1
  36. package/dist/schemas/onchain_operations_gen_passport.schema.json +4 -2
  37. package/dist/schemas/onchain_operations_guard.schema.json +2 -1
  38. package/dist/schemas/onchain_operations_machine.schema.json +2 -1
  39. package/dist/schemas/onchain_operations_order.schema.json +2 -1
  40. package/dist/schemas/onchain_operations_payment.schema.json +2 -1
  41. package/dist/schemas/onchain_operations_permission.schema.json +2 -1
  42. package/dist/schemas/onchain_operations_personal.schema.json +2 -1
  43. package/dist/schemas/onchain_operations_progress.schema.json +2 -1
  44. package/dist/schemas/onchain_operations_repository.schema.json +2 -1
  45. package/dist/schemas/onchain_operations_reward.schema.json +2 -1
  46. package/dist/schemas/onchain_operations_service.schema.json +2 -1
  47. package/dist/schemas/onchain_operations_treasury.schema.json +2 -1
  48. package/package.json +3 -2
@@ -4226,7 +4226,7 @@ export declare const QueryAccountSchema: z.ZodObject<{
4226
4226
  limit?: number | null | undefined;
4227
4227
  }>>;
4228
4228
  token_type: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
4229
- network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
4229
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
4230
4230
  }, "strip", z.ZodTypeAny, {
4231
4231
  name_or_address?: string | undefined;
4232
4232
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -4374,10 +4374,10 @@ export declare const AccountOperationSchema: z.ZodObject<{
4374
4374
  name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
4375
4375
  network: z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>;
4376
4376
  }, "strip", z.ZodTypeAny, {
4377
- network: import("@wowok/wowok").ENTRYPOINT;
4377
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
4378
4378
  name_or_address?: string | undefined;
4379
4379
  }, {
4380
- network: import("@wowok/wowok").ENTRYPOINT;
4380
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
4381
4381
  name_or_address?: string | undefined;
4382
4382
  }>>;
4383
4383
  suspend: z.ZodOptional<z.ZodObject<{
@@ -4422,7 +4422,7 @@ export declare const AccountOperationSchema: z.ZodObject<{
4422
4422
  name_or_address_to: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
4423
4423
  amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4424
4424
  token_type: z.ZodOptional<z.ZodString>;
4425
- network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
4425
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
4426
4426
  }, "strip", z.ZodTypeAny, {
4427
4427
  amount: string | number;
4428
4428
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -4440,7 +4440,7 @@ export declare const AccountOperationSchema: z.ZodObject<{
4440
4440
  name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
4441
4441
  balance_required: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
4442
4442
  token_type: z.ZodOptional<z.ZodString>;
4443
- network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
4443
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
4444
4444
  }, "strip", z.ZodTypeAny, {
4445
4445
  balance_required: string | number;
4446
4446
  name_or_address?: string | undefined;
@@ -4482,7 +4482,7 @@ export declare const AccountOperationSchema: z.ZodObject<{
4482
4482
  m?: string | null | undefined;
4483
4483
  } | undefined;
4484
4484
  faucet?: {
4485
- network: import("@wowok/wowok").ENTRYPOINT;
4485
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
4486
4486
  name_or_address?: string | undefined;
4487
4487
  } | undefined;
4488
4488
  suspend?: {
@@ -4529,7 +4529,7 @@ export declare const AccountOperationSchema: z.ZodObject<{
4529
4529
  m?: string | null | undefined;
4530
4530
  } | undefined;
4531
4531
  faucet?: {
4532
- network: import("@wowok/wowok").ENTRYPOINT;
4532
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
4533
4533
  name_or_address?: string | undefined;
4534
4534
  } | undefined;
4535
4535
  suspend?: {
@@ -4601,7 +4601,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
4601
4601
  }>, "many">;
4602
4602
  network: z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>;
4603
4603
  }, "strip", z.ZodTypeAny, {
4604
- network: import("@wowok/wowok").ENTRYPOINT;
4604
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
4605
4605
  result: {
4606
4606
  id: string;
4607
4607
  amount: number;
@@ -4609,7 +4609,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
4609
4609
  }[];
4610
4610
  name_or_address?: string | undefined;
4611
4611
  }, {
4612
- network: import("@wowok/wowok").ENTRYPOINT;
4612
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
4613
4613
  result: {
4614
4614
  id: string;
4615
4615
  amount: number;
@@ -6711,7 +6711,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
6711
6711
  name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
6712
6712
  balance_required: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
6713
6713
  token_type: z.ZodOptional<z.ZodString>;
6714
- network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
6714
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
6715
6715
  }, "strip", z.ZodTypeAny, {
6716
6716
  balance_required: string | number;
6717
6717
  name_or_address?: string | undefined;
@@ -6758,7 +6758,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
6758
6758
  m?: string | null | undefined;
6759
6759
  } | undefined;
6760
6760
  faucet?: {
6761
- network: import("@wowok/wowok").ENTRYPOINT;
6761
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
6762
6762
  result: {
6763
6763
  id: string;
6764
6764
  amount: number;
@@ -7099,7 +7099,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
7099
7099
  m?: string | null | undefined;
7100
7100
  } | undefined;
7101
7101
  faucet?: {
7102
- network: import("@wowok/wowok").ENTRYPOINT;
7102
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
7103
7103
  result: {
7104
7104
  id: string;
7105
7105
  amount: number;
@@ -7744,7 +7744,7 @@ export declare const LocalInfoOperationResultSchema: z.ZodObject<{
7744
7744
  export declare const FetchTokenInfoOperationSchema: z.ZodObject<{
7745
7745
  tokenType: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
7746
7746
  alias: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
7747
- network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
7747
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
7748
7748
  }, "strip", z.ZodTypeAny, {
7749
7749
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
7750
7750
  tokenType?: string | null | undefined;
@@ -8258,7 +8258,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
8258
8258
  }>, "many">;
8259
8259
  network: z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>;
8260
8260
  }, "strip", z.ZodTypeAny, {
8261
- network: import("@wowok/wowok").ENTRYPOINT;
8261
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
8262
8262
  result: {
8263
8263
  id: string;
8264
8264
  amount: number;
@@ -8266,7 +8266,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
8266
8266
  }[];
8267
8267
  name_or_address?: string | undefined;
8268
8268
  }, {
8269
- network: import("@wowok/wowok").ENTRYPOINT;
8269
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
8270
8270
  result: {
8271
8271
  id: string;
8272
8272
  amount: number;
@@ -10368,7 +10368,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
10368
10368
  name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
10369
10369
  balance_required: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
10370
10370
  token_type: z.ZodOptional<z.ZodString>;
10371
- network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
10371
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
10372
10372
  }, "strip", z.ZodTypeAny, {
10373
10373
  balance_required: string | number;
10374
10374
  name_or_address?: string | undefined;
@@ -10415,7 +10415,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
10415
10415
  m?: string | null | undefined;
10416
10416
  } | undefined;
10417
10417
  faucet?: {
10418
- network: import("@wowok/wowok").ENTRYPOINT;
10418
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
10419
10419
  result: {
10420
10420
  id: string;
10421
10421
  amount: number;
@@ -10756,7 +10756,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
10756
10756
  m?: string | null | undefined;
10757
10757
  } | undefined;
10758
10758
  faucet?: {
10759
- network: import("@wowok/wowok").ENTRYPOINT;
10759
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
10760
10760
  result: {
10761
10761
  id: string;
10762
10762
  amount: number;
@@ -11100,7 +11100,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
11100
11100
  m?: string | null | undefined;
11101
11101
  } | undefined;
11102
11102
  faucet?: {
11103
- network: import("@wowok/wowok").ENTRYPOINT;
11103
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
11104
11104
  result: {
11105
11105
  id: string;
11106
11106
  amount: number;
@@ -11444,7 +11444,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
11444
11444
  m?: string | null | undefined;
11445
11445
  } | undefined;
11446
11446
  faucet?: {
11447
- network: import("@wowok/wowok").ENTRYPOINT;
11447
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
11448
11448
  result: {
11449
11449
  id: string;
11450
11450
  amount: number;
@@ -11823,7 +11823,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
11823
11823
  }>, "many">;
11824
11824
  network: z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>;
11825
11825
  }, "strip", z.ZodTypeAny, {
11826
- network: import("@wowok/wowok").ENTRYPOINT;
11826
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
11827
11827
  result: {
11828
11828
  id: string;
11829
11829
  amount: number;
@@ -11831,7 +11831,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
11831
11831
  }[];
11832
11832
  name_or_address?: string | undefined;
11833
11833
  }, {
11834
- network: import("@wowok/wowok").ENTRYPOINT;
11834
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
11835
11835
  result: {
11836
11836
  id: string;
11837
11837
  amount: number;
@@ -13933,7 +13933,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
13933
13933
  name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13934
13934
  balance_required: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
13935
13935
  token_type: z.ZodOptional<z.ZodString>;
13936
- network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
13936
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
13937
13937
  }, "strip", z.ZodTypeAny, {
13938
13938
  balance_required: string | number;
13939
13939
  name_or_address?: string | undefined;
@@ -13980,7 +13980,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
13980
13980
  m?: string | null | undefined;
13981
13981
  } | undefined;
13982
13982
  faucet?: {
13983
- network: import("@wowok/wowok").ENTRYPOINT;
13983
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
13984
13984
  result: {
13985
13985
  id: string;
13986
13986
  amount: number;
@@ -14321,7 +14321,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
14321
14321
  m?: string | null | undefined;
14322
14322
  } | undefined;
14323
14323
  faucet?: {
14324
- network: import("@wowok/wowok").ENTRYPOINT;
14324
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
14325
14325
  result: {
14326
14326
  id: string;
14327
14327
  amount: number;
@@ -14665,7 +14665,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
14665
14665
  m?: string | null | undefined;
14666
14666
  } | undefined;
14667
14667
  faucet?: {
14668
- network: import("@wowok/wowok").ENTRYPOINT;
14668
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
14669
14669
  result: {
14670
14670
  id: string;
14671
14671
  amount: number;
@@ -15009,7 +15009,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
15009
15009
  m?: string | null | undefined;
15010
15010
  } | undefined;
15011
15011
  faucet?: {
15012
- network: import("@wowok/wowok").ENTRYPOINT;
15012
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
15013
15013
  result: {
15014
15014
  id: string;
15015
15015
  amount: number;
@@ -15364,7 +15364,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
15364
15364
  m?: string | null | undefined;
15365
15365
  } | undefined;
15366
15366
  faucet?: {
15367
- network: import("@wowok/wowok").ENTRYPOINT;
15367
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
15368
15368
  result: {
15369
15369
  id: string;
15370
15370
  amount: number;
@@ -15713,7 +15713,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
15713
15713
  m?: string | null | undefined;
15714
15714
  } | undefined;
15715
15715
  faucet?: {
15716
- network: import("@wowok/wowok").ENTRYPOINT;
15716
+ network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
15717
15717
  result: {
15718
15718
  id: string;
15719
15719
  amount: number;
@@ -10,7 +10,7 @@ export declare const WipConstraints: {
10
10
  export declare const TextFormatSchema: z.ZodUnion<[z.ZodLiteral<"plain">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">]>;
11
11
  export declare const ImageMimeTypeSchema: z.ZodUnion<[z.ZodLiteral<"image/png">, z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/gif">, z.ZodLiteral<"image/webp">]>;
12
12
  export declare const HashAlgorithmSchema: z.ZodLiteral<"sha256">;
13
- export declare const SignatureAlgorithmSchema: z.ZodLiteral<"Ed25519">;
13
+ export declare const SignatureAlgorithmSchema: z.ZodLiteral<"Falcon512">;
14
14
  export declare const WipContentSchema: z.ZodObject<{
15
15
  text: z.ZodString;
16
16
  format: z.ZodUnion<[z.ZodLiteral<"plain">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">]>;
@@ -90,48 +90,48 @@ export declare const WipPayloadSchema: z.ZodObject<{
90
90
  export declare const WipSignatureSchema: z.ZodObject<{
91
91
  value: z.ZodString;
92
92
  publicKey: z.ZodString;
93
- algorithm: z.ZodLiteral<"Ed25519">;
93
+ algorithm: z.ZodLiteral<"Falcon512">;
94
94
  address: z.ZodOptional<z.ZodString>;
95
95
  }, "strip", z.ZodTypeAny, {
96
96
  value: string;
97
97
  publicKey: string;
98
- algorithm: "Ed25519";
98
+ algorithm: "Falcon512";
99
99
  address?: string | undefined;
100
100
  }, {
101
101
  value: string;
102
102
  publicKey: string;
103
- algorithm: "Ed25519";
103
+ algorithm: "Falcon512";
104
104
  address?: string | undefined;
105
105
  }>;
106
106
  export declare const WipSignatureArraySchema: z.ZodUnion<[z.ZodObject<{
107
107
  value: z.ZodString;
108
108
  publicKey: z.ZodString;
109
- algorithm: z.ZodLiteral<"Ed25519">;
109
+ algorithm: z.ZodLiteral<"Falcon512">;
110
110
  address: z.ZodOptional<z.ZodString>;
111
111
  }, "strip", z.ZodTypeAny, {
112
112
  value: string;
113
113
  publicKey: string;
114
- algorithm: "Ed25519";
114
+ algorithm: "Falcon512";
115
115
  address?: string | undefined;
116
116
  }, {
117
117
  value: string;
118
118
  publicKey: string;
119
- algorithm: "Ed25519";
119
+ algorithm: "Falcon512";
120
120
  address?: string | undefined;
121
121
  }>, z.ZodArray<z.ZodObject<{
122
122
  value: z.ZodString;
123
123
  publicKey: z.ZodString;
124
- algorithm: z.ZodLiteral<"Ed25519">;
124
+ algorithm: z.ZodLiteral<"Falcon512">;
125
125
  address: z.ZodOptional<z.ZodString>;
126
126
  }, "strip", z.ZodTypeAny, {
127
127
  value: string;
128
128
  publicKey: string;
129
- algorithm: "Ed25519";
129
+ algorithm: "Falcon512";
130
130
  address?: string | undefined;
131
131
  }, {
132
132
  value: string;
133
133
  publicKey: string;
134
- algorithm: "Ed25519";
134
+ algorithm: "Falcon512";
135
135
  address?: string | undefined;
136
136
  }>, "many">]>;
137
137
  export declare const WipMetaSchema: z.ZodObject<{
@@ -143,32 +143,32 @@ export declare const WipMetaSchema: z.ZodObject<{
143
143
  signature: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
144
144
  value: z.ZodString;
145
145
  publicKey: z.ZodString;
146
- algorithm: z.ZodLiteral<"Ed25519">;
146
+ algorithm: z.ZodLiteral<"Falcon512">;
147
147
  address: z.ZodOptional<z.ZodString>;
148
148
  }, "strip", z.ZodTypeAny, {
149
149
  value: string;
150
150
  publicKey: string;
151
- algorithm: "Ed25519";
151
+ algorithm: "Falcon512";
152
152
  address?: string | undefined;
153
153
  }, {
154
154
  value: string;
155
155
  publicKey: string;
156
- algorithm: "Ed25519";
156
+ algorithm: "Falcon512";
157
157
  address?: string | undefined;
158
158
  }>, z.ZodArray<z.ZodObject<{
159
159
  value: z.ZodString;
160
160
  publicKey: z.ZodString;
161
- algorithm: z.ZodLiteral<"Ed25519">;
161
+ algorithm: z.ZodLiteral<"Falcon512">;
162
162
  address: z.ZodOptional<z.ZodString>;
163
163
  }, "strip", z.ZodTypeAny, {
164
164
  value: string;
165
165
  publicKey: string;
166
- algorithm: "Ed25519";
166
+ algorithm: "Falcon512";
167
167
  address?: string | undefined;
168
168
  }, {
169
169
  value: string;
170
170
  publicKey: string;
171
- algorithm: "Ed25519";
171
+ algorithm: "Falcon512";
172
172
  address?: string | undefined;
173
173
  }>, "many">]>>;
174
174
  }, "strip", z.ZodTypeAny, {
@@ -180,12 +180,12 @@ export declare const WipMetaSchema: z.ZodObject<{
180
180
  signature?: {
181
181
  value: string;
182
182
  publicKey: string;
183
- algorithm: "Ed25519";
183
+ algorithm: "Falcon512";
184
184
  address?: string | undefined;
185
185
  } | {
186
186
  value: string;
187
187
  publicKey: string;
188
- algorithm: "Ed25519";
188
+ algorithm: "Falcon512";
189
189
  address?: string | undefined;
190
190
  }[] | undefined;
191
191
  }, {
@@ -197,12 +197,12 @@ export declare const WipMetaSchema: z.ZodObject<{
197
197
  signature?: {
198
198
  value: string;
199
199
  publicKey: string;
200
- algorithm: "Ed25519";
200
+ algorithm: "Falcon512";
201
201
  address?: string | undefined;
202
202
  } | {
203
203
  value: string;
204
204
  publicKey: string;
205
- algorithm: "Ed25519";
205
+ algorithm: "Falcon512";
206
206
  address?: string | undefined;
207
207
  }[] | undefined;
208
208
  }>;
@@ -267,32 +267,32 @@ export declare const WipFileSchema: z.ZodObject<{
267
267
  signature: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
268
268
  value: z.ZodString;
269
269
  publicKey: z.ZodString;
270
- algorithm: z.ZodLiteral<"Ed25519">;
270
+ algorithm: z.ZodLiteral<"Falcon512">;
271
271
  address: z.ZodOptional<z.ZodString>;
272
272
  }, "strip", z.ZodTypeAny, {
273
273
  value: string;
274
274
  publicKey: string;
275
- algorithm: "Ed25519";
275
+ algorithm: "Falcon512";
276
276
  address?: string | undefined;
277
277
  }, {
278
278
  value: string;
279
279
  publicKey: string;
280
- algorithm: "Ed25519";
280
+ algorithm: "Falcon512";
281
281
  address?: string | undefined;
282
282
  }>, z.ZodArray<z.ZodObject<{
283
283
  value: z.ZodString;
284
284
  publicKey: z.ZodString;
285
- algorithm: z.ZodLiteral<"Ed25519">;
285
+ algorithm: z.ZodLiteral<"Falcon512">;
286
286
  address: z.ZodOptional<z.ZodString>;
287
287
  }, "strip", z.ZodTypeAny, {
288
288
  value: string;
289
289
  publicKey: string;
290
- algorithm: "Ed25519";
290
+ algorithm: "Falcon512";
291
291
  address?: string | undefined;
292
292
  }, {
293
293
  value: string;
294
294
  publicKey: string;
295
- algorithm: "Ed25519";
295
+ algorithm: "Falcon512";
296
296
  address?: string | undefined;
297
297
  }>, "many">]>>;
298
298
  }, "strip", z.ZodTypeAny, {
@@ -304,12 +304,12 @@ export declare const WipFileSchema: z.ZodObject<{
304
304
  signature?: {
305
305
  value: string;
306
306
  publicKey: string;
307
- algorithm: "Ed25519";
307
+ algorithm: "Falcon512";
308
308
  address?: string | undefined;
309
309
  } | {
310
310
  value: string;
311
311
  publicKey: string;
312
- algorithm: "Ed25519";
312
+ algorithm: "Falcon512";
313
313
  address?: string | undefined;
314
314
  }[] | undefined;
315
315
  }, {
@@ -321,12 +321,12 @@ export declare const WipFileSchema: z.ZodObject<{
321
321
  signature?: {
322
322
  value: string;
323
323
  publicKey: string;
324
- algorithm: "Ed25519";
324
+ algorithm: "Falcon512";
325
325
  address?: string | undefined;
326
326
  } | {
327
327
  value: string;
328
328
  publicKey: string;
329
- algorithm: "Ed25519";
329
+ algorithm: "Falcon512";
330
330
  address?: string | undefined;
331
331
  }[] | undefined;
332
332
  }>;
@@ -353,12 +353,12 @@ export declare const WipFileSchema: z.ZodObject<{
353
353
  signature?: {
354
354
  value: string;
355
355
  publicKey: string;
356
- algorithm: "Ed25519";
356
+ algorithm: "Falcon512";
357
357
  address?: string | undefined;
358
358
  } | {
359
359
  value: string;
360
360
  publicKey: string;
361
- algorithm: "Ed25519";
361
+ algorithm: "Falcon512";
362
362
  address?: string | undefined;
363
363
  }[] | undefined;
364
364
  };
@@ -385,12 +385,12 @@ export declare const WipFileSchema: z.ZodObject<{
385
385
  signature?: {
386
386
  value: string;
387
387
  publicKey: string;
388
- algorithm: "Ed25519";
388
+ algorithm: "Falcon512";
389
389
  address?: string | undefined;
390
390
  } | {
391
391
  value: string;
392
392
  publicKey: string;
393
- algorithm: "Ed25519";
393
+ algorithm: "Falcon512";
394
394
  address?: string | undefined;
395
395
  }[] | undefined;
396
396
  };
@@ -26,8 +26,8 @@ export const HashAlgorithmSchema = z
26
26
  .literal("sha256")
27
27
  .describe("Hash algorithm, fixed as sha256");
28
28
  export const SignatureAlgorithmSchema = z
29
- .literal("Ed25519")
30
- .describe("Signature algorithm, fixed as Ed25519");
29
+ .literal("Falcon512")
30
+ .describe("Signature algorithm, fixed as Falcon512");
31
31
  export const WipContentSchema = z
32
32
  .object({
33
33
  text: z.string().max(WipConstraints.maxTextLength).describe("Text content"),
@@ -2256,7 +2256,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
2256
2256
  operation: z.ZodLiteral<"proof_message">;
2257
2257
  account: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2258
2258
  messageId: z.ZodString;
2259
- network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
2259
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
2260
2260
  }, "strip", z.ZodTypeAny, {
2261
2261
  operation: "proof_message";
2262
2262
  messageId: string;