@wowok/agent-mcp 2.3.12 → 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 (93) 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/proof.js +7 -6
  46. package/dist/schema/call/reward.d.ts +6 -6
  47. package/dist/schema/call/semantic.d.ts +23 -0
  48. package/dist/schema/call/semantic.js +764 -0
  49. package/dist/schema/call/service.d.ts +142 -142
  50. package/dist/schema/call/treasury.d.ts +204 -204
  51. package/dist/schema/local/index.d.ts +113 -2
  52. package/dist/schema/local/index.js +11 -1
  53. package/dist/schema/messenger/index.d.ts +435 -95
  54. package/dist/schema/messenger/index.js +20 -8
  55. package/dist/schema/operations.d.ts +988 -495
  56. package/dist/schema/operations.js +14 -3
  57. package/dist/schema/query/index.d.ts +346 -342
  58. package/dist/schema/query/index.js +4 -1
  59. package/dist/schemas/account_operation.output.json +3 -0
  60. package/dist/schemas/account_operation.schema.json +1 -1
  61. package/dist/schemas/index.json +1 -1
  62. package/dist/schemas/local_info_operation.output.json +3 -0
  63. package/dist/schemas/local_mark_operation.output.json +3 -0
  64. package/dist/schemas/messenger_operation.output.json +21 -0
  65. package/dist/schemas/messenger_operation.schema.json +43 -8
  66. package/dist/schemas/onchain_events.output.json +3 -0
  67. package/dist/schemas/onchain_operations.output.json +464 -21
  68. package/dist/schemas/onchain_operations.schema.json +21 -17
  69. package/dist/schemas/onchain_operations_allocation.schema.json +11 -9
  70. package/dist/schemas/onchain_operations_arbitration.schema.json +11 -9
  71. package/dist/schemas/onchain_operations_contact.schema.json +11 -9
  72. package/dist/schemas/onchain_operations_demand.schema.json +11 -9
  73. package/dist/schemas/onchain_operations_gen_passport.schema.json +21 -17
  74. package/dist/schemas/onchain_operations_guard.schema.json +11 -9
  75. package/dist/schemas/onchain_operations_machine.schema.json +11 -9
  76. package/dist/schemas/onchain_operations_order.schema.json +11 -9
  77. package/dist/schemas/onchain_operations_payment.schema.json +11 -9
  78. package/dist/schemas/onchain_operations_permission.schema.json +11 -9
  79. package/dist/schemas/onchain_operations_personal.schema.json +11 -9
  80. package/dist/schemas/onchain_operations_progress.schema.json +11 -9
  81. package/dist/schemas/onchain_operations_repository.schema.json +11 -9
  82. package/dist/schemas/onchain_operations_reward.schema.json +11 -9
  83. package/dist/schemas/onchain_operations_service.schema.json +11 -9
  84. package/dist/schemas/onchain_operations_treasury.schema.json +11 -9
  85. package/dist/schemas/onchain_table_data.output.json +3 -0
  86. package/dist/schemas/query_toolkit.schema.json +5 -1
  87. package/dist/telemetry/index.d.ts +19 -0
  88. package/dist/telemetry/index.js +112 -0
  89. package/dist/telemetry/redact.d.ts +2 -0
  90. package/dist/telemetry/redact.js +23 -0
  91. package/dist/telemetry/storage.d.ts +8 -0
  92. package/dist/telemetry/storage.js +80 -0
  93. package/package.json +6 -3
@@ -10,11 +10,11 @@ export declare const BridgeWowToEvmDataSchema: z.ZodObject<{
10
10
  withdrawTo: z.ZodOptional<z.ZodString>;
11
11
  }, "strict", z.ZodTypeAny, {
12
12
  amount: string;
13
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
13
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
14
14
  withdrawTo?: string | undefined;
15
15
  }, {
16
16
  amount: string;
17
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
17
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
18
18
  withdrawTo?: string | undefined;
19
19
  }>;
