@continuumdao/ctm-mpc-defi 0.2.10 → 0.2.12

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 (64) hide show
  1. package/dist/agent/catalog.cjs +98 -46
  2. package/dist/agent/catalog.cjs.map +1 -1
  3. package/dist/agent/catalog.d.ts +900 -339
  4. package/dist/agent/catalog.js +98 -46
  5. package/dist/agent/catalog.js.map +1 -1
  6. package/dist/agent/skills/morpho/SKILL.md +26 -3
  7. package/dist/chains/evm/index.cjs +1 -1
  8. package/dist/chains/evm/index.cjs.map +1 -1
  9. package/dist/chains/evm/index.js +1 -1
  10. package/dist/chains/evm/index.js.map +1 -1
  11. package/dist/core/index.cjs +1 -1
  12. package/dist/core/index.cjs.map +1 -1
  13. package/dist/core/index.d.ts +1 -1
  14. package/dist/core/index.js +1 -1
  15. package/dist/core/index.js.map +1 -1
  16. package/dist/index.cjs +1 -1
  17. package/dist/index.cjs.map +1 -1
  18. package/dist/index.js +1 -1
  19. package/dist/index.js.map +1 -1
  20. package/dist/protocols/evm/aave-v4/index.cjs +1 -1
  21. package/dist/protocols/evm/aave-v4/index.cjs.map +1 -1
  22. package/dist/protocols/evm/aave-v4/index.js +1 -1
  23. package/dist/protocols/evm/aave-v4/index.js.map +1 -1
  24. package/dist/protocols/evm/curve-dao/index.cjs +1 -1
  25. package/dist/protocols/evm/curve-dao/index.cjs.map +1 -1
  26. package/dist/protocols/evm/curve-dao/index.js +1 -1
  27. package/dist/protocols/evm/curve-dao/index.js.map +1 -1
  28. package/dist/protocols/evm/ethena/index.cjs +1 -1
  29. package/dist/protocols/evm/ethena/index.cjs.map +1 -1
  30. package/dist/protocols/evm/ethena/index.js +1 -1
  31. package/dist/protocols/evm/ethena/index.js.map +1 -1
  32. package/dist/protocols/evm/euler-v2/index.cjs +1 -1
  33. package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
  34. package/dist/protocols/evm/euler-v2/index.js +1 -1
  35. package/dist/protocols/evm/euler-v2/index.js.map +1 -1
  36. package/dist/protocols/evm/gmx/index.cjs +1 -1
  37. package/dist/protocols/evm/gmx/index.cjs.map +1 -1
  38. package/dist/protocols/evm/gmx/index.js +1 -1
  39. package/dist/protocols/evm/gmx/index.js.map +1 -1
  40. package/dist/protocols/evm/hyperliquid/index.cjs +1 -1
  41. package/dist/protocols/evm/hyperliquid/index.cjs.map +1 -1
  42. package/dist/protocols/evm/hyperliquid/index.js +1 -1
  43. package/dist/protocols/evm/hyperliquid/index.js.map +1 -1
  44. package/dist/protocols/evm/lido/index.cjs +1 -1
  45. package/dist/protocols/evm/lido/index.cjs.map +1 -1
  46. package/dist/protocols/evm/lido/index.js +1 -1
  47. package/dist/protocols/evm/lido/index.js.map +1 -1
  48. package/dist/protocols/evm/maple/index.cjs +1 -1
  49. package/dist/protocols/evm/maple/index.cjs.map +1 -1
  50. package/dist/protocols/evm/maple/index.js +1 -1
  51. package/dist/protocols/evm/maple/index.js.map +1 -1
  52. package/dist/protocols/evm/morpho/index.cjs +1 -1
  53. package/dist/protocols/evm/morpho/index.cjs.map +1 -1
  54. package/dist/protocols/evm/morpho/index.js +1 -1
  55. package/dist/protocols/evm/morpho/index.js.map +1 -1
  56. package/dist/protocols/evm/sky/index.cjs +1 -1
  57. package/dist/protocols/evm/sky/index.cjs.map +1 -1
  58. package/dist/protocols/evm/sky/index.js +1 -1
  59. package/dist/protocols/evm/sky/index.js.map +1 -1
  60. package/dist/protocols/evm/uniswap-v4/index.cjs +1 -1
  61. package/dist/protocols/evm/uniswap-v4/index.cjs.map +1 -1
  62. package/dist/protocols/evm/uniswap-v4/index.js +1 -1
  63. package/dist/protocols/evm/uniswap-v4/index.js.map +1 -1
  64. package/package.json +1 -1
@@ -89,6 +89,14 @@ declare function getAgentCatalogForMcp(): {
89
89
  readonly type: "string";
90
90
  readonly description: "Sign request id from POST /multiSignRequest.";
91
91
  };
92
+ readonly status: {
93
+ readonly type: "string";
94
+ readonly description: "submitted when POST succeeded — do not call the same build tool again.";
95
+ };
96
+ readonly followUp: {
97
+ readonly type: "string";
98
+ readonly description: "Lifecycle next steps (wait_for_sign_request_ready → agree → trigger → broadcast).";
99
+ };
92
100
  };
93
101
  };
94
102
  managementSig: {
@@ -213,10 +221,16 @@ declare function mcpServerMultisignInput(fields: z.ZodRawShape): z.ZodObject<{}
213
221
  }>;
214
222
  declare const mcpServerSubmitOutputSchema: z.ZodObject<{
215
223
  requestId: z.ZodString;
224
+ status: z.ZodOptional<z.ZodLiteral<"submitted">>;
225
+ followUp: z.ZodOptional<z.ZodString>;
216
226
  }, "strip", z.ZodTypeAny, {
217
227
  requestId: string;
228
+ status?: "submitted" | undefined;
229
+ followUp?: string | undefined;
218
230
  }, {
219
231
  requestId: string;
232
+ status?: "submitted" | undefined;
233
+ followUp?: string | undefined;
220
234
  }>;
221
235
  /** Tools that only build calldata / quotes — no submit. */
222
236
  declare const MCP_NON_SUBMIT_TOOL_NAMES: Set<string>;
@@ -231,6 +245,14 @@ declare const MULTISIGN_SUBMIT_OUTPUT_DOC: {
231
245
  readonly type: "string";
232
246
  readonly description: "Sign request id from POST /multiSignRequest.";
233
247
  };
248
+ readonly status: {
249
+ readonly type: "string";
250
+ readonly description: "submitted when POST succeeded — do not call the same build tool again.";
251
+ };
252
+ readonly followUp: {
253
+ readonly type: "string";
254
+ readonly description: "Lifecycle next steps (wait_for_sign_request_ready → agree → trigger → broadcast).";
255
+ };
234
256
  };
235
257
  };
236
258
  /** Legacy unsigned builder output (node app / manual sign path — not MCP tool return value). */
@@ -336,7 +358,8 @@ declare const chainDetailSchema: z.ZodObject<{
336
358
  }, z.ZodTypeAny, "passthrough">>;
337
359
  /** Shared inputs for all EVM multisign MCP tools. */
338
360
  declare const evmMultisignCommonInputSchema: z.ZodObject<{
339
- keyGen: z.ZodObject<{
361
+ keyGenId: z.ZodOptional<z.ZodString>;
362
+ keyGen: z.ZodOptional<z.ZodObject<{
340
363
  pubkeyhex: z.ZodString;
341
364
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
342
365
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -348,13 +371,13 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
348
371
  pubkeyhex: string;
349
372
  keylist?: string[] | undefined;
350
373
  ClientKeys?: Record<string, string> | undefined;
351
- }>;
374
+ }>>;
352
375
  purposeText: z.ZodString;
353
- useCustomGas: z.ZodBoolean;
376
+ useCustomGas: z.ZodDefault<z.ZodBoolean>;
354
377
  chainId: z.ZodNumber;
355
- rpcUrl: z.ZodString;
356
- executorAddress: z.ZodString;
357
- chainDetail: z.ZodObject<{
378
+ rpcUrl: z.ZodOptional<z.ZodString>;
379
+ executorAddress: z.ZodOptional<z.ZodString>;
380
+ chainDetail: z.ZodOptional<z.ZodObject<{
358
381
  legacy: z.ZodOptional<z.ZodBoolean>;
359
382
  gasLimit: z.ZodOptional<z.ZodNumber>;
360
383
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -378,54 +401,52 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
378
401
  baseFee: z.ZodOptional<z.ZodNumber>;
379
402
  priorityFee: z.ZodOptional<z.ZodNumber>;
380
403
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
381
- }, z.ZodTypeAny, "passthrough">>;
404
+ }, z.ZodTypeAny, "passthrough">>>;
382
405
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
383
406
  }, "strip", z.ZodTypeAny, {
384
- keyGen: {
385
- pubkeyhex: string;
386
- keylist?: string[] | undefined;
387
- ClientKeys?: Record<string, string> | undefined;
388
- };
389
407
  purposeText: string;
390
408
  useCustomGas: boolean;
391
409
  chainId: number;
392
- rpcUrl: string;
393
- executorAddress: string;
394
- chainDetail: {
395
- legacy?: boolean | undefined;
396
- gasPrice?: number | undefined;
397
- gasLimit?: number | undefined;
398
- gasMultiplier?: number | undefined;
399
- baseFee?: number | undefined;
400
- priorityFee?: number | undefined;
401
- baseFeeMultiplier?: number | undefined;
402
- } & {
403
- [k: string]: unknown;
404
- };
405
- customGasChainDetails?: Record<string, unknown> | undefined;
406
- }, {
407
- keyGen: {
410
+ keyGen?: {
408
411
  pubkeyhex: string;
409
412
  keylist?: string[] | undefined;
410
413
  ClientKeys?: Record<string, string> | undefined;
411
- };
414
+ } | undefined;
415
+ rpcUrl?: string | undefined;
416
+ executorAddress?: string | undefined;
417
+ chainDetail?: z.objectOutputType<{
418
+ legacy: z.ZodOptional<z.ZodBoolean>;
419
+ gasLimit: z.ZodOptional<z.ZodNumber>;
420
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
421
+ gasPrice: z.ZodOptional<z.ZodNumber>;
422
+ baseFee: z.ZodOptional<z.ZodNumber>;
423
+ priorityFee: z.ZodOptional<z.ZodNumber>;
424
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
425
+ }, z.ZodTypeAny, "passthrough"> | undefined;
426
+ customGasChainDetails?: Record<string, unknown> | undefined;
427
+ keyGenId?: string | undefined;
428
+ }, {
412
429
  purposeText: string;
413
- useCustomGas: boolean;
414
430
  chainId: number;
415
- rpcUrl: string;
416
- executorAddress: string;
417
- chainDetail: {
418
- legacy?: boolean | undefined;
419
- gasPrice?: number | undefined;
420
- gasLimit?: number | undefined;
421
- gasMultiplier?: number | undefined;
422
- baseFee?: number | undefined;
423
- priorityFee?: number | undefined;
424
- baseFeeMultiplier?: number | undefined;
425
- } & {
426
- [k: string]: unknown;
427
- };
431
+ keyGen?: {
432
+ pubkeyhex: string;
433
+ keylist?: string[] | undefined;
434
+ ClientKeys?: Record<string, string> | undefined;
435
+ } | undefined;
436
+ useCustomGas?: boolean | undefined;
437
+ rpcUrl?: string | undefined;
438
+ executorAddress?: string | undefined;
439
+ chainDetail?: z.objectInputType<{
440
+ legacy: z.ZodOptional<z.ZodBoolean>;
441
+ gasLimit: z.ZodOptional<z.ZodNumber>;
442
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
443
+ gasPrice: z.ZodOptional<z.ZodNumber>;
444
+ baseFee: z.ZodOptional<z.ZodNumber>;
445
+ priorityFee: z.ZodOptional<z.ZodNumber>;
446
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
447
+ }, z.ZodTypeAny, "passthrough"> | undefined;
428
448
  customGasChainDetails?: Record<string, unknown> | undefined;
449
+ keyGenId?: string | undefined;
429
450
  }>;