20
20
  export declare const BridgeEvmToWowDataSchema: z.ZodObject<{
@@ -23,11 +23,11 @@ export declare const BridgeEvmToWowDataSchema: z.ZodObject<{
23
23
  recipientWowAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
24
24
  }, "strict", z.ZodTypeAny, {
25
25
  amount: string;
26
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
26
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
27
27
  recipientWowAddress?: string | undefined;
28
28
  }, {
29
29
  amount: string;
30
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
30
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
31
31
  recipientWowAddress?: string | undefined;
32
32
  }>;
33
33
  export declare const BridgeClaimWowToEvmDataSchema: z.ZodObject<{
@@ -47,13 +47,13 @@ export declare const BridgeWithdrawDataSchema: z.ZodObject<{
47
47
  amount: string;
48
48
  to: string;
49
49
  network?: "mainnet" | undefined;
50
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
50
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
51
51
  tokenAddress?: string | undefined;
52
52
  }, {
53
53
  amount: string;
54
54
  to: string;
55
55
  network?: "mainnet" | undefined;
56
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
56
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
57
57
  tokenAddress?: string | undefined;
58
58
  }>;
59
59
  export declare const BridgeQueryActiveEvmAccountDataSchema: z.ZodObject<{
@@ -80,15 +80,15 @@ export declare const BridgeQueryTransferListDataSchema: z.ZodObject<{
80
80
  token: z.ZodOptional<z.ZodEnum<["ETH", "WETH", "WBTC", "USDC", "USDT"]>>;
81
81
  limit: z.ZodOptional<z.ZodNumber>;
82
82
  }, "strict", z.ZodTypeAny, {
83
- status?: "success" | "pending" | "in_progress" | "failed" | undefined;
83
+ status?: "success" | "failed" | "in_progress" | "pending" | undefined;
84
84
  limit?: number | undefined;
85
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
85
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
86
86
  onlyActive?: boolean | undefined;
87
87
  direction?: "withdraw" | "wow_to_evm" | "evm_to_wow" | undefined;
88
88
  }, {
89
- status?: "success" | "pending" | "in_progress" | "failed" | undefined;
89
+ status?: "success" | "failed" | "in_progress" | "pending" | undefined;
90
90
  limit?: number | undefined;
91
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
91
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
92
92
  onlyActive?: boolean | undefined;
93
93
  direction?: "withdraw" | "wow_to_evm" | "evm_to_wow" | undefined;
94
94
  }>;
@@ -168,11 +168,11 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
168
168
  withdrawTo: z.ZodOptional<z.ZodString>;
169
169
  }, "strict", z.ZodTypeAny, {
170
170
  amount: string;
171
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
171
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
172
172
  withdrawTo?: string | undefined;
173
173
  }, {
174
174
  amount: string;
175
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
175
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
176
176
  withdrawTo?: string | undefined;
177
177
  }>;
178
178
  env: z.ZodOptional<z.ZodObject<{
@@ -197,7 +197,7 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
197
197
  }, "strip", z.ZodTypeAny, {
198
198
  data: {
199
199
  amount: string;
200
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
200
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
201
201
  withdrawTo?: string | undefined;
202
202
  };
203
203
  operation_type: "cross_chain_wow_to_evm";
@@ -211,7 +211,7 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
211
211
  }, {
212
212
  data: {
213
213
  amount: string;
214
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
214
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
215
215
  withdrawTo?: string | undefined;
216
216
  };
217
217
  operation_type: "cross_chain_wow_to_evm";
@@ -230,11 +230,11 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
230
230
  recipientWowAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
231
231
  }, "strict", z.ZodTypeAny, {
232
232
  amount: string;
233
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
233
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
234
234
  recipientWowAddress?: string | undefined;
235
235
  }, {
236
236
  amount: string;
237
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
237
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
238
238
  recipientWowAddress?: string | undefined;
239
239
  }>;
240
240
  env: z.ZodOptional<z.ZodObject<{
@@ -259,7 +259,7 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
259
259
  }, "strip", z.ZodTypeAny, {
260
260
  data: {
261
261
  amount: string;
262
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
262
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
263
263
  recipientWowAddress?: string | undefined;
264
264
  };
265
265
  operation_type: "cross_chain_evm_to_wow";
@@ -273,7 +273,7 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
273
273
  }, {
274
274
  data: {
275
275
  amount: string;
276
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
276
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
277
277
  recipientWowAddress?: string | undefined;
278
278
  };
279
279
  operation_type: "cross_chain_evm_to_wow";
@@ -348,13 +348,13 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
348
348
  amount: string;
349
349
  to: string;
350
350
  network?: "mainnet" | undefined;
351
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
351
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
352
352
  tokenAddress?: string | undefined;
353
353
  }, {
354
354
  amount: string;
355
355
  to: string;
356
356
  network?: "mainnet" | undefined;
357
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
357
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
358
358
  tokenAddress?: string | undefined;
359
359
  }>;
360
360
  }, "strip", z.ZodTypeAny, {
@@ -362,7 +362,7 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
362
362
  amount: string;
363
363
  to: string;
364
364
  network?: "mainnet" | undefined;
365
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
365
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
366
366
  tokenAddress?: string | undefined;
367
367
  };
368
368
  operation_type: "withdraw";
@@ -371,7 +371,7 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
371
371
  amount: string;
372
372
  to: string;
373
373
  network?: "mainnet" | undefined;
374
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
374
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
375
375
  tokenAddress?: string | undefined;
376
376
  };