430
451
  /** Internal builder output before MCP management submit (not the MCP tool return value). */
431
452
  declare const multisignOutputSchema: z.ZodObject<{
@@ -537,8 +558,9 @@ declare const mcpUniswapV4CreateSwapOutputSchema: z.ZodObject<{
537
558
  gasFee: z.ZodOptional<z.ZodString>;
538
559
  }, z.ZodTypeAny, "passthrough">>;
539
560
  /** Input for MCP tool `ctm_uniswap_v4_build_swap_multisign`. */
540
- declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
541
- keyGen: z.ZodObject<{
561
+ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
562
+ keyGenId: z.ZodOptional<z.ZodString>;
563
+ keyGen: z.ZodOptional<z.ZodObject<{
542
564
  pubkeyhex: z.ZodString;
543
565
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
544
566
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -550,13 +572,13 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
550
572
  pubkeyhex: string;
551
573
  keylist?: string[] | undefined;
552
574
  ClientKeys?: Record<string, string> | undefined;
553
- }>;
575
+ }>>;
554
576
  purposeText: z.ZodString;
555
- useCustomGas: z.ZodBoolean;
577
+ useCustomGas: z.ZodDefault<z.ZodBoolean>;
556
578
  chainId: z.ZodNumber;
557
- rpcUrl: z.ZodString;
558
- executorAddress: z.ZodString;
559
- chainDetail: z.ZodObject<{
579
+ rpcUrl: z.ZodOptional<z.ZodString>;
580
+ executorAddress: z.ZodOptional<z.ZodString>;
581
+ chainDetail: z.ZodOptional<z.ZodObject<{
560
582
  legacy: z.ZodOptional<z.ZodBoolean>;
561
583
  gasLimit: z.ZodOptional<z.ZodNumber>;
562
584
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -580,7 +602,7 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
580
602
  baseFee: z.ZodOptional<z.ZodNumber>;
581
603
  priorityFee: z.ZodOptional<z.ZodNumber>;
582
604
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
583
- }, z.ZodTypeAny, "passthrough">>;
605
+ }, z.ZodTypeAny, "passthrough">>>;
584
606
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
585
607
  } & {
586
608
  tokenIn: z.ZodString;
@@ -602,28 +624,10 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
602
624
  swapDeadlineUnix: z.ZodNumber;
603
625
  slippagePercent: z.ZodOptional<z.ZodNumber>;
604
626
  }, "strip", z.ZodTypeAny, {
605
- keyGen: {
606
- pubkeyhex: string;
607
- keylist?: string[] | undefined;
608
- ClientKeys?: Record<string, string> | undefined;
609
- };
610
627
  purposeText: string;
611
628
  useCustomGas: boolean;
612
629
  chainId: number;
613
630
  tokenIn: string;
614
- rpcUrl: string;
615
- executorAddress: string;
616
- chainDetail: {
617
- legacy?: boolean | undefined;
618
- gasPrice?: number | undefined;
619
- gasLimit?: number | undefined;
620
- gasMultiplier?: number | undefined;
621
- baseFee?: number | undefined;
622
- priorityFee?: number | undefined;
623
- baseFeeMultiplier?: number | undefined;
624
- } & {
625
- [k: string]: unknown;
626
- };
627
631
  swap: Record<string, unknown>;
628
632
  createSwapResponse: {
629
633
  swap: Record<string, unknown>;
@@ -634,31 +638,97 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
634
638
  };
635
639
  fullQuoteSnapshot: Record<string, unknown>;
636
640
  swapDeadlineUnix: number;
641
+ keyGen?: {
642
+ pubkeyhex: string;
643
+ keylist?: string[] | undefined;
644
+ ClientKeys?: Record<string, string> | undefined;
645
+ } | undefined;
646
+ rpcUrl?: string | undefined;
647
+ executorAddress?: string | undefined;
648
+ chainDetail?: z.objectOutputType<{
649
+ legacy: z.ZodOptional<z.ZodBoolean>;
650
+ gasLimit: z.ZodOptional<z.ZodNumber>;
651
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
652
+ gasPrice: z.ZodOptional<z.ZodNumber>;
653
+ baseFee: z.ZodOptional<z.ZodNumber>;
654
+ priorityFee: z.ZodOptional<z.ZodNumber>;
655
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
656
+ }, z.ZodTypeAny, "passthrough"> | undefined;
637
657
  customGasChainDetails?: Record<string, unknown> | undefined;
638
658
  slippagePercent?: number | undefined;
659
+ keyGenId?: string | undefined;
639
660
  }, {
640
- keyGen: {
661
+ purposeText: string;
662
+ chainId: number;
663
+ tokenIn: string;
664
+ swap: Record<string, unknown>;
665
+ createSwapResponse: {
666
+ swap: Record<string, unknown>;
667
+ requestId?: string | undefined;
668
+ gasFee?: string | undefined;
669
+ } & {
670
+ [k: string]: unknown;
671
+ };
672
+ fullQuoteSnapshot: Record<string, unknown>;
673
+ swapDeadlineUnix: number;
674
+ keyGen?: {
641
675
  pubkeyhex: string;
642
676
  keylist?: string[] | undefined;
643
677
  ClientKeys?: Record<string, string> | undefined;
644
- };
678
+ } | undefined;
679
+ useCustomGas?: boolean | undefined;
680
+ rpcUrl?: string | undefined;
681
+ executorAddress?: string | undefined;
682
+ chainDetail?: z.objectInputType<{
683
+ legacy: z.ZodOptional<z.ZodBoolean>;
684
+ gasLimit: z.ZodOptional<z.ZodNumber>;
685
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
686
+ gasPrice: z.ZodOptional<z.ZodNumber>;
687
+ baseFee: z.ZodOptional<z.ZodNumber>;
688
+ priorityFee: z.ZodOptional<z.ZodNumber>;
689
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
690
+ }, z.ZodTypeAny, "passthrough"> | undefined;
691
+ customGasChainDetails?: Record<string, unknown> | undefined;
692
+ slippagePercent?: number | undefined;
693
+ keyGenId?: string | undefined;
694
+ }>, {
645
695
  purposeText: string;
646
696
  useCustomGas: boolean;
647
697
  chainId: number;
648
698
  tokenIn: string;
649
- rpcUrl: string;
650
- executorAddress: string;
651
- chainDetail: {
652
- legacy?: boolean | undefined;
653
- gasPrice?: number | undefined;
654
- gasLimit?: number | undefined;
655
- gasMultiplier?: number | undefined;
656
- baseFee?: number | undefined;
657
- priorityFee?: number | undefined;
658
- baseFeeMultiplier?: number | undefined;
699
+ swap: Record<string, unknown>;
700
+ createSwapResponse: {
701
+ swap: Record<string, unknown>;
702
+ requestId?: string | undefined;
703
+ gasFee?: string | undefined;
659
704
  } & {
660
705
  [k: string]: unknown;
661
706
  };
707
+ fullQuoteSnapshot: Record<string, unknown>;
708
+ swapDeadlineUnix: number;
709
+ keyGen?: {
710
+ pubkeyhex: string;
711
+ keylist?: string[] | undefined;
712
+ ClientKeys?: Record<string, string> | undefined;
713
+ } | undefined;
714
+ rpcUrl?: string | undefined;
715
+ executorAddress?: string | undefined;
716
+ chainDetail?: z.objectOutputType<{
717
+ legacy: z.ZodOptional<z.ZodBoolean>;
718
+ gasLimit: z.ZodOptional<z.ZodNumber>;
719
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
720
+ gasPrice: z.ZodOptional<z.ZodNumber>;
721
+ baseFee: z.ZodOptional<z.ZodNumber>;
722
+ priorityFee: z.ZodOptional<z.ZodNumber>;
723
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
724
+ }, z.ZodTypeAny, "passthrough"> | undefined;
725
+ customGasChainDetails?: Record<string, unknown> | undefined;
726
+ slippagePercent?: number | undefined;
727
+ keyGenId?: string | undefined;
728
+ }, {
729
+ purposeText: string;
730
+ chainId: number;
731
+ tokenIn: string;
662
732
  swap: Record<string, unknown>;
663
733
  createSwapResponse: {
664
734
  swap: Record<string, unknown>;
@@ -669,8 +739,26 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
669
739
  };
670
740
  fullQuoteSnapshot: Record<string, unknown>;
671
741
  swapDeadlineUnix: number;
742
+ keyGen?: {
743
+ pubkeyhex: string;
744
+ keylist?: string[] | undefined;
745
+ ClientKeys?: Record<string, string> | undefined;
746
+ } | undefined;
747
+ useCustomGas?: boolean | undefined;
748
+ rpcUrl?: string | undefined;
749
+ executorAddress?: string | undefined;
750
+ chainDetail?: z.objectInputType<{
751
+ legacy: z.ZodOptional<z.ZodBoolean>;
752
+ gasLimit: z.ZodOptional<z.ZodNumber>;
753
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
754
+ gasPrice: z.ZodOptional<z.ZodNumber>;
755
+ baseFee: z.ZodOptional<z.ZodNumber>;
756
+ priorityFee: z.ZodOptional<z.ZodNumber>;
757
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
758
+ }, z.ZodTypeAny, "passthrough"> | undefined;
672
759
  customGasChainDetails?: Record<string, unknown> | undefined;
673
760
  slippagePercent?: number | undefined;
761
+ keyGenId?: string | undefined;
674
762
  }>;
675
763
  type McpUniswapV4QuoteInput = z.infer<typeof mcpUniswapV4QuoteInputSchema>;
676
764
  type McpUniswapV4QuoteOutput = z.infer<typeof mcpUniswapV4QuoteOutputSchema>;
@@ -1195,8 +1283,9 @@ declare const mcpUniswapV4RegisterPositionFromMintTxOutputSchema: z.ZodObject<{
1195
1283
  positionManager: string;
1196
1284
  registered: boolean;
1197
1285
  }>;
1198
- declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1199
- keyGen: z.ZodObject<{
1286
+ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1287
+ keyGenId: z.ZodOptional<z.ZodString>;
1288
+ keyGen: z.ZodOptional<z.ZodObject<{
1200
1289
  pubkeyhex: z.ZodString;
1201
1290
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1202
1291
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1208,13 +1297,13 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1208
1297
  pubkeyhex: string;
1209
1298
  keylist?: string[] | undefined;
1210
1299
  ClientKeys?: Record<string, string> | undefined;
1211
- }>;
1300
+ }>>;
1212
1301
  purposeText: z.ZodString;
1213
- useCustomGas: z.ZodBoolean;
1302
+ useCustomGas: z.ZodDefault<z.ZodBoolean>;
1214
1303
  chainId: z.ZodNumber;
1215
- rpcUrl: z.ZodString;
1216
- executorAddress: z.ZodString;
1217
- chainDetail: z.ZodObject<{
1304
+ rpcUrl: z.ZodOptional<z.ZodString>;
1305
+ executorAddress: z.ZodOptional<z.ZodString>;
1306
+ chainDetail: z.ZodOptional<z.ZodObject<{
1218
1307
  legacy: z.ZodOptional<z.ZodBoolean>;
1219
1308
  gasLimit: z.ZodOptional<z.ZodNumber>;
1220
1309
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1238,67 +1327,116 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1238
1327
  baseFee: z.ZodOptional<z.ZodNumber>;
1239
1328
  priorityFee: z.ZodOptional<z.ZodNumber>;
1240
1329
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1241
- }, z.ZodTypeAny, "passthrough">>;
1330
+ }, z.ZodTypeAny, "passthrough">>>;
1242
1331
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1243
1332
  } & {
1244
1333
  lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1245
1334
  nativeWrapped: z.ZodOptional<z.ZodString>;
1246
1335
  poolReference: z.ZodOptional<z.ZodString>;
1247
1336
  }, "strip", z.ZodTypeAny, {
1248
- keyGen: {
1249
- pubkeyhex: string;
1250
- keylist?: string[] | undefined;
1251
- ClientKeys?: Record<string, string> | undefined;
1252
- };
1253
1337
  purposeText: string;
1254
1338
  useCustomGas: boolean;
1255
1339
  chainId: number;
1256
- rpcUrl: string;
1257
- executorAddress: string;
1258
- chainDetail: {
1259
- legacy?: boolean | undefined;
1260
- gasPrice?: number | undefined;
1261
- gasLimit?: number | undefined;
1262
- gasMultiplier?: number | undefined;
1263
- baseFee?: number | undefined;
1264
- priorityFee?: number | undefined;
1265
- baseFeeMultiplier?: number | undefined;
1266
- } & {
1267
- [k: string]: unknown;
1268
- };
1269
1340
  lpResponse: Record<string, unknown>;
1341
+ keyGen?: {
1342
+ pubkeyhex: string;
1343
+ keylist?: string[] | undefined;
1344
+ ClientKeys?: Record<string, string> | undefined;
1345
+ } | undefined;
1346
+ rpcUrl?: string | undefined;
1347
+ executorAddress?: string | undefined;
1348
+ chainDetail?: z.objectOutputType<{
1349
+ legacy: z.ZodOptional<z.ZodBoolean>;
1350
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1351
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1352
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1353
+ baseFee: z.ZodOptional<z.ZodNumber>;
1354
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1355
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1356
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1270
1357
  customGasChainDetails?: Record<string, unknown> | undefined;
1271
1358
  nativeWrapped?: string | undefined;
1272
1359
  poolReference?: string | undefined;
1360
+ keyGenId?: string | undefined;
1273
1361
  }, {
1274
- keyGen: {
1362
+ purposeText: string;
1363
+ chainId: number;
1364
+ lpResponse: Record<string, unknown>;
1365
+ keyGen?: {
1275
1366
  pubkeyhex: string;
1276
1367
  keylist?: string[] | undefined;
1277
1368
  ClientKeys?: Record<string, string> | undefined;
1278
- };
1369
+ } | undefined;
1370
+ useCustomGas?: boolean | undefined;
1371
+ rpcUrl?: string | undefined;
1372
+ executorAddress?: string | undefined;
1373
+ chainDetail?: z.objectInputType<{
1374
+ legacy: z.ZodOptional<z.ZodBoolean>;
1375
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1376
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1377
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1378
+ baseFee: z.ZodOptional<z.ZodNumber>;
1379
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1380
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1381
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1382
+ customGasChainDetails?: Record<string, unknown> | undefined;
1383
+ nativeWrapped?: string | undefined;
1384
+ poolReference?: string | undefined;
1385
+ keyGenId?: string | undefined;
1386
+ }>, {
1279
1387
  purposeText: string;
1280
1388
  useCustomGas: boolean;
1281
1389
  chainId: number;
1282
- rpcUrl: string;
1283
- executorAddress: string;
1284
- chainDetail: {
1285
- legacy?: boolean | undefined;
1286
- gasPrice?: number | undefined;
1287
- gasLimit?: number | undefined;
1288
- gasMultiplier?: number | undefined;
1289
- baseFee?: number | undefined;
1290
- priorityFee?: number | undefined;
1291
- baseFeeMultiplier?: number | undefined;
1292
- } & {
1293
- [k: string]: unknown;
1294
- };
1295
1390
  lpResponse: Record<string, unknown>;
1391
+ keyGen?: {
1392
+ pubkeyhex: string;
1393
+ keylist?: string[] | undefined;
1394
+ ClientKeys?: Record<string, string> | undefined;
1395
+ } | undefined;
1396
+ rpcUrl?: string | undefined;
1397
+ executorAddress?: string | undefined;
1398
+ chainDetail?: z.objectOutputType<{
1399
+ legacy: z.ZodOptional<z.ZodBoolean>;
1400
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1401
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1402
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1403
+ baseFee: z.ZodOptional<z.ZodNumber>;
1404
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1405
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1406
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1407
+ customGasChainDetails?: Record<string, unknown> | undefined;
1408
+ nativeWrapped?: string | undefined;
1409
+ poolReference?: string | undefined;
1410
+ keyGenId?: string | undefined;
1411
+ }, {
1412
+ purposeText: string;
1413
+ chainId: number;
1414
+ lpResponse: Record<string, unknown>;
1415
+ keyGen?: {
1416
+ pubkeyhex: string;
1417
+ keylist?: string[] | undefined;
1418
+ ClientKeys?: Record<string, string> | undefined;
1419
+ } | undefined;
1420
+ useCustomGas?: boolean | undefined;
1421
+ rpcUrl?: string | undefined;
1422
+ executorAddress?: string | undefined;
1423
+ chainDetail?: z.objectInputType<{
1424
+ legacy: z.ZodOptional<z.ZodBoolean>;
1425
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1426
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1427
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1428
+ baseFee: z.ZodOptional<z.ZodNumber>;
1429
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1430
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1431
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1296
1432
  customGasChainDetails?: Record<string, unknown> | undefined;
1297
1433
  nativeWrapped?: string | undefined;
1298
1434
  poolReference?: string | undefined;
1435
+ keyGenId?: string | undefined;
1299
1436
  }>;
1300
- declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObject<{
1301
- keyGen: z.ZodObject<{
1437
+ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1438
+ keyGenId: z.ZodOptional<z.ZodString>;
1439
+ keyGen: z.ZodOptional<z.ZodObject<{
1302
1440
  pubkeyhex: z.ZodString;
1303
1441
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1304
1442
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1310,13 +1448,13 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObjec
1310
1448
  pubkeyhex: string;
1311
1449
  keylist?: string[] | undefined;
1312
1450
  ClientKeys?: Record<string, string> | undefined;
1313
- }>;
1451
+ }>>;
1314
1452
  purposeText: z.ZodString;
1315
- useCustomGas: z.ZodBoolean;
1453
+ useCustomGas: z.ZodDefault<z.ZodBoolean>;
1316
1454
  chainId: z.ZodNumber;
1317
- rpcUrl: z.ZodString;
1318
- executorAddress: z.ZodString;
1319
- chainDetail: z.ZodObject<{
1455
+ rpcUrl: z.ZodOptional<z.ZodString>;
1456
+ executorAddress: z.ZodOptional<z.ZodString>;
1457
+ chainDetail: z.ZodOptional<z.ZodObject<{
1320
1458
  legacy: z.ZodOptional<z.ZodBoolean>;
1321
1459
  gasLimit: z.ZodOptional<z.ZodNumber>;
1322
1460
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1340,7 +1478,7 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObjec
1340
1478
  baseFee: z.ZodOptional<z.ZodNumber>;
1341
1479
  priorityFee: z.ZodOptional<z.ZodNumber>;
1342
1480
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1343
- }, z.ZodTypeAny, "passthrough">>;
1481
+ }, z.ZodTypeAny, "passthrough">>>;
1344
1482
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1345
1483
  } & {
1346
1484
  nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
@@ -1348,62 +1486,113 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObjec
1348
1486
  nativeWrapped: z.ZodOptional<z.ZodString>;
1349
1487
  poolReference: z.ZodOptional<z.ZodString>;
1350
1488
  }, "strip", z.ZodTypeAny, {
1351
- keyGen: {
1352
- pubkeyhex: string;
1353
- keylist?: string[] | undefined;
1354
- ClientKeys?: Record<string, string> | undefined;
1355
- };
1356
1489
  purposeText: string;
1357
1490
  useCustomGas: boolean;
1358
1491
  chainId: number;
1359
- rpcUrl: string;
1360
- executorAddress: string;
1361
- chainDetail: {
1362
- legacy?: boolean | undefined;
1363
- gasPrice?: number | undefined;
1364
- gasLimit?: number | undefined;
1365
- gasMultiplier?: number | undefined;
1366
- baseFee?: number | undefined;
1367
- priorityFee?: number | undefined;
1368
- baseFeeMultiplier?: number | undefined;
1369
- } & {
1370
- [k: string]: unknown;
1371
- };
1372
1492
  nftTokenId: string | number;
1373
1493
  lpResponse: Record<string, unknown>;
1494
+ keyGen?: {
1495
+ pubkeyhex: string;
1496
+ keylist?: string[] | undefined;
1497
+ ClientKeys?: Record<string, string> | undefined;
1498
+ } | undefined;
1499
+ rpcUrl?: string | undefined;
1500
+ executorAddress?: string | undefined;
1501
+ chainDetail?: z.objectOutputType<{
1502
+ legacy: z.ZodOptional<z.ZodBoolean>;
1503
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1504
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1505
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1506
+ baseFee: z.ZodOptional<z.ZodNumber>;
1507
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1508
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1509
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1374
1510
  customGasChainDetails?: Record<string, unknown> | undefined;
1375
1511
  nativeWrapped?: string | undefined;
1376
1512
  poolReference?: string | undefined;
1513
+ keyGenId?: string | undefined;
1377
1514
  }, {
1378
- keyGen: {
1515
+ purposeText: string;
1516
+ chainId: number;
1517
+ nftTokenId: string | number;
1518
+ lpResponse: Record<string, unknown>;
1519
+ keyGen?: {
1379
1520
  pubkeyhex: string;
1380
1521
  keylist?: string[] | undefined;
1381
1522
  ClientKeys?: Record<string, string> | undefined;
1382
- };
1523
+ } | undefined;
1524
+ useCustomGas?: boolean | undefined;
1525
+ rpcUrl?: string | undefined;
1526
+ executorAddress?: string | undefined;
1527
+ chainDetail?: z.objectInputType<{
1528
+ legacy: z.ZodOptional<z.ZodBoolean>;
1529
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1530
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1531
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1532
+ baseFee: z.ZodOptional<z.ZodNumber>;
1533
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1534
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1535
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1536
+ customGasChainDetails?: Record<string, unknown> | undefined;
1537
+ nativeWrapped?: string | undefined;
1538
+ poolReference?: string | undefined;
1539
+ keyGenId?: string | undefined;
1540
+ }>, {
1383
1541
  purposeText: string;
1384
1542
  useCustomGas: boolean;
1385
1543
  chainId: number;
1386
- rpcUrl: string;
1387
- executorAddress: string;
1388
- chainDetail: {
1389
- legacy?: boolean | undefined;
1390
- gasPrice?: number | undefined;
1391
- gasLimit?: number | undefined;
1392
- gasMultiplier?: number | undefined;
1393
- baseFee?: number | undefined;
1394
- priorityFee?: number | undefined;
1395
- baseFeeMultiplier?: number | undefined;
1396
- } & {
1397
- [k: string]: unknown;
1398
- };
1399
1544
  nftTokenId: string | number;
1400
1545
  lpResponse: Record<string, unknown>;
1546
+ keyGen?: {
1547
+ pubkeyhex: string;
1548
+ keylist?: string[] | undefined;
1549
+ ClientKeys?: Record<string, string> | undefined;
1550
+ } | undefined;
1551
+ rpcUrl?: string | undefined;
1552
+ executorAddress?: string | undefined;
1553
+ chainDetail?: z.objectOutputType<{
1554
+ legacy: z.ZodOptional<z.ZodBoolean>;
1555
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1556
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1557
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1558
+ baseFee: z.ZodOptional<z.ZodNumber>;
1559
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1560
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1561
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1401
1562
  customGasChainDetails?: Record<string, unknown> | undefined;
1402
1563
  nativeWrapped?: string | undefined;
1403
1564
  poolReference?: string | undefined;
1565
+ keyGenId?: string | undefined;
1566
+ }, {
1567
+ purposeText: string;
1568
+ chainId: number;
1569
+ nftTokenId: string | number;
1570
+ lpResponse: Record<string, unknown>;
1571
+ keyGen?: {
1572
+ pubkeyhex: string;
1573
+ keylist?: string[] | undefined;
1574
+ ClientKeys?: Record<string, string> | undefined;
1575
+ } | undefined;
1576
+ useCustomGas?: boolean | undefined;
1577
+ rpcUrl?: string | undefined;
1578
+ executorAddress?: string | undefined;
1579
+ chainDetail?: z.objectInputType<{
1580
+ legacy: z.ZodOptional<z.ZodBoolean>;
1581
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1582
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1583
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1584
+ baseFee: z.ZodOptional<z.ZodNumber>;
1585
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1586
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1587
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1588
+ customGasChainDetails?: Record<string, unknown> | undefined;
1589
+ nativeWrapped?: string | undefined;
1590
+ poolReference?: string | undefined;
1591
+ keyGenId?: string | undefined;
1404
1592
  }>;
1405
- declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObject<{
1406
- keyGen: z.ZodObject<{
1593
+ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1594
+ keyGenId: z.ZodOptional<z.ZodString>;
1595
+ keyGen: z.ZodOptional<z.ZodObject<{
1407
1596
  pubkeyhex: z.ZodString;
1408
1597
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1409
1598
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1415,13 +1604,13 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObjec
1415
1604
  pubkeyhex: string;
1416
1605
  keylist?: string[] | undefined;
1417
1606
  ClientKeys?: Record<string, string> | undefined;
1418
- }>;
1607
+ }>>;
1419
1608
  purposeText: z.ZodString;
1420
- useCustomGas: z.ZodBoolean;
1609
+ useCustomGas: z.ZodDefault<z.ZodBoolean>;
1421
1610
  chainId: z.ZodNumber;
1422
- rpcUrl: z.ZodString;
1423
- executorAddress: z.ZodString;
1424
- chainDetail: z.ZodObject<{
1611
+ rpcUrl: z.ZodOptional<z.ZodString>;
1612
+ executorAddress: z.ZodOptional<z.ZodString>;
1613
+ chainDetail: z.ZodOptional<z.ZodObject<{
1425
1614
  legacy: z.ZodOptional<z.ZodBoolean>;
1426
1615
  gasLimit: z.ZodOptional<z.ZodNumber>;
1427
1616
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1445,7 +1634,7 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObjec
1445
1634
  baseFee: z.ZodOptional<z.ZodNumber>;
1446
1635
  priorityFee: z.ZodOptional<z.ZodNumber>;
1447
1636
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1448
- }, z.ZodTypeAny, "passthrough">>;
1637
+ }, z.ZodTypeAny, "passthrough">>>;
1449
1638
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1450
1639
  } & {
1451
1640
  nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
@@ -1453,62 +1642,113 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObjec
1453
1642
  nativeWrapped: z.ZodOptional<z.ZodString>;
1454
1643
  poolReference: z.ZodOptional<z.ZodString>;
1455
1644
  }, "strip", z.ZodTypeAny, {
1456
- keyGen: {
1457
- pubkeyhex: string;
1458
- keylist?: string[] | undefined;
1459
- ClientKeys?: Record<string, string> | undefined;
1460
- };
1461
1645
  purposeText: string;
1462
1646
  useCustomGas: boolean;
1463
1647
  chainId: number;
1464
- rpcUrl: string;
1465
- executorAddress: string;
1466
- chainDetail: {
1467
- legacy?: boolean | undefined;
1468
- gasPrice?: number | undefined;
1469
- gasLimit?: number | undefined;
1470
- gasMultiplier?: number | undefined;
1471
- baseFee?: number | undefined;
1472
- priorityFee?: number | undefined;
1473
- baseFeeMultiplier?: number | undefined;
1474
- } & {
1475
- [k: string]: unknown;
1476
- };
1477
1648
  nftTokenId: string | number;
1478
1649
  lpResponse: Record<string, unknown>;
1650
+ keyGen?: {
1651
+ pubkeyhex: string;
1652
+ keylist?: string[] | undefined;
1653
+ ClientKeys?: Record<string, string> | undefined;
1654
+ } | undefined;
1655
+ rpcUrl?: string | undefined;
1656
+ executorAddress?: string | undefined;
1657
+ chainDetail?: z.objectOutputType<{
1658
+ legacy: z.ZodOptional<z.ZodBoolean>;
1659
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1660
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1661
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1662
+ baseFee: z.ZodOptional<z.ZodNumber>;
1663
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1664
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1665
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1479
1666
  customGasChainDetails?: Record<string, unknown> | undefined;
1480
1667
  nativeWrapped?: string | undefined;
1481
1668
  poolReference?: string | undefined;
1669
+ keyGenId?: string | undefined;
1482
1670
  }, {
1483
- keyGen: {
1671
+ purposeText: string;
1672
+ chainId: number;
1673
+ nftTokenId: string | number;
1674
+ lpResponse: Record<string, unknown>;
1675
+ keyGen?: {
1484
1676
  pubkeyhex: string;
1485
1677
  keylist?: string[] | undefined;
1486
1678
  ClientKeys?: Record<string, string> | undefined;
1487
- };
1679
+ } | undefined;
1680
+ useCustomGas?: boolean | undefined;
1681
+ rpcUrl?: string | undefined;
1682
+ executorAddress?: string | undefined;
1683
+ chainDetail?: z.objectInputType<{
1684
+ legacy: z.ZodOptional<z.ZodBoolean>;
1685
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1686
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1687
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1688
+ baseFee: z.ZodOptional<z.ZodNumber>;
1689
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1690
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1691
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1692
+ customGasChainDetails?: Record<string, unknown> | undefined;
1693
+ nativeWrapped?: string | undefined;
1694
+ poolReference?: string | undefined;
1695
+ keyGenId?: string | undefined;
1696
+ }>, {
1488
1697
  purposeText: string;
1489
1698
  useCustomGas: boolean;
1490
1699
  chainId: number;
1491
- rpcUrl: string;
1492
- executorAddress: string;
1493
- chainDetail: {
1494
- legacy?: boolean | undefined;
1495
- gasPrice?: number | undefined;
1496
- gasLimit?: number | undefined;
1497
- gasMultiplier?: number | undefined;
1498
- baseFee?: number | undefined;
1499
- priorityFee?: number | undefined;
1500
- baseFeeMultiplier?: number | undefined;
1501
- } & {
1502
- [k: string]: unknown;
1503
- };
1504
1700
  nftTokenId: string | number;
1505
1701
  lpResponse: Record<string, unknown>;
1702
+ keyGen?: {
1703
+ pubkeyhex: string;
1704
+ keylist?: string[] | undefined;
1705
+ ClientKeys?: Record<string, string> | undefined;
1706
+ } | undefined;
1707
+ rpcUrl?: string | undefined;
1708
+ executorAddress?: string | undefined;
1709
+ chainDetail?: z.objectOutputType<{
1710
+ legacy: z.ZodOptional<z.ZodBoolean>;
1711
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1712
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1713
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1714
+ baseFee: z.ZodOptional<z.ZodNumber>;
1715
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1716
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1717
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1506
1718
  customGasChainDetails?: Record<string, unknown> | undefined;
1507
1719
  nativeWrapped?: string | undefined;
1508
1720
  poolReference?: string | undefined;
1721
+ keyGenId?: string | undefined;
1722
+ }, {
1723
+ purposeText: string;
1724
+ chainId: number;
1725
+ nftTokenId: string | number;
1726
+ lpResponse: Record<string, unknown>;
1727
+ keyGen?: {
1728
+ pubkeyhex: string;
1729
+ keylist?: string[] | undefined;
1730
+ ClientKeys?: Record<string, string> | undefined;
1731
+ } | undefined;
1732
+ useCustomGas?: boolean | undefined;
1733
+ rpcUrl?: string | undefined;
1734
+ executorAddress?: string | undefined;
1735
+ chainDetail?: z.objectInputType<{
1736
+ legacy: z.ZodOptional<z.ZodBoolean>;
1737
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1738
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1739
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1740
+ baseFee: z.ZodOptional<z.ZodNumber>;
1741
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1742
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1743
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1744
+ customGasChainDetails?: Record<string, unknown> | undefined;
1745
+ nativeWrapped?: string | undefined;
1746
+ poolReference?: string | undefined;
1747
+ keyGenId?: string | undefined;
1509
1748
  }>;
1510
- declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1511
- keyGen: z.ZodObject<{
1749
+ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1750
+ keyGenId: z.ZodOptional<z.ZodString>;
1751
+ keyGen: z.ZodOptional<z.ZodObject<{
1512
1752
  pubkeyhex: z.ZodString;
1513
1753
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1514
1754
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1520,13 +1760,13 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1520
1760
  pubkeyhex: string;
1521
1761
  keylist?: string[] | undefined;
1522
1762
  ClientKeys?: Record<string, string> | undefined;
1523
- }>;
1763
+ }>>;
1524
1764
  purposeText: z.ZodString;
1525
- useCustomGas: z.ZodBoolean;
1765
+ useCustomGas: z.ZodDefault<z.ZodBoolean>;
1526
1766
  chainId: z.ZodNumber;
1527
- rpcUrl: z.ZodString;
1528
- executorAddress: z.ZodString;
1529
- chainDetail: z.ZodObject<{
1767
+ rpcUrl: z.ZodOptional<z.ZodString>;
1768
+ executorAddress: z.ZodOptional<z.ZodString>;
1769
+ chainDetail: z.ZodOptional<z.ZodObject<{
1530
1770
  legacy: z.ZodOptional<z.ZodBoolean>;
1531
1771
  gasLimit: z.ZodOptional<z.ZodNumber>;
1532
1772
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1550,7 +1790,7 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1550
1790
  baseFee: z.ZodOptional<z.ZodNumber>;
1551
1791
  priorityFee: z.ZodOptional<z.ZodNumber>;
1552
1792
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1553
- }, z.ZodTypeAny, "passthrough">>;
1793
+ }, z.ZodTypeAny, "passthrough">>>;
1554
1794
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1555
1795
  } & {
1556
1796
  nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
@@ -1558,59 +1798,109 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1558
1798
  nativeWrapped: z.ZodOptional<z.ZodString>;
1559
1799
  poolReference: z.ZodOptional<z.ZodString>;
1560
1800
  }, "strip", z.ZodTypeAny, {
1561
- keyGen: {
1562
- pubkeyhex: string;
1563
- keylist?: string[] | undefined;
1564
- ClientKeys?: Record<string, string> | undefined;
1565
- };
1566
1801
  purposeText: string;
1567
1802
  useCustomGas: boolean;
1568
1803
  chainId: number;
1569
- rpcUrl: string;
1570
- executorAddress: string;
1571
- chainDetail: {
1572
- legacy?: boolean | undefined;
1573
- gasPrice?: number | undefined;
1574
- gasLimit?: number | undefined;
1575
- gasMultiplier?: number | undefined;
1576
- baseFee?: number | undefined;
1577
- priorityFee?: number | undefined;
1578
- baseFeeMultiplier?: number | undefined;
1579
- } & {
1580
- [k: string]: unknown;
1581
- };
1582
1804
  nftTokenId: string | number;
1583
1805
  lpResponse: Record<string, unknown>;
1806
+ keyGen?: {
1807
+ pubkeyhex: string;
1808
+ keylist?: string[] | undefined;
1809
+ ClientKeys?: Record<string, string> | undefined;
1810
+ } | undefined;
1811
+ rpcUrl?: string | undefined;
1812
+ executorAddress?: string | undefined;
1813
+ chainDetail?: z.objectOutputType<{
1814
+ legacy: z.ZodOptional<z.ZodBoolean>;
1815
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1816
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1817
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1818
+ baseFee: z.ZodOptional<z.ZodNumber>;
1819
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1820
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1821
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1584
1822
  customGasChainDetails?: Record<string, unknown> | undefined;
1585
1823
  nativeWrapped?: string | undefined;
1586
1824
  poolReference?: string | undefined;
1825
+ keyGenId?: string | undefined;
1587
1826
  }, {
1588
- keyGen: {
1827
+ purposeText: string;
1828
+ chainId: number;
1829
+ nftTokenId: string | number;
1830
+ lpResponse: Record<string, unknown>;
1831
+ keyGen?: {
1589
1832
  pubkeyhex: string;
1590
1833
  keylist?: string[] | undefined;
1591
1834
  ClientKeys?: Record<string, string> | undefined;
1592
- };
1835
+ } | undefined;
1836
+ useCustomGas?: boolean | undefined;
1837
+ rpcUrl?: string | undefined;
1838
+ executorAddress?: string | undefined;
1839
+ chainDetail?: z.objectInputType<{
1840
+ legacy: z.ZodOptional<z.ZodBoolean>;
1841
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1842
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1843
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1844
+ baseFee: z.ZodOptional<z.ZodNumber>;
1845
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1846
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1847
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1848
+ customGasChainDetails?: Record<string, unknown> | undefined;
1849
+ nativeWrapped?: string | undefined;
1850
+ poolReference?: string | undefined;
1851
+ keyGenId?: string | undefined;
1852
+ }>, {
1593
1853
  purposeText: string;
1594
1854
  useCustomGas: boolean;
1595
1855
  chainId: number;
1596
- rpcUrl: string;
1597
- executorAddress: string;
1598
- chainDetail: {
1599
- legacy?: boolean | undefined;
1600
- gasPrice?: number | undefined;
1601
- gasLimit?: number | undefined;
1602
- gasMultiplier?: number | undefined;
1603
- baseFee?: number | undefined;
1604
- priorityFee?: number | undefined;
1605
- baseFeeMultiplier?: number | undefined;
1606
- } & {
1607
- [k: string]: unknown;
1608
- };
1609
1856
  nftTokenId: string | number;
1610
1857
  lpResponse: Record<string, unknown>;
1858
+ keyGen?: {
1859
+ pubkeyhex: string;
1860
+ keylist?: string[] | undefined;
1861
+ ClientKeys?: Record<string, string> | undefined;
1862
+ } | undefined;
1863
+ rpcUrl?: string | undefined;
1864
+ executorAddress?: string | undefined;
1865
+ chainDetail?: z.objectOutputType<{
1866
+ legacy: z.ZodOptional<z.ZodBoolean>;
1867
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1868
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1869
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1870
+ baseFee: z.ZodOptional<z.ZodNumber>;
1871
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1872
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1873
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1874
+ customGasChainDetails?: Record<string, unknown> | undefined;
1875
+ nativeWrapped?: string | undefined;
1876
+ poolReference?: string | undefined;
1877
+ keyGenId?: string | undefined;
1878
+ }, {
1879
+ purposeText: string;
1880
+ chainId: number;
1881
+ nftTokenId: string | number;
1882
+ lpResponse: Record<string, unknown>;
1883
+ keyGen?: {
1884
+ pubkeyhex: string;
1885
+ keylist?: string[] | undefined;
1886
+ ClientKeys?: Record<string, string> | undefined;
1887
+ } | undefined;
1888
+ useCustomGas?: boolean | undefined;
1889
+ rpcUrl?: string | undefined;
1890
+ executorAddress?: string | undefined;
1891
+ chainDetail?: z.objectInputType<{
1892
+ legacy: z.ZodOptional<z.ZodBoolean>;
1893
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1894
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1895
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1896
+ baseFee: z.ZodOptional<z.ZodNumber>;
1897
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1898
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1899
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1611
1900
  customGasChainDetails?: Record<string, unknown> | undefined;
1612
1901
  nativeWrapped?: string | undefined;
1613
1902
  poolReference?: string | undefined;
1903
+ keyGenId?: string | undefined;
1614
1904
  }>;
1615
1905
  type McpUniswapV4LpCreatePositionInput = z.infer<typeof mcpUniswapV4LpCreatePositionInputSchema>;
1616
1906
  type McpUniswapV4BuildMintLiquidityMultisignInput = z.infer<typeof mcpUniswapV4BuildMintLiquidityMultisignInputSchema>;
@@ -1640,8 +1930,9 @@ declare const mcpCurveDaoQuoteInputSchema: z.ZodObject<{
1640
1930
  }>;
1641
1931
  declare const mcpCurveDaoQuoteOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1642
1932
  /** Input for MCP tool `ctm_curve_dao_build_swap_multisign`. */
1643
- declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1644
- keyGen: z.ZodObject<{
1933
+ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1934
+ keyGenId: z.ZodOptional<z.ZodString>;
1935
+ keyGen: z.ZodOptional<z.ZodObject<{
1645
1936
  pubkeyhex: z.ZodString;
1646
1937
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1647
1938
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1653,13 +1944,13 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1653
1944
  pubkeyhex: string;
1654
1945
  keylist?: string[] | undefined;
1655
1946
  ClientKeys?: Record<string, string> | undefined;
1656
- }>;
1947
+ }>>;
1657
1948
  purposeText: z.ZodString;
1658
- useCustomGas: z.ZodBoolean;
1949
+ useCustomGas: z.ZodDefault<z.ZodBoolean>;
1659
1950
  chainId: z.ZodNumber;
1660
- rpcUrl: z.ZodString;
1661
- executorAddress: z.ZodString;
1662
- chainDetail: z.ZodObject<{
1951
+ rpcUrl: z.ZodOptional<z.ZodString>;
1952
+ executorAddress: z.ZodOptional<z.ZodString>;
1953
+ chainDetail: z.ZodOptional<z.ZodObject<{
1663
1954
  legacy: z.ZodOptional<z.ZodBoolean>;
1664
1955
  gasLimit: z.ZodOptional<z.ZodNumber>;
1665
1956
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1683,7 +1974,7 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1683
1974
  baseFee: z.ZodOptional<z.ZodNumber>;
1684
1975
  priorityFee: z.ZodOptional<z.ZodNumber>;
1685
1976
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1686
- }, z.ZodTypeAny, "passthrough">>;
1977
+ }, z.ZodTypeAny, "passthrough">>>;
1687
1978
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1688
1979
  } & {
1689
1980
  tokenIn: z.ZodString;
@@ -1691,268 +1982,434 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1691
1982
  amountHuman: z.ZodString;
1692
1983
  slippagePercent: z.ZodNumber;
1693
1984
  }, "strip", z.ZodTypeAny, {
1694
- keyGen: {
1695
- pubkeyhex: string;
1696
- keylist?: string[] | undefined;
1697
- ClientKeys?: Record<string, string> | undefined;
1698
- };
1699
1985
  purposeText: string;
1700
1986
  useCustomGas: boolean;
1701
1987
  chainId: number;
1702
1988
  tokenIn: string;
1703
1989
  tokenOut: string;
1704
- rpcUrl: string;
1705
- executorAddress: string;
1706
- chainDetail: {
1707
- legacy?: boolean | undefined;
1708
- gasPrice?: number | undefined;
1709
- gasLimit?: number | undefined;
1710
- gasMultiplier?: number | undefined;
1711
- baseFee?: number | undefined;
1712
- priorityFee?: number | undefined;
1713
- baseFeeMultiplier?: number | undefined;
1714
- } & {
1715
- [k: string]: unknown;
1716
- };
1717
1990
  slippagePercent: number;
1718
1991
  amountHuman: string;
1992
+ keyGen?: {
1993
+ pubkeyhex: string;
1994
+ keylist?: string[] | undefined;
1995
+ ClientKeys?: Record<string, string> | undefined;
1996
+ } | undefined;
1997
+ rpcUrl?: string | undefined;
1998
+ executorAddress?: string | undefined;
1999
+ chainDetail?: z.objectOutputType<{
2000
+ legacy: z.ZodOptional<z.ZodBoolean>;
2001
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2002
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2003
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2004
+ baseFee: z.ZodOptional<z.ZodNumber>;
2005
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2006
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2007
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1719
2008
  customGasChainDetails?: Record<string, unknown> | undefined;
2009
+ keyGenId?: string | undefined;
1720
2010
  }, {
1721
- keyGen: {
2011
+ purposeText: string;
2012
+ chainId: number;
2013
+ tokenIn: string;
2014
+ tokenOut: string;
2015
+ slippagePercent: number;
2016
+ amountHuman: string;
2017
+ keyGen?: {
1722
2018
  pubkeyhex: string;
1723
2019
  keylist?: string[] | undefined;
1724
2020
  ClientKeys?: Record<string, string> | undefined;
1725
- };
2021
+ } | undefined;
2022
+ useCustomGas?: boolean | undefined;
2023
+ rpcUrl?: string | undefined;
2024
+ executorAddress?: string | undefined;
2025
+ chainDetail?: z.objectInputType<{
2026
+ legacy: z.ZodOptional<z.ZodBoolean>;
2027
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2028
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2029
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2030
+ baseFee: z.ZodOptional<z.ZodNumber>;
2031
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2032
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2033
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2034
+ customGasChainDetails?: Record<string, unknown> | undefined;
2035
+ keyGenId?: string | undefined;
2036
+ }>, {
1726
2037
  purposeText: string;
1727
2038
  useCustomGas: boolean;
1728
2039
  chainId: number;
1729
2040
  tokenIn: string;
1730
2041
  tokenOut: string;
1731
- rpcUrl: string;
1732
- executorAddress: string;
1733
- chainDetail: {
1734
- legacy?: boolean | undefined;
1735
- gasPrice?: number | undefined;
1736
- gasLimit?: number | undefined;
1737
- gasMultiplier?: number | undefined;
1738
- baseFee?: number | undefined;
1739
- priorityFee?: number | undefined;
1740
- baseFeeMultiplier?: number | undefined;
1741
- } & {
1742
- [k: string]: unknown;
1743
- };
1744
2042
  slippagePercent: number;
1745
2043
  amountHuman: string;
2044
+ keyGen?: {
2045
+ pubkeyhex: string;
2046
+ keylist?: string[] | undefined;
2047
+ ClientKeys?: Record<string, string> | undefined;
2048
+ } | undefined;
2049
+ rpcUrl?: string | undefined;
2050
+ executorAddress?: string | undefined;
2051
+ chainDetail?: z.objectOutputType<{
2052
+ legacy: z.ZodOptional<z.ZodBoolean>;
2053
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2054
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2055
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2056
+ baseFee: z.ZodOptional<z.ZodNumber>;
2057
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2058
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2059
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2060
+ customGasChainDetails?: Record<string, unknown> | undefined;
2061
+ keyGenId?: string | undefined;
2062
+ }, {
2063
+ purposeText: string;
2064
+ chainId: number;
2065
+ tokenIn: string;
2066
+ tokenOut: string;
2067
+ slippagePercent: number;
2068
+ amountHuman: string;
2069
+ keyGen?: {
2070
+ pubkeyhex: string;
2071
+ keylist?: string[] | undefined;
2072
+ ClientKeys?: Record<string, string> | undefined;
2073
+ } | undefined;
2074
+ useCustomGas?: boolean | undefined;
2075
+ rpcUrl?: string | undefined;
2076
+ executorAddress?: string | undefined;
2077
+ chainDetail?: z.objectInputType<{
2078
+ legacy: z.ZodOptional<z.ZodBoolean>;
2079
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2080
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2081
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2082
+ baseFee: z.ZodOptional<z.ZodNumber>;
2083
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2084
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2085
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1746
2086
  customGasChainDetails?: Record<string, unknown> | undefined;
2087
+ keyGenId?: string | undefined;
1747
2088
  }>;
1748
2089
  type McpCurveDaoQuoteInput = z.infer<typeof mcpCurveDaoQuoteInputSchema>;
1749
2090
  type McpCurveDaoQuoteOutput = z.infer<typeof mcpCurveDaoQuoteOutputSchema>;
1750
2091
  type McpCurveDaoBuildSwapMultisignInput = z.infer<typeof mcpCurveDaoBuildSwapMultisignInputSchema>;
1751
2092
 
1752
2093
  /** Extend common multisign inputs with protocol-specific fields. */
1753
- declare function mcpMultisignInput(fields: z.ZodRawShape): z.ZodObject<{} & {
2094
+ declare function mcpMultisignInput(fields: z.ZodRawShape): z.ZodEffects<z.ZodObject<{} & {
1754
2095
  [x: string]: z.ZodTypeAny;
1755
2096
  }, "strip", z.ZodTypeAny, {
1756
2097
  [x: string]: any;
1757
2098
  }, {
1758
2099
  [x: string]: any;
2100
+ }>, {
2101
+ [x: string]: any;
2102
+ }, {
2103
+ [x: string]: any;
1759
2104
  }>;
1760
2105
 
1761
- declare const mcpLidoSubmitInputSchema: z.ZodObject<{} & {
2106
+ declare const mcpLidoSubmitInputSchema: z.ZodEffects<z.ZodObject<{} & {
1762
2107
  [x: string]: z.ZodTypeAny;
1763
2108
  }, "strip", z.ZodTypeAny, {
1764
2109
  [x: string]: any;
1765
2110
  }, {
1766
2111
  [x: string]: any;
2112
+ }>, {
2113
+ [x: string]: any;
2114
+ }, {
2115
+ [x: string]: any;
1767
2116
  }>;
1768
- declare const mcpLidoRequestWithdrawalsInputSchema: z.ZodObject<{} & {
2117
+ declare const mcpLidoRequestWithdrawalsInputSchema: z.ZodEffects<z.ZodObject<{} & {
1769
2118
  [x: string]: z.ZodTypeAny;
1770
2119
  }, "strip", z.ZodTypeAny, {
1771
2120
  [x: string]: any;
1772
2121
  }, {
1773
2122
  [x: string]: any;
2123
+ }>, {
2124
+ [x: string]: any;
2125
+ }, {
2126
+ [x: string]: any;
1774
2127
  }>;
1775
- declare const mcpLidoClaimWithdrawalInputSchema: z.ZodObject<{} & {
2128
+ declare const mcpLidoClaimWithdrawalInputSchema: z.ZodEffects<z.ZodObject<{} & {
1776
2129
  [x: string]: z.ZodTypeAny;
1777
2130
  }, "strip", z.ZodTypeAny, {
1778
2131
  [x: string]: any;
1779
2132
  }, {
1780
2133
  [x: string]: any;
2134
+ }>, {
2135
+ [x: string]: any;
2136
+ }, {
2137
+ [x: string]: any;
1781
2138
  }>;
1782
- declare const mcpLidoWrapStEthInputSchema: z.ZodObject<{} & {
2139
+ declare const mcpLidoWrapStEthInputSchema: z.ZodEffects<z.ZodObject<{} & {
1783
2140
  [x: string]: z.ZodTypeAny;
1784
2141
  }, "strip", z.ZodTypeAny, {
1785
2142
  [x: string]: any;
1786
2143
  }, {
1787
2144
  [x: string]: any;
2145
+ }>, {
2146
+ [x: string]: any;
2147
+ }, {
2148
+ [x: string]: any;
1788
2149
  }>;
1789
- declare const mcpLidoUnwrapWstEthInputSchema: z.ZodObject<{} & {
2150
+ declare const mcpLidoUnwrapWstEthInputSchema: z.ZodEffects<z.ZodObject<{} & {
1790
2151
  [x: string]: z.ZodTypeAny;
1791
2152
  }, "strip", z.ZodTypeAny, {
1792
2153
  [x: string]: any;
1793
2154
  }, {
1794
2155
  [x: string]: any;
2156
+ }>, {
2157
+ [x: string]: any;
2158
+ }, {
2159
+ [x: string]: any;
1795
2160
  }>;
1796
- declare const mcpEthenaStakeInputSchema: z.ZodObject<{} & {
2161
+ declare const mcpEthenaStakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
1797
2162
  [x: string]: z.ZodTypeAny;
1798
2163
  }, "strip", z.ZodTypeAny, {
1799
2164
  [x: string]: any;
1800
2165
  }, {
1801
2166
  [x: string]: any;
2167
+ }>, {
2168
+ [x: string]: any;
2169
+ }, {
2170
+ [x: string]: any;
1802
2171
  }>;
1803
- declare const mcpEthenaRedeemInputSchema: z.ZodObject<{} & {
2172
+ declare const mcpEthenaRedeemInputSchema: z.ZodEffects<z.ZodObject<{} & {
1804
2173
  [x: string]: z.ZodTypeAny;
1805
2174
  }, "strip", z.ZodTypeAny, {
1806
2175
  [x: string]: any;
1807
2176
  }, {
1808
2177
  [x: string]: any;
2178
+ }>, {
2179
+ [x: string]: any;
2180
+ }, {
2181
+ [x: string]: any;
1809
2182
  }>;
1810
- declare const mcpEthenaCooldownInputSchema: z.ZodObject<{} & {
2183
+ declare const mcpEthenaCooldownInputSchema: z.ZodEffects<z.ZodObject<{} & {
1811
2184
  [x: string]: z.ZodTypeAny;
1812
2185
  }, "strip", z.ZodTypeAny, {
1813
2186
  [x: string]: any;
1814
2187
  }, {
1815
2188
  [x: string]: any;
2189
+ }>, {
2190
+ [x: string]: any;
2191
+ }, {
2192
+ [x: string]: any;
1816
2193
  }>;
1817
- declare const mcpEthenaClaimInputSchema: z.ZodObject<{} & {
2194
+ declare const mcpEthenaClaimInputSchema: z.ZodEffects<z.ZodObject<{} & {
1818
2195
  [x: string]: z.ZodTypeAny;
1819
2196
  }, "strip", z.ZodTypeAny, {
1820
2197
  [x: string]: any;
1821
2198
  }, {
1822
2199
  [x: string]: any;
2200
+ }>, {
2201
+ [x: string]: any;
2202
+ }, {
2203
+ [x: string]: any;
1823
2204
  }>;
1824
- declare const mcpMapleDepositInputSchema: z.ZodObject<{} & {
2205
+ declare const mcpMapleDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1825
2206
  [x: string]: z.ZodTypeAny;
1826
2207
  }, "strip", z.ZodTypeAny, {
1827
2208
  [x: string]: any;
1828
2209
  }, {
1829
2210
  [x: string]: any;
2211
+ }>, {
2212
+ [x: string]: any;
2213
+ }, {
2214
+ [x: string]: any;
1830
2215
  }>;
1831
- declare const mcpMapleRequestRedeemInputSchema: z.ZodObject<{} & {
2216
+ declare const mcpMapleRequestRedeemInputSchema: z.ZodEffects<z.ZodObject<{} & {
1832
2217
  [x: string]: z.ZodTypeAny;
1833
2218
  }, "strip", z.ZodTypeAny, {
1834
2219
  [x: string]: any;
1835
2220
  }, {
1836
2221
  [x: string]: any;
2222
+ }>, {
2223
+ [x: string]: any;
2224
+ }, {
2225
+ [x: string]: any;
1837
2226
  }>;
1838
- declare const mcpSkyLockstakeStakeInputSchema: z.ZodObject<{} & {
2227
+ declare const mcpSkyLockstakeStakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
1839
2228
  [x: string]: z.ZodTypeAny;
1840
2229
  }, "strip", z.ZodTypeAny, {
1841
2230
  [x: string]: any;
1842
2231
  }, {
1843
2232
  [x: string]: any;
2233
+ }>, {
2234
+ [x: string]: any;
2235
+ }, {
2236
+ [x: string]: any;
1844
2237
  }>;
1845
- declare const mcpSkyLockstakeDrawInputSchema: z.ZodObject<{} & {
2238
+ declare const mcpSkyLockstakeDrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1846
2239
  [x: string]: z.ZodTypeAny;
1847
2240
  }, "strip", z.ZodTypeAny, {
1848
2241
  [x: string]: any;
1849
2242
  }, {
1850
2243
  [x: string]: any;
2244
+ }>, {
2245
+ [x: string]: any;
2246
+ }, {
2247
+ [x: string]: any;
1851
2248
  }>;
1852
- declare const mcpSkyLockstakeWipeInputSchema: z.ZodObject<{} & {
2249
+ declare const mcpSkyLockstakeWipeInputSchema: z.ZodEffects<z.ZodObject<{} & {
1853
2250
  [x: string]: z.ZodTypeAny;
1854
2251
  }, "strip", z.ZodTypeAny, {
1855
2252
  [x: string]: any;
1856
2253
  }, {
1857
2254
  [x: string]: any;
2255
+ }>, {
2256
+ [x: string]: any;
2257
+ }, {
2258
+ [x: string]: any;
1858
2259
  }>;
1859
- declare const mcpSkyLockstakeCloseInputSchema: z.ZodObject<{} & {
2260
+ declare const mcpSkyLockstakeCloseInputSchema: z.ZodEffects<z.ZodObject<{} & {
1860
2261
  [x: string]: z.ZodTypeAny;
1861
2262
  }, "strip", z.ZodTypeAny, {
1862
2263
  [x: string]: any;
1863
2264
  }, {
1864
2265
  [x: string]: any;
2266
+ }>, {
2267
+ [x: string]: any;
2268
+ }, {
2269
+ [x: string]: any;
1865
2270
  }>;
1866
- declare const mcpSkyLockstakeGetRewardInputSchema: z.ZodObject<{} & {
2271
+ declare const mcpSkyLockstakeGetRewardInputSchema: z.ZodEffects<z.ZodObject<{} & {
1867
2272
  [x: string]: z.ZodTypeAny;
1868
2273
  }, "strip", z.ZodTypeAny, {
1869
2274
  [x: string]: any;
1870
2275
  }, {
1871
2276
  [x: string]: any;
2277
+ }>, {
2278
+ [x: string]: any;
2279
+ }, {
2280
+ [x: string]: any;
1872
2281
  }>;
1873
- declare const mcpSkySusdsDepositInputSchema: z.ZodObject<{} & {
2282
+ declare const mcpSkySusdsDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1874
2283
  [x: string]: z.ZodTypeAny;
1875
2284
  }, "strip", z.ZodTypeAny, {
1876
2285
  [x: string]: any;
1877
2286
  }, {
1878
2287
  [x: string]: any;
2288
+ }>, {
2289
+ [x: string]: any;
2290
+ }, {
2291
+ [x: string]: any;
1879
2292
  }>;
1880
- declare const mcpSkySusdsRedeemInputSchema: z.ZodObject<{} & {
2293
+ declare const mcpSkySusdsRedeemInputSchema: z.ZodEffects<z.ZodObject<{} & {
1881
2294
  [x: string]: z.ZodTypeAny;
1882
2295
  }, "strip", z.ZodTypeAny, {
1883
2296
  [x: string]: any;
1884
2297
  }, {
1885
2298
  [x: string]: any;
2299
+ }>, {
2300
+ [x: string]: any;
2301
+ }, {
2302
+ [x: string]: any;
1886
2303
  }>;
1887
- declare const mcpAaveV4DepositInputSchema: z.ZodObject<{} & {
2304
+ declare const mcpAaveV4DepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1888
2305
  [x: string]: z.ZodTypeAny;
1889
2306
  }, "strip", z.ZodTypeAny, {
1890
2307
  [x: string]: any;
1891
2308
  }, {
1892
2309
  [x: string]: any;
2310
+ }>, {
2311
+ [x: string]: any;
2312
+ }, {
2313
+ [x: string]: any;
1893
2314
  }>;
1894
- declare const mcpAaveV4WithdrawInputSchema: z.ZodObject<{} & {
2315
+ declare const mcpAaveV4WithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1895
2316
  [x: string]: z.ZodTypeAny;
1896
2317
  }, "strip", z.ZodTypeAny, {
1897
2318
  [x: string]: any;
1898
2319
  }, {
1899
2320
  [x: string]: any;
2321
+ }>, {
2322
+ [x: string]: any;
2323
+ }, {
2324
+ [x: string]: any;
1900
2325
  }>;
1901
- declare const mcpAaveV4BorrowInputSchema: z.ZodObject<{} & {
2326
+ declare const mcpAaveV4BorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
1902
2327
  [x: string]: z.ZodTypeAny;
1903
2328
  }, "strip", z.ZodTypeAny, {
1904
2329
  [x: string]: any;
1905
2330
  }, {
1906
2331
  [x: string]: any;
2332
+ }>, {
2333
+ [x: string]: any;
2334
+ }, {
2335
+ [x: string]: any;
1907
2336
  }>;
1908
- declare const mcpAaveV4RepayInputSchema: z.ZodObject<{} & {
2337
+ declare const mcpAaveV4RepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
1909
2338
  [x: string]: z.ZodTypeAny;
1910
2339
  }, "strip", z.ZodTypeAny, {
1911
2340
  [x: string]: any;
1912
2341
  }, {
1913
2342
  [x: string]: any;
2343
+ }>, {
2344
+ [x: string]: any;
2345
+ }, {
2346
+ [x: string]: any;
1914
2347
  }>;
1915
- declare const mcpEulerV2IsolatedLendInputSchema: z.ZodObject<{} & {
2348
+ declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodObject<{} & {
1916
2349
  [x: string]: z.ZodTypeAny;
1917
2350
  }, "strip", z.ZodTypeAny, {
1918
2351
  [x: string]: any;
1919
2352
  }, {
1920
2353
  [x: string]: any;
2354
+ }>, {
2355
+ [x: string]: any;
2356
+ }, {
2357
+ [x: string]: any;
1921
2358
  }>;
1922
- declare const mcpEulerV2IsolatedBorrowInputSchema: z.ZodObject<{} & {
2359
+ declare const mcpEulerV2IsolatedBorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
1923
2360
  [x: string]: z.ZodTypeAny;
1924
2361
  }, "strip", z.ZodTypeAny, {
1925
2362
  [x: string]: any;
1926
2363
  }, {
1927
2364
  [x: string]: any;
2365
+ }>, {
2366
+ [x: string]: any;
2367
+ }, {
2368
+ [x: string]: any;
1928
2369
  }>;
1929
- declare const mcpEulerV2VaultWithdrawInputSchema: z.ZodObject<{} & {
2370
+ declare const mcpEulerV2VaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1930
2371
  [x: string]: z.ZodTypeAny;
1931
2372
  }, "strip", z.ZodTypeAny, {
1932
2373
  [x: string]: any;
1933
2374
  }, {
1934
2375
  [x: string]: any;
2376
+ }>, {
2377
+ [x: string]: any;
2378
+ }, {
2379
+ [x: string]: any;
1935
2380
  }>;
1936
- declare const mcpEulerV2BorrowRepayInputSchema: z.ZodObject<{} & {
2381
+ declare const mcpEulerV2BorrowRepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
1937
2382
  [x: string]: z.ZodTypeAny;
1938
2383
  }, "strip", z.ZodTypeAny, {
1939
2384
  [x: string]: any;
1940
2385
  }, {
1941
2386
  [x: string]: any;
2387
+ }>, {
2388
+ [x: string]: any;
2389
+ }, {
2390
+ [x: string]: any;
1942
2391
  }>;
1943
- declare const mcpEulerV2CollateralDepositInputSchema: z.ZodObject<{} & {
2392
+ declare const mcpEulerV2CollateralDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1944
2393
  [x: string]: z.ZodTypeAny;
1945
2394
  }, "strip", z.ZodTypeAny, {
1946
2395
  [x: string]: any;
1947
2396
  }, {
1948
2397
  [x: string]: any;
2398
+ }>, {
2399
+ [x: string]: any;
2400
+ }, {
2401
+ [x: string]: any;
1949
2402
  }>;
1950
- declare const mcpEulerV2CollateralWithdrawInputSchema: z.ZodObject<{} & {
2403
+ declare const mcpEulerV2CollateralWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1951
2404
  [x: string]: z.ZodTypeAny;
1952
2405
  }, "strip", z.ZodTypeAny, {
1953
2406
  [x: string]: any;
1954
2407
  }, {
1955
2408
  [x: string]: any;
2409
+ }>, {
2410
+ [x: string]: any;
2411
+ }, {
2412
+ [x: string]: any;
1956
2413
  }>;
1957
2414
  type McpLidoSubmitInput = z.infer<typeof mcpLidoSubmitInputSchema>;
1958
2415
  type McpEthenaStakeInput = z.infer<typeof mcpEthenaStakeInputSchema>;
@@ -1960,54 +2417,82 @@ type McpMapleDepositInput = z.infer<typeof mcpMapleDepositInputSchema>;
1960
2417
  type McpSkyLockstakeStakeInput = z.infer<typeof mcpSkyLockstakeStakeInputSchema>;
1961
2418
  type McpAaveV4DepositInput = z.infer<typeof mcpAaveV4DepositInputSchema>;
1962
2419
  type McpEulerV2IsolatedLendInput = z.infer<typeof mcpEulerV2IsolatedLendInputSchema>;
1963
- declare const mcpMorphoVaultDepositInputSchema: z.ZodObject<{} & {
2420
+ declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1964
2421
  [x: string]: z.ZodTypeAny;
1965
2422
  }, "strip", z.ZodTypeAny, {
1966
2423
  [x: string]: any;
1967
2424
  }, {
1968
2425
  [x: string]: any;
2426
+ }>, {
2427
+ [x: string]: any;
2428
+ }, {
2429
+ [x: string]: any;
1969
2430
  }>;
1970
- declare const mcpMorphoVaultWithdrawInputSchema: z.ZodObject<{} & {
2431
+ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1971
2432
  [x: string]: z.ZodTypeAny;
1972
2433
  }, "strip", z.ZodTypeAny, {
1973
2434
  [x: string]: any;
1974
2435
  }, {
1975
2436
  [x: string]: any;
2437
+ }>, {
2438
+ [x: string]: any;
2439
+ }, {
2440
+ [x: string]: any;
1976
2441
  }>;
1977
- declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodObject<{} & {
2442
+ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1978
2443
  [x: string]: z.ZodTypeAny;
1979
2444
  }, "strip", z.ZodTypeAny, {
1980
2445
  [x: string]: any;
1981
2446
  }, {
1982
2447
  [x: string]: any;
2448
+ }>, {
2449
+ [x: string]: any;
2450
+ }, {
2451
+ [x: string]: any;
1983
2452
  }>;
1984
- declare const mcpMorphoBlueBorrowInputSchema: z.ZodObject<{} & {
2453
+ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
1985
2454
  [x: string]: z.ZodTypeAny;
1986
2455
  }, "strip", z.ZodTypeAny, {
1987
2456
  [x: string]: any;
1988
2457
  }, {
1989
2458
  [x: string]: any;
2459
+ }>, {
2460
+ [x: string]: any;
2461
+ }, {
2462
+ [x: string]: any;
1990
2463
  }>;
1991
- declare const mcpMorphoBlueRepayInputSchema: z.ZodObject<{} & {
2464
+ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
1992
2465
  [x: string]: z.ZodTypeAny;
1993
2466
  }, "strip", z.ZodTypeAny, {
1994
2467
  [x: string]: any;
1995
2468
  }, {
1996
2469
  [x: string]: any;
2470
+ }>, {
2471
+ [x: string]: any;
2472
+ }, {
2473
+ [x: string]: any;
1997
2474
  }>;
1998
- declare const mcpMorphoBlueCollateralWithdrawInputSchema: z.ZodObject<{} & {
2475
+ declare const mcpMorphoBlueCollateralWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1999
2476
  [x: string]: z.ZodTypeAny;
2000
2477
  }, "strip", z.ZodTypeAny, {
2001
2478
  [x: string]: any;
2002
2479
  }, {
2003
2480
  [x: string]: any;
2481
+ }>, {
2482
+ [x: string]: any;
2483
+ }, {
2484
+ [x: string]: any;
2004
2485
  }>;
2005
- declare const mcpMorphoMerklClaimInputSchema: z.ZodObject<{} & {
2486
+ declare const mcpMorphoMerklClaimInputSchema: z.ZodEffects<z.ZodObject<{} & {
2006
2487
  [x: string]: z.ZodTypeAny;
2007
2488
  }, "strip", z.ZodTypeAny, {
2008
2489
  [x: string]: any;
2009
2490
  }, {
2010
2491
  [x: string]: any;
2492
+ }>, {
2493
+ [x: string]: any;
2494
+ }, {
2495
+ [x: string]: any;
2011
2496
  }>;
2012
2497
  type McpMorphoVaultDepositInput = z.infer<typeof mcpMorphoVaultDepositInputSchema>;
2013
2498
 
@@ -2196,54 +2681,82 @@ declare const mcpGmxFetchPositionsOutputSchema: z.ZodObject<{
2196
2681
  }, {
2197
2682
  positions: Record<string, unknown>[];
2198
2683
  }>;
2199
- declare const mcpGmxIncreaseInputSchema: z.ZodObject<{} & {
2684
+ declare const mcpGmxIncreaseInputSchema: z.ZodEffects<z.ZodObject<{} & {
2200
2685
  [x: string]: z.ZodTypeAny;
2201
2686
  }, "strip", z.ZodTypeAny, {
2202
2687
  [x: string]: any;
2203
2688
  }, {
2204
2689
  [x: string]: any;
2690
+ }>, {
2691
+ [x: string]: any;
2692
+ }, {
2693
+ [x: string]: any;
2205
2694
  }>;
2206
- declare const mcpGmxDecreaseInputSchema: z.ZodObject<{} & {
2695
+ declare const mcpGmxDecreaseInputSchema: z.ZodEffects<z.ZodObject<{} & {
2207
2696
  [x: string]: z.ZodTypeAny;
2208
2697
  }, "strip", z.ZodTypeAny, {
2209
2698
  [x: string]: any;
2210
2699
  }, {
2211
2700
  [x: string]: any;
2701
+ }>, {
2702
+ [x: string]: any;
2703
+ }, {
2704
+ [x: string]: any;
2212
2705
  }>;
2213
- declare const mcpGmxCancelInputSchema: z.ZodObject<{} & {
2706
+ declare const mcpGmxCancelInputSchema: z.ZodEffects<z.ZodObject<{} & {
2214
2707
  [x: string]: z.ZodTypeAny;
2215
2708
  }, "strip", z.ZodTypeAny, {
2216
2709
  [x: string]: any;
2217
2710
  }, {
2218
2711
  [x: string]: any;
2712
+ }>, {
2713
+ [x: string]: any;
2714
+ }, {
2715
+ [x: string]: any;
2219
2716
  }>;
2220
- declare const mcpGmxGmDepositInputSchema: z.ZodObject<{} & {
2717
+ declare const mcpGmxGmDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
2221
2718
  [x: string]: z.ZodTypeAny;
2222
2719
  }, "strip", z.ZodTypeAny, {
2223
2720
  [x: string]: any;
2224
2721
  }, {
2225
2722
  [x: string]: any;
2723
+ }>, {
2724
+ [x: string]: any;
2725
+ }, {
2726
+ [x: string]: any;
2226
2727
  }>;
2227
- declare const mcpGmxGmWithdrawInputSchema: z.ZodObject<{} & {
2728
+ declare const mcpGmxGmWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2228
2729
  [x: string]: z.ZodTypeAny;
2229
2730
  }, "strip", z.ZodTypeAny, {
2230
2731
  [x: string]: any;
2231
2732
  }, {
2232
2733
  [x: string]: any;
2734
+ }>, {
2735
+ [x: string]: any;
2736
+ }, {
2737
+ [x: string]: any;
2233
2738
  }>;
2234
- declare const mcpGmxStakeGmxInputSchema: z.ZodObject<{} & {
2739
+ declare const mcpGmxStakeGmxInputSchema: z.ZodEffects<z.ZodObject<{} & {
2235
2740
  [x: string]: z.ZodTypeAny;
2236
2741
  }, "strip", z.ZodTypeAny, {
2237
2742
  [x: string]: any;
2238
2743
  }, {
2239
2744
  [x: string]: any;
2745
+ }>, {
2746
+ [x: string]: any;
2747
+ }, {
2748
+ [x: string]: any;
2240
2749
  }>;
2241
- declare const mcpGmxUnstakeGmxInputSchema: z.ZodObject<{} & {
2750
+ declare const mcpGmxUnstakeGmxInputSchema: z.ZodEffects<z.ZodObject<{} & {
2242
2751
  [x: string]: z.ZodTypeAny;
2243
2752
  }, "strip", z.ZodTypeAny, {
2244
2753
  [x: string]: any;
2245
2754
  }, {
2246
2755
  [x: string]: any;
2756
+ }>, {
2757
+ [x: string]: any;
2758
+ }, {
2759
+ [x: string]: any;
2247
2760
  }>;
2248
2761
  declare const mcpGmxFetchGmMarketsInputSchema: z.ZodObject<{
2249
2762
  chainId: z.ZodNumber;
@@ -3488,75 +4001,115 @@ declare const mcpHyperliquidFetchDelegationsOutputSchema: z.ZodObject<{
3488
4001
  validator: string;
3489
4002
  }[];
3490
4003
  }>;
3491
- declare const mcpHyperliquidLimitOrderInputSchema: z.ZodObject<{} & {
4004
+ declare const mcpHyperliquidLimitOrderInputSchema: z.ZodEffects<z.ZodObject<{} & {
3492
4005
  [x: string]: z.ZodTypeAny;
3493
4006
  }, "strip", z.ZodTypeAny, {
3494
4007
  [x: string]: any;
3495
4008
  }, {
3496
4009
  [x: string]: any;
4010
+ }>, {
4011
+ [x: string]: any;
4012
+ }, {
4013
+ [x: string]: any;
3497
4014
  }>;
3498
- declare const mcpHyperliquidCloseInputSchema: z.ZodObject<{} & {
4015
+ declare const mcpHyperliquidCloseInputSchema: z.ZodEffects<z.ZodObject<{} & {
3499
4016
  [x: string]: z.ZodTypeAny;
3500
4017
  }, "strip", z.ZodTypeAny, {
3501
4018
  [x: string]: any;
3502
4019
  }, {
3503
4020
  [x: string]: any;
4021
+ }>, {
4022
+ [x: string]: any;
4023
+ }, {
4024
+ [x: string]: any;
3504
4025
  }>;
3505
- declare const mcpHyperliquidCancelInputSchema: z.ZodObject<{} & {
4026
+ declare const mcpHyperliquidCancelInputSchema: z.ZodEffects<z.ZodObject<{} & {
3506
4027
  [x: string]: z.ZodTypeAny;
3507
4028
  }, "strip", z.ZodTypeAny, {
3508
4029
  [x: string]: any;
3509
4030
  }, {
3510
4031
  [x: string]: any;
4032
+ }>, {
4033
+ [x: string]: any;
4034
+ }, {
4035
+ [x: string]: any;
3511
4036
  }>;
3512
- declare const mcpHyperliquidUsdTransferInputSchema: z.ZodObject<{} & {
4037
+ declare const mcpHyperliquidUsdTransferInputSchema: z.ZodEffects<z.ZodObject<{} & {
3513
4038
  [x: string]: z.ZodTypeAny;
3514
4039
  }, "strip", z.ZodTypeAny, {
3515
4040
  [x: string]: any;
3516
4041
  }, {
3517
4042
  [x: string]: any;
4043
+ }>, {
4044
+ [x: string]: any;
4045
+ }, {
4046
+ [x: string]: any;
3518
4047
  }>;
3519
- declare const mcpHyperliquidVaultDepositInputSchema: z.ZodObject<{} & {
4048
+ declare const mcpHyperliquidVaultDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
3520
4049
  [x: string]: z.ZodTypeAny;
3521
4050
  }, "strip", z.ZodTypeAny, {
3522
4051
  [x: string]: any;
3523
4052
  }, {
3524
4053
  [x: string]: any;
4054
+ }>, {
4055
+ [x: string]: any;
4056
+ }, {
4057
+ [x: string]: any;
3525
4058
  }>;
3526
- declare const mcpHyperliquidVaultWithdrawInputSchema: z.ZodObject<{} & {
4059
+ declare const mcpHyperliquidVaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
3527
4060
  [x: string]: z.ZodTypeAny;
3528
4061
  }, "strip", z.ZodTypeAny, {
3529
4062
  [x: string]: any;
3530
4063
  }, {
3531
4064
  [x: string]: any;
4065
+ }>, {
4066
+ [x: string]: any;
4067
+ }, {
4068
+ [x: string]: any;
3532
4069
  }>;
3533
- declare const mcpHyperliquidStakeInputSchema: z.ZodObject<{} & {
4070
+ declare const mcpHyperliquidStakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
3534
4071
  [x: string]: z.ZodTypeAny;
3535
4072
  }, "strip", z.ZodTypeAny, {
3536
4073
  [x: string]: any;
3537
4074
  }, {
3538
4075
  [x: string]: any;
4076
+ }>, {
4077
+ [x: string]: any;
4078
+ }, {
4079
+ [x: string]: any;
3539
4080
  }>;
3540
- declare const mcpHyperliquidUnstakeInputSchema: z.ZodObject<{} & {
4081
+ declare const mcpHyperliquidUnstakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
3541
4082
  [x: string]: z.ZodTypeAny;
3542
4083
  }, "strip", z.ZodTypeAny, {
3543
4084
  [x: string]: any;
3544
4085
  }, {
3545
4086
  [x: string]: any;
4087
+ }>, {
4088
+ [x: string]: any;
4089
+ }, {
4090
+ [x: string]: any;
3546
4091
  }>;
3547
- declare const mcpHyperliquidDelegateInputSchema: z.ZodObject<{} & {
4092
+ declare const mcpHyperliquidDelegateInputSchema: z.ZodEffects<z.ZodObject<{} & {
3548
4093
  [x: string]: z.ZodTypeAny;
3549
4094
  }, "strip", z.ZodTypeAny, {
3550
4095
  [x: string]: any;
3551
4096
  }, {
3552
4097
  [x: string]: any;
4098
+ }>, {
4099
+ [x: string]: any;
4100
+ }, {
4101
+ [x: string]: any;
3553
4102
  }>;
3554
- declare const mcpHyperliquidUndelegateInputSchema: z.ZodObject<{} & {
4103
+ declare const mcpHyperliquidUndelegateInputSchema: z.ZodEffects<z.ZodObject<{} & {
3555
4104
  [x: string]: z.ZodTypeAny;
3556
4105
  }, "strip", z.ZodTypeAny, {
3557
4106
  [x: string]: any;
3558
4107
  }, {
3559
4108
  [x: string]: any;
4109
+ }>, {
4110
+ [x: string]: any;
4111
+ }, {
4112
+ [x: string]: any;
3560
4113
  }>;
3561
4114
 
3562
4115
  /** Machine-readable catalog of protocol actions grouped by chain category. */
@@ -3603,6 +4156,14 @@ declare function getAgentCatalog(): {
3603
4156
  readonly type: "string";
3604
4157
  readonly description: "Sign request id from POST /multiSignRequest.";
3605
4158
  };
4159
+ readonly status: {
4160
+ readonly type: "string";
4161
+ readonly description: "submitted when POST succeeded — do not call the same build tool again.";
4162
+ };
4163
+ readonly followUp: {
4164
+ readonly type: "string";
4165
+ readonly description: "Lifecycle next steps (wait_for_sign_request_ready → agree → trigger → broadcast).";
4166
+ };
3606
4167
  };
3607
4168
  };
3608
4169
  managementSig: {