377
377
  operation_type: "withdraw";
@@ -433,33 +433,33 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
433
433
  token: z.ZodOptional<z.ZodEnum<["ETH", "WETH", "WBTC", "USDC", "USDT"]>>;
434
434
  limit: z.ZodOptional<z.ZodNumber>;
435
435
  }, "strict", z.ZodTypeAny, {
436
- status?: "success" | "pending" | "in_progress" | "failed" | undefined;
436
+ status?: "success" | "failed" | "in_progress" | "pending" | undefined;
437
437
  limit?: number | undefined;
438
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
438
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
439
439
  onlyActive?: boolean | undefined;
440
440
  direction?: "withdraw" | "wow_to_evm" | "evm_to_wow" | undefined;
441
441
  }, {
442
- status?: "success" | "pending" | "in_progress" | "failed" | undefined;
442
+ status?: "success" | "failed" | "in_progress" | "pending" | undefined;
443
443
  limit?: number | undefined;
444
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
444
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
445
445
  onlyActive?: boolean | undefined;
446
446
  direction?: "withdraw" | "wow_to_evm" | "evm_to_wow" | undefined;
447
447
  }>>;
448
448
  }, "strip", z.ZodTypeAny, {
449
449
  operation_type: "query_transfer_list";
450
450
  data?: {
451
- status?: "success" | "pending" | "in_progress" | "failed" | undefined;
451
+ status?: "success" | "failed" | "in_progress" | "pending" | undefined;
452
452
  limit?: number | undefined;
453
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
453
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
454
454
  onlyActive?: boolean | undefined;
455
455
  direction?: "withdraw" | "wow_to_evm" | "evm_to_wow" | undefined;
456
456
  } | undefined;
457
457
  }, {
458
458
  operation_type: "query_transfer_list";
459
459
  data?: {
460
- status?: "success" | "pending" | "in_progress" | "failed" | undefined;
460
+ status?: "success" | "failed" | "in_progress" | "pending" | undefined;
461
461
  limit?: number | undefined;
462
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
462
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
463
463
  onlyActive?: boolean | undefined;
464
464
  direction?: "withdraw" | "wow_to_evm" | "evm_to_wow" | undefined;
465
465
  } | undefined;
@@ -594,7 +594,7 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
594
594
  }>]>, {
595
595
  data: {
596
596
  amount: string;
597
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
597
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
598
598
  withdrawTo?: string | undefined;
599
599
  };
600
600
  operation_type: "cross_chain_wow_to_evm";
@@ -608,7 +608,7 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
608
608
  } | {
609
609
  data: {
610
610
  amount: string;
611
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
611
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
612
612
  recipientWowAddress?: string | undefined;
613
613
  };
614
614
  operation_type: "cross_chain_evm_to_wow";
@@ -636,7 +636,7 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
636
636
  amount: string;
637
637
  to: string;
638
638
  network?: "mainnet" | undefined;
639
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
639
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
640
640
  tokenAddress?: string | undefined;
641
641
  };
642
642
  operation_type: "withdraw";
@@ -656,9 +656,9 @@ export declare const BridgeOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnio
656
656
  } | {
657
657
  operation_type: "query_transfer_list";
658
658
  data?: {
659
- status?: "success" | "pending" | "in_progress" | "failed" | undefined;
659
+ status?: "success" | "failed" | "in_progress" | "pending" | undefined;
660
660
  limit?: number | undefined;
661
- token?: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT" | undefined;
661
+ token?: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC" | undefined;
662
662
  onlyActive?: boolean | undefined;
663
663
  direction?: "withdraw" | "wow_to_evm" | "evm_to_wow" | undefined;
664
664
  } | undefined;
@@ -707,8 +707,8 @@ export declare const BridgeLatestStateSchema: z.ZodObject<{
707
707
  hint: z.ZodOptional<z.ZodString>;
708
708
  updatedAt: z.ZodOptional<z.ZodNumber>;
709
709
  }, "strip", z.ZodTypeAny, {
710
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
711
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
710
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
711
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
712
712
  error?: string | undefined;
713
713
  updatedAt?: number | undefined;
714
714
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -722,8 +722,8 @@ export declare const BridgeLatestStateSchema: z.ZodObject<{
722
722
  wowReceipt?: any;
723
723
  hint?: string | undefined;
724
724
  }, {
725
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
726
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
725
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
726
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
727
727
  error?: string | undefined;
728
728
  updatedAt?: number | undefined;
729
729
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -772,8 +772,8 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
772
772
  hint: z.ZodOptional<z.ZodString>;
773
773
  updatedAt: z.ZodOptional<z.ZodNumber>;
774
774
  }, "strip", z.ZodTypeAny, {
775
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
776
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
775
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
776
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
777
777
  error?: string | undefined;
778
778
  updatedAt?: number | undefined;
779
779
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -787,8 +787,8 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
787
787
  wowReceipt?: any;
788
788
  hint?: string | undefined;
789
789
  }, {
790
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
791
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
790
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
791
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
792
792
  error?: string | undefined;
793
793
  updatedAt?: number | undefined;
794
794
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -803,11 +803,11 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
803
803
  hint?: string | undefined;
804
804
  }>>;
805
805
  }, "strict", z.ZodTypeAny, {
806
- status: "success" | "pending" | "in_progress" | "failed";
806
+ status: "success" | "failed" | "in_progress" | "pending";
807
807
  amount: string;
808
808
  createdAt: number;
809
809
  updatedAt: number;
810
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
810
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
811
811
  transferId: string;
812
812
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
813
813
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -822,8 +822,8 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
822
822
  claimTxHash?: string | undefined;
823
823
  withdrawTxHash?: string | undefined;
824
824
  latestState?: {
825
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
826
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
825
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
826
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
827
827
  error?: string | undefined;
828
828
  updatedAt?: number | undefined;
829
829
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -838,11 +838,11 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
838
838
  hint?: string | undefined;
839
839
  } | undefined;
840
840
  }, {
841
- status: "success" | "pending" | "in_progress" | "failed";
841
+ status: "success" | "failed" | "in_progress" | "pending";
842
842
  amount: string;
843
843
  createdAt: number;
844
844
  updatedAt: number;
845
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
845
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
846
846
  transferId: string;
847
847
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
848
848
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -857,8 +857,8 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
857
857
  claimTxHash?: string | undefined;
858
858
  withdrawTxHash?: string | undefined;
859
859
  latestState?: {
860
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
861
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
860
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
861
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
862
862
  error?: string | undefined;
863
863
  updatedAt?: number | undefined;
864
864
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1094,8 +1094,8 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1094
1094
  hint: z.ZodOptional<z.ZodString>;
1095
1095
  updatedAt: z.ZodOptional<z.ZodNumber>;
1096
1096
  }, "strip", z.ZodTypeAny, {
1097
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1098
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1097
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1098
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1099
1099
  error?: string | undefined;
1100
1100
  updatedAt?: number | undefined;
1101
1101
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1109,8 +1109,8 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1109
1109
  wowReceipt?: any;
1110
1110
  hint?: string | undefined;
1111
1111
  }, {
1112
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1113
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1112
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1113
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1114
1114
  error?: string | undefined;
1115
1115
  updatedAt?: number | undefined;
1116
1116
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1125,11 +1125,11 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1125
1125
  hint?: string | undefined;
1126
1126
  }>>;
1127
1127
  }, "strict", z.ZodTypeAny, {
1128
- status: "success" | "pending" | "in_progress" | "failed";
1128
+ status: "success" | "failed" | "in_progress" | "pending";
1129
1129
  amount: string;
1130
1130
  createdAt: number;
1131
1131
  updatedAt: number;
1132
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
1132
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
1133
1133
  transferId: string;
1134
1134
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
1135
1135
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -1144,8 +1144,8 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1144
1144
  claimTxHash?: string | undefined;
1145
1145
  withdrawTxHash?: string | undefined;
1146
1146
  latestState?: {
1147
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1148
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1147
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1148
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1149
1149
  error?: string | undefined;
1150
1150
  updatedAt?: number | undefined;
1151
1151
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1160,11 +1160,11 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1160
1160
  hint?: string | undefined;
1161
1161
  } | undefined;
1162
1162
  }, {
1163
- status: "success" | "pending" | "in_progress" | "failed";
1163
+ status: "success" | "failed" | "in_progress" | "pending";
1164
1164
  amount: string;
1165
1165
  createdAt: number;
1166
1166
  updatedAt: number;
1167
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
1167
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
1168
1168
  transferId: string;
1169
1169
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
1170
1170
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -1179,8 +1179,8 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1179
1179
  claimTxHash?: string | undefined;
1180
1180
  withdrawTxHash?: string | undefined;
1181
1181
  latestState?: {
1182
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1183
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1182
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1183
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1184
1184
  error?: string | undefined;
1185
1185
  updatedAt?: number | undefined;
1186
1186
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1230,8 +1230,8 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1230
1230
  hint: z.ZodOptional<z.ZodString>;
1231
1231
  updatedAt: z.ZodOptional<z.ZodNumber>;
1232
1232
  }, "strip", z.ZodTypeAny, {
1233
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1234
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1233
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1234
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1235
1235
  error?: string | undefined;
1236
1236
  updatedAt?: number | undefined;
1237
1237
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1245,8 +1245,8 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1245
1245
  wowReceipt?: any;
1246
1246
  hint?: string | undefined;
1247
1247
  }, {
1248
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1249
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1248
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1249
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1250
1250
  error?: string | undefined;
1251
1251
  updatedAt?: number | undefined;
1252
1252
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1261,11 +1261,11 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1261
1261
  hint?: string | undefined;
1262
1262
  }>>;
1263
1263
  }, "strict", z.ZodTypeAny, {
1264
- status: "success" | "pending" | "in_progress" | "failed";
1264
+ status: "success" | "failed" | "in_progress" | "pending";
1265
1265
  amount: string;
1266
1266
  createdAt: number;
1267
1267
  updatedAt: number;
1268
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
1268
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
1269
1269
  transferId: string;
1270
1270
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
1271
1271
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -1280,8 +1280,8 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1280
1280
  claimTxHash?: string | undefined;
1281
1281
  withdrawTxHash?: string | undefined;
1282
1282
  latestState?: {
1283
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1284
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1283
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1284
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1285
1285
  error?: string | undefined;
1286
1286
  updatedAt?: number | undefined;
1287
1287
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1296,11 +1296,11 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1296
1296
  hint?: string | undefined;
1297
1297
  } | undefined;
1298
1298
  }, {
1299
- status: "success" | "pending" | "in_progress" | "failed";
1299
+ status: "success" | "failed" | "in_progress" | "pending";
1300
1300
  amount: string;
1301
1301
  createdAt: number;
1302
1302
  updatedAt: number;
1303
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
1303
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
1304
1304
  transferId: string;
1305
1305
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
1306
1306
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -1315,8 +1315,8 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1315
1315
  claimTxHash?: string | undefined;
1316
1316
  withdrawTxHash?: string | undefined;
1317
1317
  latestState?: {
1318
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1319
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1318
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1319
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1320
1320
  error?: string | undefined;
1321
1321
  updatedAt?: number | undefined;
1322
1322
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1738,8 +1738,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1738
1738
  hint: z.ZodOptional<z.ZodString>;
1739
1739
  updatedAt: z.ZodOptional<z.ZodNumber>;
1740
1740
  }, "strip", z.ZodTypeAny, {
1741
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1742
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1741
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1742
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1743
1743
  error?: string | undefined;
1744
1744
  updatedAt?: number | undefined;
1745
1745
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1753,8 +1753,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1753
1753
  wowReceipt?: any;
1754
1754
  hint?: string | undefined;
1755
1755
  }, {
1756
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1757
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1756
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1757
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1758
1758
  error?: string | undefined;
1759
1759
  updatedAt?: number | undefined;
1760
1760
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1769,11 +1769,11 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1769
1769
  hint?: string | undefined;
1770
1770
  }>>;
1771
1771
  }, "strict", z.ZodTypeAny, {
1772
- status: "success" | "pending" | "in_progress" | "failed";
1772
+ status: "success" | "failed" | "in_progress" | "pending";
1773
1773
  amount: string;
1774
1774
  createdAt: number;
1775
1775
  updatedAt: number;
1776
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
1776
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
1777
1777
  transferId: string;
1778
1778
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
1779
1779
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -1788,8 +1788,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1788
1788
  claimTxHash?: string | undefined;
1789
1789
  withdrawTxHash?: string | undefined;
1790
1790
  latestState?: {
1791
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1792
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1791
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1792
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1793
1793
  error?: string | undefined;
1794
1794
  updatedAt?: number | undefined;
1795
1795
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1804,11 +1804,11 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1804
1804
  hint?: string | undefined;
1805
1805
  } | undefined;
1806
1806
  }, {
1807
- status: "success" | "pending" | "in_progress" | "failed";
1807
+ status: "success" | "failed" | "in_progress" | "pending";
1808
1808
  amount: string;
1809
1809
  createdAt: number;
1810
1810
  updatedAt: number;
1811
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
1811
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
1812
1812
  transferId: string;
1813
1813
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
1814
1814
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -1823,8 +1823,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1823
1823
  claimTxHash?: string | undefined;
1824
1824
  withdrawTxHash?: string | undefined;
1825
1825
  latestState?: {
1826
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1827
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1826
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1827
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1828
1828
  error?: string | undefined;
1829
1829
  updatedAt?: number | undefined;
1830
1830
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1842,11 +1842,11 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1842
1842
  message: z.ZodOptional<z.ZodString>;
1843
1843
  }, "strip", z.ZodTypeAny, {
1844
1844
  result: {
1845
- status: "success" | "pending" | "in_progress" | "failed";
1845
+ status: "success" | "failed" | "in_progress" | "pending";
1846
1846
  amount: string;
1847
1847
  createdAt: number;
1848
1848
  updatedAt: number;
1849
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
1849
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
1850
1850
  transferId: string;
1851
1851
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
1852
1852
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -1861,8 +1861,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1861
1861
  claimTxHash?: string | undefined;
1862
1862
  withdrawTxHash?: string | undefined;
1863
1863
  latestState?: {
1864
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1865
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1864
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1865
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1866
1866
  error?: string | undefined;
1867
1867
  updatedAt?: number | undefined;
1868
1868
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1881,11 +1881,11 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1881
1881
  message?: string | undefined;
1882
1882
  }, {
1883
1883
  result: {
1884
- status: "success" | "pending" | "in_progress" | "failed";
1884
+ status: "success" | "failed" | "in_progress" | "pending";
1885
1885
  amount: string;
1886
1886
  createdAt: number;
1887
1887
  updatedAt: number;
1888
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
1888
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
1889
1889
  transferId: string;
1890
1890
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
1891
1891
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -1900,8 +1900,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1900
1900
  claimTxHash?: string | undefined;
1901
1901
  withdrawTxHash?: string | undefined;
1902
1902
  latestState?: {
1903
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1904
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1903
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1904
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1905
1905
  error?: string | undefined;
1906
1906
  updatedAt?: number | undefined;
1907
1907
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1955,8 +1955,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1955
1955
  hint: z.ZodOptional<z.ZodString>;
1956
1956
  updatedAt: z.ZodOptional<z.ZodNumber>;
1957
1957
  }, "strip", z.ZodTypeAny, {
1958
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1959
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1958
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1959
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1960
1960
  error?: string | undefined;
1961
1961
  updatedAt?: number | undefined;
1962
1962
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1970,8 +1970,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1970
1970
  wowReceipt?: any;
1971
1971
  hint?: string | undefined;
1972
1972
  }, {
1973
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
1974
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1973
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
1974
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1975
1975
  error?: string | undefined;
1976
1976
  updatedAt?: number | undefined;
1977
1977
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -1986,11 +1986,11 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1986
1986
  hint?: string | undefined;
1987
1987
  }>>;
1988
1988
  }, "strict", z.ZodTypeAny, {
1989
- status: "success" | "pending" | "in_progress" | "failed";
1989
+ status: "success" | "failed" | "in_progress" | "pending";
1990
1990
  amount: string;
1991
1991
  createdAt: number;
1992
1992
  updatedAt: number;
1993
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
1993
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
1994
1994
  transferId: string;
1995
1995
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
1996
1996
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -2005,8 +2005,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2005
2005
  claimTxHash?: string | undefined;
2006
2006
  withdrawTxHash?: string | undefined;
2007
2007
  latestState?: {
2008
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
2009
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2008
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
2009
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2010
2010
  error?: string | undefined;
2011
2011
  updatedAt?: number | undefined;
2012
2012
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -2021,11 +2021,11 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2021
2021
  hint?: string | undefined;
2022
2022
  } | undefined;
2023
2023
  }, {
2024
- status: "success" | "pending" | "in_progress" | "failed";
2024
+ status: "success" | "failed" | "in_progress" | "pending";
2025
2025
  amount: string;
2026
2026
  createdAt: number;
2027
2027
  updatedAt: number;
2028
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
2028
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
2029
2029
  transferId: string;
2030
2030
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
2031
2031
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -2040,8 +2040,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2040
2040
  claimTxHash?: string | undefined;
2041
2041
  withdrawTxHash?: string | undefined;
2042
2042
  latestState?: {
2043
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
2044
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2043
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
2044
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2045
2045
  error?: string | undefined;
2046
2046
  updatedAt?: number | undefined;
2047
2047
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -2059,11 +2059,11 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2059
2059
  message: z.ZodOptional<z.ZodString>;
2060
2060
  }, "strip", z.ZodTypeAny, {
2061
2061
  result: {
2062
- status: "success" | "pending" | "in_progress" | "failed";
2062
+ status: "success" | "failed" | "in_progress" | "pending";
2063
2063
  amount: string;
2064
2064
  createdAt: number;
2065
2065
  updatedAt: number;
2066
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
2066
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
2067
2067
  transferId: string;
2068
2068
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
2069
2069
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -2078,8 +2078,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2078
2078
  claimTxHash?: string | undefined;
2079
2079
  withdrawTxHash?: string | undefined;
2080
2080
  latestState?: {
2081
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
2082
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2081
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
2082
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2083
2083
  error?: string | undefined;
2084
2084
  updatedAt?: number | undefined;
2085
2085
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
@@ -2098,11 +2098,11 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2098
2098
  message?: string | undefined;
2099
2099
  }, {
2100
2100
  result: {
2101
- status: "success" | "pending" | "in_progress" | "failed";
2101
+ status: "success" | "failed" | "in_progress" | "pending";
2102
2102
  amount: string;
2103
2103
  createdAt: number;
2104
2104
  updatedAt: number;
2105
- token: "ETH" | "WETH" | "WBTC" | "USDC" | "USDT";
2105
+ token: "USDT" | "USDC" | "ETH" | "WETH" | "WBTC";
2106
2106
  transferId: string;
2107
2107
  direction: "withdraw" | "wow_to_evm" | "evm_to_wow";
2108
2108
  step: "deposit" | "withdraw" | "init" | "claimed" | "withdrawn";
@@ -2117,8 +2117,8 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2117
2117
  claimTxHash?: string | undefined;
2118
2118
  withdrawTxHash?: string | undefined;
2119
2119
  latestState?: {
2120
- status: "pending" | "failed" | "not_started" | "confirmed" | "signatures_ready" | "claiming" | "completed";
2121
- step: "failed" | "not_started" | "signatures_ready" | "completed" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2120
+ status: "failed" | "completed" | "pending" | "not_started" | "confirmed" | "signatures_ready" | "claiming";
2121
+ step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2122
2122
  error?: string | undefined;
2123
2123
  updatedAt?: number | undefined;
2124
2124
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;