@continuumdao/ctm-mpc-defi 0.2.36 → 0.2.38

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 (53) hide show
  1. package/dist/agent/catalog.cjs +214 -43
  2. package/dist/agent/catalog.cjs.map +1 -1
  3. package/dist/agent/catalog.d.ts +860 -3
  4. package/dist/agent/catalog.js +201 -44
  5. package/dist/agent/catalog.js.map +1 -1
  6. package/dist/agent/skills/continuum-dao/SKILL.md +24 -3
  7. package/dist/{buildBatch-CngvebiD.d.ts → buildBatch-tsEUVn_a.d.ts} +3 -3
  8. package/dist/chains/evm/index.cjs +33 -22
  9. package/dist/chains/evm/index.cjs.map +1 -1
  10. package/dist/chains/evm/index.d.ts +10 -6
  11. package/dist/chains/evm/index.js +33 -22
  12. package/dist/chains/evm/index.js.map +1 -1
  13. package/dist/chains/near/index.d.ts +1 -1
  14. package/dist/chains/solana/index.d.ts +1 -1
  15. package/dist/core/index.d.ts +5 -5
  16. package/dist/{eip712Multisign-DCW7heqX.d.ts → eip712Multisign-6oNIlObj.d.ts} +1 -1
  17. package/dist/{envelope-C_bfuKab.d.ts → envelope-Cm-llShH.d.ts} +1 -1
  18. package/dist/index.cjs +33 -22
  19. package/dist/index.cjs.map +1 -1
  20. package/dist/index.d.ts +6 -6
  21. package/dist/index.js +33 -22
  22. package/dist/index.js.map +1 -1
  23. package/dist/protocols/evm/aave-v4/index.d.ts +1 -1
  24. package/dist/protocols/evm/aerodrome/index.d.ts +4 -4
  25. package/dist/protocols/evm/arcus/index.d.ts +2 -2
  26. package/dist/protocols/evm/circle-cctp/index.d.ts +2 -2
  27. package/dist/protocols/evm/compound-v3/index.d.ts +1 -1
  28. package/dist/protocols/evm/continuum-dao/index.cjs +889 -46
  29. package/dist/protocols/evm/continuum-dao/index.cjs.map +1 -1
  30. package/dist/protocols/evm/continuum-dao/index.d.ts +237 -5
  31. package/dist/protocols/evm/continuum-dao/index.js +844 -48
  32. package/dist/protocols/evm/continuum-dao/index.js.map +1 -1
  33. package/dist/protocols/evm/curve-dao/index.d.ts +2 -2
  34. package/dist/protocols/evm/ethena/index.d.ts +1 -1
  35. package/dist/protocols/evm/euler-v2/index.cjs +33 -22
  36. package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
  37. package/dist/protocols/evm/euler-v2/index.d.ts +1 -1
  38. package/dist/protocols/evm/euler-v2/index.js +33 -22
  39. package/dist/protocols/evm/euler-v2/index.js.map +1 -1
  40. package/dist/protocols/evm/gmx/index.d.ts +2 -2
  41. package/dist/protocols/evm/hyperliquid/index.d.ts +2 -2
  42. package/dist/protocols/evm/lido/index.d.ts +1 -1
  43. package/dist/protocols/evm/maple/index.d.ts +1 -1
  44. package/dist/protocols/evm/morpho/index.d.ts +1 -1
  45. package/dist/protocols/evm/pendle/index.d.ts +4 -4
  46. package/dist/protocols/evm/permit2/index.d.ts +1 -1
  47. package/dist/protocols/evm/sky/index.d.ts +1 -1
  48. package/dist/protocols/evm/uniswap-v4/index.d.ts +3 -3
  49. package/dist/protocols/evm/venice/index.d.ts +1 -1
  50. package/dist/{registry-DxDSPQ-p.d.ts → registry-BvsXh0-r.d.ts} +1 -1
  51. package/dist/{types-RZWOTm8c.d.ts → types-RJpoU4Pc.d.ts} +1 -1
  52. package/dist/{types-PZrvtjv8.d.ts → types-lIfv59N1.d.ts} +2 -0
  53. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  import * as zod from 'zod';
2
2
  import { z } from 'zod';
3
- import { C as ChainCategory, e as ProtocolModule, P as ParamDoc, d as ProtocolActionDescriptor } from '../types-PZrvtjv8.js';
4
- export { g as getActionsByChainCategory, b as getProtocolModules } from '../registry-DxDSPQ-p.js';
3
+ import { C as ChainCategory, e as ProtocolModule, P as ParamDoc, d as ProtocolActionDescriptor } from '../types-lIfv59N1.js';
4
+ export { g as getActionsByChainCategory, b as getProtocolModules } from '../registry-BvsXh0-r.js';
5
5
 
6
6
  /** JSON-schema-like object for MCP tool `inputSchema` / `outputSchema` (derived from Zod). */
7
7
  type McpSchemaProperty = {
@@ -325,14 +325,20 @@ declare const keyGenSchema: z.ZodObject<{
325
325
  pubkeyhex: z.ZodString;
326
326
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
327
327
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
328
+ groupId: z.ZodOptional<z.ZodString>;
329
+ GroupId: z.ZodOptional<z.ZodString>;
328
330
  }, "strip", z.ZodTypeAny, {
329
331
  pubkeyhex: string;
330
332
  keylist?: string[] | undefined;
331
333
  ClientKeys?: Record<string, string> | undefined;
334
+ groupId?: string | undefined;
335
+ GroupId?: string | undefined;
332
336
  }, {
333
337
  pubkeyhex: string;
334
338
  keylist?: string[] | undefined;
335
339
  ClientKeys?: Record<string, string> | undefined;
340
+ groupId?: string | undefined;
341
+ GroupId?: string | undefined;
336
342
  }>;
337
343
  /** Chain gas config row from GET /getChainDetails (subset). */
338
344
  declare const chainDetailSchema: z.ZodObject<{
@@ -367,14 +373,20 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
367
373
  pubkeyhex: z.ZodString;
368
374
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
369
375
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
376
+ groupId: z.ZodOptional<z.ZodString>;
377
+ GroupId: z.ZodOptional<z.ZodString>;
370
378
  }, "strip", z.ZodTypeAny, {
371
379
  pubkeyhex: string;
372
380
  keylist?: string[] | undefined;
373
381
  ClientKeys?: Record<string, string> | undefined;
382
+ groupId?: string | undefined;
383
+ GroupId?: string | undefined;
374
384
  }, {
375
385
  pubkeyhex: string;
376
386
  keylist?: string[] | undefined;
377
387
  ClientKeys?: Record<string, string> | undefined;
388
+ groupId?: string | undefined;
389
+ GroupId?: string | undefined;
378
390
  }>>;
379
391
  purposeText: z.ZodString;
380
392
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -416,6 +428,8 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
416
428
  pubkeyhex: string;
417
429
  keylist?: string[] | undefined;
418
430
  ClientKeys?: Record<string, string> | undefined;
431
+ groupId?: string | undefined;
432
+ GroupId?: string | undefined;
419
433
  } | undefined;
420
434
  expiryDate?: number | undefined;
421
435
  rpcUrl?: string | undefined;
@@ -437,6 +451,8 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
437
451
  pubkeyhex: string;
438
452
  keylist?: string[] | undefined;
439
453
  ClientKeys?: Record<string, string> | undefined;
454
+ groupId?: string | undefined;
455
+ GroupId?: string | undefined;
440
456
  } | undefined;
441
457
  useCustomGas?: unknown;
442
458
  chainId?: unknown;
@@ -571,14 +587,20 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffec
571
587
  pubkeyhex: z.ZodString;
572
588
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
573
589
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
590
+ groupId: z.ZodOptional<z.ZodString>;
591
+ GroupId: z.ZodOptional<z.ZodString>;
574
592
  }, "strip", z.ZodTypeAny, {
575
593
  pubkeyhex: string;
576
594
  keylist?: string[] | undefined;
577
595
  ClientKeys?: Record<string, string> | undefined;
596
+ groupId?: string | undefined;
597
+ GroupId?: string | undefined;
578
598
  }, {
579
599
  pubkeyhex: string;
580
600
  keylist?: string[] | undefined;
581
601
  ClientKeys?: Record<string, string> | undefined;
602
+ groupId?: string | undefined;
603
+ GroupId?: string | undefined;
582
604
  }>>;
583
605
  purposeText: z.ZodString;
584
606
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -650,6 +672,8 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffec
650
672
  pubkeyhex: string;
651
673
  keylist?: string[] | undefined;
652
674
  ClientKeys?: Record<string, string> | undefined;
675
+ groupId?: string | undefined;
676
+ GroupId?: string | undefined;
653
677
  } | undefined;
654
678
  expiryDate?: number | undefined;
655
679
  rpcUrl?: string | undefined;
@@ -683,6 +707,8 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffec
683
707
  pubkeyhex: string;
684
708
  keylist?: string[] | undefined;
685
709
  ClientKeys?: Record<string, string> | undefined;
710
+ groupId?: string | undefined;
711
+ GroupId?: string | undefined;
686
712
  } | undefined;
687
713
  useCustomGas?: unknown;
688
714
  chainId?: unknown;
@@ -720,6 +746,8 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffec
720
746
  pubkeyhex: string;
721
747
  keylist?: string[] | undefined;
722
748
  ClientKeys?: Record<string, string> | undefined;
749
+ groupId?: string | undefined;
750
+ GroupId?: string | undefined;
723
751
  } | undefined;
724
752
  expiryDate?: number | undefined;
725
753
  rpcUrl?: string | undefined;
@@ -755,6 +783,8 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffec
755
783
  pubkeyhex: string;
756
784
  keylist?: string[] | undefined;
757
785
  ClientKeys?: Record<string, string> | undefined;
786
+ groupId?: string | undefined;
787
+ GroupId?: string | undefined;
758
788
  } | undefined;
759
789
  expiryDate?: number | undefined;
760
790
  rpcUrl?: string | undefined;
@@ -832,14 +862,20 @@ declare const mcpUniswapV4BuildLimitOrderMultisignInputSchema: z.ZodEffects<z.Zo
832
862
  pubkeyhex: z.ZodString;
833
863
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
834
864
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
865
+ groupId: z.ZodOptional<z.ZodString>;
866
+ GroupId: z.ZodOptional<z.ZodString>;
835
867
  }, "strip", z.ZodTypeAny, {
836
868
  pubkeyhex: string;
837
869
  keylist?: string[] | undefined;
838
870
  ClientKeys?: Record<string, string> | undefined;
871
+ groupId?: string | undefined;
872
+ GroupId?: string | undefined;
839
873
  }, {
840
874
  pubkeyhex: string;
841
875
  keylist?: string[] | undefined;
842
876
  ClientKeys?: Record<string, string> | undefined;
877
+ groupId?: string | undefined;
878
+ GroupId?: string | undefined;
843
879
  }>>;
844
880
  purposeText: z.ZodString;
845
881
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -887,6 +923,8 @@ declare const mcpUniswapV4BuildLimitOrderMultisignInputSchema: z.ZodEffects<z.Zo
887
923
  pubkeyhex: string;
888
924
  keylist?: string[] | undefined;
889
925
  ClientKeys?: Record<string, string> | undefined;
926
+ groupId?: string | undefined;
927
+ GroupId?: string | undefined;
890
928
  } | undefined;
891
929
  expiryDate?: number | undefined;
892
930
  rpcUrl?: string | undefined;
@@ -911,6 +949,8 @@ declare const mcpUniswapV4BuildLimitOrderMultisignInputSchema: z.ZodEffects<z.Zo
911
949
  pubkeyhex: string;
912
950
  keylist?: string[] | undefined;
913
951
  ClientKeys?: Record<string, string> | undefined;
952
+ groupId?: string | undefined;
953
+ GroupId?: string | undefined;
914
954
  } | undefined;
915
955
  useCustomGas?: unknown;
916
956
  chainId?: unknown;
@@ -939,6 +979,8 @@ declare const mcpUniswapV4BuildLimitOrderMultisignInputSchema: z.ZodEffects<z.Zo
939
979
  pubkeyhex: string;
940
980
  keylist?: string[] | undefined;
941
981
  ClientKeys?: Record<string, string> | undefined;
982
+ groupId?: string | undefined;
983
+ GroupId?: string | undefined;
942
984
  } | undefined;
943
985
  expiryDate?: number | undefined;
944
986
  rpcUrl?: string | undefined;
@@ -965,6 +1007,8 @@ declare const mcpUniswapV4BuildLimitOrderMultisignInputSchema: z.ZodEffects<z.Zo
965
1007
  pubkeyhex: string;
966
1008
  keylist?: string[] | undefined;
967
1009
  ClientKeys?: Record<string, string> | undefined;
1010
+ groupId?: string | undefined;
1011
+ GroupId?: string | undefined;
968
1012
  } | undefined;
969
1013
  expiryDate?: number | undefined;
970
1014
  rpcUrl?: string | undefined;
@@ -1641,14 +1685,20 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
1641
1685
  pubkeyhex: z.ZodString;
1642
1686
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1643
1687
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1688
+ groupId: z.ZodOptional<z.ZodString>;
1689
+ GroupId: z.ZodOptional<z.ZodString>;
1644
1690
  }, "strip", z.ZodTypeAny, {
1645
1691
  pubkeyhex: string;
1646
1692
  keylist?: string[] | undefined;
1647
1693
  ClientKeys?: Record<string, string> | undefined;
1694
+ groupId?: string | undefined;
1695
+ GroupId?: string | undefined;
1648
1696
  }, {
1649
1697
  pubkeyhex: string;
1650
1698
  keylist?: string[] | undefined;
1651
1699
  ClientKeys?: Record<string, string> | undefined;
1700
+ groupId?: string | undefined;
1701
+ GroupId?: string | undefined;
1652
1702
  }>>;
1653
1703
  purposeText: z.ZodString;
1654
1704
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -1697,6 +1747,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
1697
1747
  pubkeyhex: string;
1698
1748
  keylist?: string[] | undefined;
1699
1749
  ClientKeys?: Record<string, string> | undefined;
1750
+ groupId?: string | undefined;
1751
+ GroupId?: string | undefined;
1700
1752
  } | undefined;
1701
1753
  expiryDate?: number | undefined;
1702
1754
  rpcUrl?: string | undefined;
@@ -1723,6 +1775,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
1723
1775
  pubkeyhex: string;
1724
1776
  keylist?: string[] | undefined;
1725
1777
  ClientKeys?: Record<string, string> | undefined;
1778
+ groupId?: string | undefined;
1779
+ GroupId?: string | undefined;
1726
1780
  } | undefined;
1727
1781
  useCustomGas?: unknown;
1728
1782
  chainId?: unknown;
@@ -1753,6 +1807,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
1753
1807
  pubkeyhex: string;
1754
1808
  keylist?: string[] | undefined;
1755
1809
  ClientKeys?: Record<string, string> | undefined;
1810
+ groupId?: string | undefined;
1811
+ GroupId?: string | undefined;
1756
1812
  } | undefined;
1757
1813
  expiryDate?: number | undefined;
1758
1814
  rpcUrl?: string | undefined;
@@ -1781,6 +1837,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
1781
1837
  pubkeyhex: string;
1782
1838
  keylist?: string[] | undefined;
1783
1839
  ClientKeys?: Record<string, string> | undefined;
1840
+ groupId?: string | undefined;
1841
+ GroupId?: string | undefined;
1784
1842
  } | undefined;
1785
1843
  expiryDate?: number | undefined;
1786
1844
  rpcUrl?: string | undefined;
@@ -1807,14 +1865,20 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
1807
1865
  pubkeyhex: z.ZodString;
1808
1866
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1809
1867
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1868
+ groupId: z.ZodOptional<z.ZodString>;
1869
+ GroupId: z.ZodOptional<z.ZodString>;
1810
1870
  }, "strip", z.ZodTypeAny, {
1811
1871
  pubkeyhex: string;
1812
1872
  keylist?: string[] | undefined;
1813
1873
  ClientKeys?: Record<string, string> | undefined;
1874
+ groupId?: string | undefined;
1875
+ GroupId?: string | undefined;
1814
1876
  }, {
1815
1877
  pubkeyhex: string;
1816
1878
  keylist?: string[] | undefined;
1817
1879
  ClientKeys?: Record<string, string> | undefined;
1880
+ groupId?: string | undefined;
1881
+ GroupId?: string | undefined;
1818
1882
  }>>;
1819
1883
  purposeText: z.ZodString;
1820
1884
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -1865,6 +1929,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
1865
1929
  pubkeyhex: string;
1866
1930
  keylist?: string[] | undefined;
1867
1931
  ClientKeys?: Record<string, string> | undefined;
1932
+ groupId?: string | undefined;
1933
+ GroupId?: string | undefined;
1868
1934
  } | undefined;
1869
1935
  expiryDate?: number | undefined;
1870
1936
  rpcUrl?: string | undefined;
@@ -1892,6 +1958,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
1892
1958
  pubkeyhex: string;
1893
1959
  keylist?: string[] | undefined;
1894
1960
  ClientKeys?: Record<string, string> | undefined;
1961
+ groupId?: string | undefined;
1962
+ GroupId?: string | undefined;
1895
1963
  } | undefined;
1896
1964
  useCustomGas?: unknown;
1897
1965
  chainId?: unknown;
@@ -1923,6 +1991,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
1923
1991
  pubkeyhex: string;
1924
1992
  keylist?: string[] | undefined;
1925
1993
  ClientKeys?: Record<string, string> | undefined;
1994
+ groupId?: string | undefined;
1995
+ GroupId?: string | undefined;
1926
1996
  } | undefined;
1927
1997
  expiryDate?: number | undefined;
1928
1998
  rpcUrl?: string | undefined;
@@ -1952,6 +2022,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
1952
2022
  pubkeyhex: string;
1953
2023
  keylist?: string[] | undefined;
1954
2024
  ClientKeys?: Record<string, string> | undefined;
2025
+ groupId?: string | undefined;
2026
+ GroupId?: string | undefined;
1955
2027
  } | undefined;
1956
2028
  expiryDate?: number | undefined;
1957
2029
  rpcUrl?: string | undefined;
@@ -1978,14 +2050,20 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
1978
2050
  pubkeyhex: z.ZodString;
1979
2051
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1980
2052
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2053
+ groupId: z.ZodOptional<z.ZodString>;
2054
+ GroupId: z.ZodOptional<z.ZodString>;
1981
2055
  }, "strip", z.ZodTypeAny, {
1982
2056
  pubkeyhex: string;
1983
2057
  keylist?: string[] | undefined;
1984
2058
  ClientKeys?: Record<string, string> | undefined;
2059
+ groupId?: string | undefined;
2060
+ GroupId?: string | undefined;
1985
2061
  }, {
1986
2062
  pubkeyhex: string;
1987
2063
  keylist?: string[] | undefined;
1988
2064
  ClientKeys?: Record<string, string> | undefined;
2065
+ groupId?: string | undefined;
2066
+ GroupId?: string | undefined;
1989
2067
  }>>;
1990
2068
  purposeText: z.ZodString;
1991
2069
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -2036,6 +2114,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
2036
2114
  pubkeyhex: string;
2037
2115
  keylist?: string[] | undefined;
2038
2116
  ClientKeys?: Record<string, string> | undefined;
2117
+ groupId?: string | undefined;
2118
+ GroupId?: string | undefined;
2039
2119
  } | undefined;
2040
2120
  expiryDate?: number | undefined;
2041
2121
  rpcUrl?: string | undefined;
@@ -2063,6 +2143,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
2063
2143
  pubkeyhex: string;
2064
2144
  keylist?: string[] | undefined;
2065
2145
  ClientKeys?: Record<string, string> | undefined;
2146
+ groupId?: string | undefined;
2147
+ GroupId?: string | undefined;
2066
2148
  } | undefined;
2067
2149
  useCustomGas?: unknown;
2068
2150
  chainId?: unknown;
@@ -2094,6 +2176,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
2094
2176
  pubkeyhex: string;
2095
2177
  keylist?: string[] | undefined;
2096
2178
  ClientKeys?: Record<string, string> | undefined;
2179
+ groupId?: string | undefined;
2180
+ GroupId?: string | undefined;
2097
2181
  } | undefined;
2098
2182
  expiryDate?: number | undefined;
2099
2183
  rpcUrl?: string | undefined;
@@ -2123,6 +2207,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
2123
2207
  pubkeyhex: string;
2124
2208
  keylist?: string[] | undefined;
2125
2209
  ClientKeys?: Record<string, string> | undefined;
2210
+ groupId?: string | undefined;
2211
+ GroupId?: string | undefined;
2126
2212
  } | undefined;
2127
2213
  expiryDate?: number | undefined;
2128
2214
  rpcUrl?: string | undefined;
@@ -2149,14 +2235,20 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
2149
2235
  pubkeyhex: z.ZodString;
2150
2236
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2151
2237
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2238
+ groupId: z.ZodOptional<z.ZodString>;
2239
+ GroupId: z.ZodOptional<z.ZodString>;
2152
2240
  }, "strip", z.ZodTypeAny, {
2153
2241
  pubkeyhex: string;
2154
2242
  keylist?: string[] | undefined;
2155
2243
  ClientKeys?: Record<string, string> | undefined;
2244
+ groupId?: string | undefined;
2245
+ GroupId?: string | undefined;
2156
2246
  }, {
2157
2247
  pubkeyhex: string;
2158
2248
  keylist?: string[] | undefined;
2159
2249
  ClientKeys?: Record<string, string> | undefined;
2250
+ groupId?: string | undefined;
2251
+ GroupId?: string | undefined;
2160
2252
  }>>;
2161
2253
  purposeText: z.ZodString;
2162
2254
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -2207,6 +2299,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
2207
2299
  pubkeyhex: string;
2208
2300
  keylist?: string[] | undefined;
2209
2301
  ClientKeys?: Record<string, string> | undefined;
2302
+ groupId?: string | undefined;
2303
+ GroupId?: string | undefined;
2210
2304
  } | undefined;
2211
2305
  expiryDate?: number | undefined;
2212
2306
  rpcUrl?: string | undefined;
@@ -2234,6 +2328,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
2234
2328
  pubkeyhex: string;
2235
2329
  keylist?: string[] | undefined;
2236
2330
  ClientKeys?: Record<string, string> | undefined;
2331
+ groupId?: string | undefined;
2332
+ GroupId?: string | undefined;
2237
2333
  } | undefined;
2238
2334
  useCustomGas?: unknown;
2239
2335
  chainId?: unknown;
@@ -2265,6 +2361,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
2265
2361
  pubkeyhex: string;
2266
2362
  keylist?: string[] | undefined;
2267
2363
  ClientKeys?: Record<string, string> | undefined;
2364
+ groupId?: string | undefined;
2365
+ GroupId?: string | undefined;
2268
2366
  } | undefined;
2269
2367
  expiryDate?: number | undefined;
2270
2368
  rpcUrl?: string | undefined;
@@ -2294,6 +2392,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
2294
2392
  pubkeyhex: string;
2295
2393
  keylist?: string[] | undefined;
2296
2394
  ClientKeys?: Record<string, string> | undefined;
2395
+ groupId?: string | undefined;
2396
+ GroupId?: string | undefined;
2297
2397
  } | undefined;
2298
2398
  expiryDate?: number | undefined;
2299
2399
  rpcUrl?: string | undefined;
@@ -2608,14 +2708,20 @@ declare const mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema: z.ZodEffec
2608
2708
  pubkeyhex: z.ZodString;
2609
2709
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2610
2710
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2711
+ groupId: z.ZodOptional<z.ZodString>;
2712
+ GroupId: z.ZodOptional<z.ZodString>;
2611
2713
  }, "strip", z.ZodTypeAny, {
2612
2714
  pubkeyhex: string;
2613
2715
  keylist?: string[] | undefined;
2614
2716
  ClientKeys?: Record<string, string> | undefined;
2717
+ groupId?: string | undefined;
2718
+ GroupId?: string | undefined;
2615
2719
  }, {
2616
2720
  pubkeyhex: string;
2617
2721
  keylist?: string[] | undefined;
2618
2722
  ClientKeys?: Record<string, string> | undefined;
2723
+ groupId?: string | undefined;
2724
+ GroupId?: string | undefined;
2619
2725
  }>>;
2620
2726
  purposeText: z.ZodString;
2621
2727
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -2666,6 +2772,8 @@ declare const mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema: z.ZodEffec
2666
2772
  pubkeyhex: string;
2667
2773
  keylist?: string[] | undefined;
2668
2774
  ClientKeys?: Record<string, string> | undefined;
2775
+ groupId?: string | undefined;
2776
+ GroupId?: string | undefined;
2669
2777
  } | undefined;
2670
2778
  issuer?: string | undefined;
2671
2779
  expiryDate?: number | undefined;
@@ -2693,6 +2801,8 @@ declare const mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema: z.ZodEffec
2693
2801
  pubkeyhex: string;
2694
2802
  keylist?: string[] | undefined;
2695
2803
  ClientKeys?: Record<string, string> | undefined;
2804
+ groupId?: string | undefined;
2805
+ GroupId?: string | undefined;
2696
2806
  } | undefined;
2697
2807
  useCustomGas?: unknown;
2698
2808
  issuer?: string | undefined;
@@ -2724,6 +2834,8 @@ declare const mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema: z.ZodEffec
2724
2834
  pubkeyhex: string;
2725
2835
  keylist?: string[] | undefined;
2726
2836
  ClientKeys?: Record<string, string> | undefined;
2837
+ groupId?: string | undefined;
2838
+ GroupId?: string | undefined;
2727
2839
  } | undefined;
2728
2840
  issuer?: string | undefined;
2729
2841
  expiryDate?: number | undefined;
@@ -2753,6 +2865,8 @@ declare const mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema: z.ZodEffec
2753
2865
  pubkeyhex: string;
2754
2866
  keylist?: string[] | undefined;
2755
2867
  ClientKeys?: Record<string, string> | undefined;
2868
+ groupId?: string | undefined;
2869
+ GroupId?: string | undefined;
2756
2870
  } | undefined;
2757
2871
  issuer?: string | undefined;
2758
2872
  expiryDate?: number | undefined;
@@ -2808,14 +2922,20 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffect
2808
2922
  pubkeyhex: z.ZodString;
2809
2923
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2810
2924
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2925
+ groupId: z.ZodOptional<z.ZodString>;
2926
+ GroupId: z.ZodOptional<z.ZodString>;
2811
2927
  }, "strip", z.ZodTypeAny, {
2812
2928
  pubkeyhex: string;
2813
2929
  keylist?: string[] | undefined;
2814
2930
  ClientKeys?: Record<string, string> | undefined;
2931
+ groupId?: string | undefined;
2932
+ GroupId?: string | undefined;
2815
2933
  }, {
2816
2934
  pubkeyhex: string;
2817
2935
  keylist?: string[] | undefined;
2818
2936
  ClientKeys?: Record<string, string> | undefined;
2937
+ groupId?: string | undefined;
2938
+ GroupId?: string | undefined;
2819
2939
  }>>;
2820
2940
  purposeText: z.ZodString;
2821
2941
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -2867,6 +2987,8 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffect
2867
2987
  pubkeyhex: string;
2868
2988
  keylist?: string[] | undefined;
2869
2989
  ClientKeys?: Record<string, string> | undefined;
2990
+ groupId?: string | undefined;
2991
+ GroupId?: string | undefined;
2870
2992
  } | undefined;
2871
2993
  expiryDate?: number | undefined;
2872
2994
  rpcUrl?: string | undefined;
@@ -2893,6 +3015,8 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffect
2893
3015
  pubkeyhex: string;
2894
3016
  keylist?: string[] | undefined;
2895
3017
  ClientKeys?: Record<string, string> | undefined;
3018
+ groupId?: string | undefined;
3019
+ GroupId?: string | undefined;
2896
3020
  } | undefined;
2897
3021
  useCustomGas?: unknown;
2898
3022
  chainId?: unknown;
@@ -2923,6 +3047,8 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffect
2923
3047
  pubkeyhex: string;
2924
3048
  keylist?: string[] | undefined;
2925
3049
  ClientKeys?: Record<string, string> | undefined;
3050
+ groupId?: string | undefined;
3051
+ GroupId?: string | undefined;
2926
3052
  } | undefined;
2927
3053
  expiryDate?: number | undefined;
2928
3054
  rpcUrl?: string | undefined;
@@ -2951,6 +3077,8 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffect
2951
3077
  pubkeyhex: string;
2952
3078
  keylist?: string[] | undefined;
2953
3079
  ClientKeys?: Record<string, string> | undefined;
3080
+ groupId?: string | undefined;
3081
+ GroupId?: string | undefined;
2954
3082
  } | undefined;
2955
3083
  expiryDate?: number | undefined;
2956
3084
  rpcUrl?: string | undefined;
@@ -3037,14 +3165,20 @@ declare const mcpCurveDaoBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Z
3037
3165
  pubkeyhex: z.ZodString;
3038
3166
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3039
3167
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3168
+ groupId: z.ZodOptional<z.ZodString>;
3169
+ GroupId: z.ZodOptional<z.ZodString>;
3040
3170
  }, "strip", z.ZodTypeAny, {
3041
3171
  pubkeyhex: string;
3042
3172
  keylist?: string[] | undefined;
3043
3173
  ClientKeys?: Record<string, string> | undefined;
3174
+ groupId?: string | undefined;
3175
+ GroupId?: string | undefined;
3044
3176
  }, {
3045
3177
  pubkeyhex: string;
3046
3178
  keylist?: string[] | undefined;
3047
3179
  ClientKeys?: Record<string, string> | undefined;
3180
+ groupId?: string | undefined;
3181
+ GroupId?: string | undefined;
3048
3182
  }>>;
3049
3183
  purposeText: z.ZodString;
3050
3184
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -3094,6 +3228,8 @@ declare const mcpCurveDaoBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Z
3094
3228
  pubkeyhex: string;
3095
3229
  keylist?: string[] | undefined;
3096
3230
  ClientKeys?: Record<string, string> | undefined;
3231
+ groupId?: string | undefined;
3232
+ GroupId?: string | undefined;
3097
3233
  } | undefined;
3098
3234
  expiryDate?: number | undefined;
3099
3235
  rpcUrl?: string | undefined;
@@ -3119,6 +3255,8 @@ declare const mcpCurveDaoBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Z
3119
3255
  pubkeyhex: string;
3120
3256
  keylist?: string[] | undefined;
3121
3257
  ClientKeys?: Record<string, string> | undefined;
3258
+ groupId?: string | undefined;
3259
+ GroupId?: string | undefined;
3122
3260
  } | undefined;
3123
3261
  useCustomGas?: unknown;
3124
3262
  chainId?: unknown;
@@ -3148,6 +3286,8 @@ declare const mcpCurveDaoBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Z
3148
3286
  pubkeyhex: string;
3149
3287
  keylist?: string[] | undefined;
3150
3288
  ClientKeys?: Record<string, string> | undefined;
3289
+ groupId?: string | undefined;
3290
+ GroupId?: string | undefined;
3151
3291
  } | undefined;
3152
3292
  expiryDate?: number | undefined;
3153
3293
  rpcUrl?: string | undefined;
@@ -3173,6 +3313,8 @@ declare const mcpCurveDaoBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Z
3173
3313
  pubkeyhex: string;
3174
3314
  keylist?: string[] | undefined;
3175
3315
  ClientKeys?: Record<string, string> | undefined;
3316
+ groupId?: string | undefined;
3317
+ GroupId?: string | undefined;
3176
3318
  } | undefined;
3177
3319
  useCustomGas?: unknown;
3178
3320
  chainId?: unknown;
@@ -3198,14 +3340,20 @@ declare const mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<
3198
3340
  pubkeyhex: z.ZodString;
3199
3341
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3200
3342
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3343
+ groupId: z.ZodOptional<z.ZodString>;
3344
+ GroupId: z.ZodOptional<z.ZodString>;
3201
3345
  }, "strip", z.ZodTypeAny, {
3202
3346
  pubkeyhex: string;
3203
3347
  keylist?: string[] | undefined;
3204
3348
  ClientKeys?: Record<string, string> | undefined;
3349
+ groupId?: string | undefined;
3350
+ GroupId?: string | undefined;
3205
3351
  }, {
3206
3352
  pubkeyhex: string;
3207
3353
  keylist?: string[] | undefined;
3208
3354
  ClientKeys?: Record<string, string> | undefined;
3355
+ groupId?: string | undefined;
3356
+ GroupId?: string | undefined;
3209
3357
  }>>;
3210
3358
  purposeText: z.ZodString;
3211
3359
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -3254,6 +3402,8 @@ declare const mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<
3254
3402
  pubkeyhex: string;
3255
3403
  keylist?: string[] | undefined;
3256
3404
  ClientKeys?: Record<string, string> | undefined;
3405
+ groupId?: string | undefined;
3406
+ GroupId?: string | undefined;
3257
3407
  } | undefined;
3258
3408
  expiryDate?: number | undefined;
3259
3409
  rpcUrl?: string | undefined;
@@ -3278,6 +3428,8 @@ declare const mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<
3278
3428
  pubkeyhex: string;
3279
3429
  keylist?: string[] | undefined;
3280
3430
  ClientKeys?: Record<string, string> | undefined;
3431
+ groupId?: string | undefined;
3432
+ GroupId?: string | undefined;
3281
3433
  } | undefined;
3282
3434
  useCustomGas?: unknown;
3283
3435
  chainId?: unknown;
@@ -3306,6 +3458,8 @@ declare const mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<
3306
3458
  pubkeyhex: string;
3307
3459
  keylist?: string[] | undefined;
3308
3460
  ClientKeys?: Record<string, string> | undefined;
3461
+ groupId?: string | undefined;
3462
+ GroupId?: string | undefined;
3309
3463
  } | undefined;
3310
3464
  expiryDate?: number | undefined;
3311
3465
  rpcUrl?: string | undefined;
@@ -3330,6 +3484,8 @@ declare const mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<
3330
3484
  pubkeyhex: string;
3331
3485
  keylist?: string[] | undefined;
3332
3486
  ClientKeys?: Record<string, string> | undefined;
3487
+ groupId?: string | undefined;
3488
+ GroupId?: string | undefined;
3333
3489
  } | undefined;
3334
3490
  useCustomGas?: unknown;
3335
3491
  chainId?: unknown;
@@ -3354,14 +3510,20 @@ declare const mcpCurveDaoBuildGaugeDepositMultisignInputSchema: z.ZodEffects<z.Z
3354
3510
  pubkeyhex: z.ZodString;
3355
3511
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3356
3512
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3513
+ groupId: z.ZodOptional<z.ZodString>;
3514
+ GroupId: z.ZodOptional<z.ZodString>;
3357
3515
  }, "strip", z.ZodTypeAny, {
3358
3516
  pubkeyhex: string;
3359
3517
  keylist?: string[] | undefined;
3360
3518
  ClientKeys?: Record<string, string> | undefined;
3519
+ groupId?: string | undefined;
3520
+ GroupId?: string | undefined;
3361
3521
  }, {
3362
3522
  pubkeyhex: string;
3363
3523
  keylist?: string[] | undefined;
3364
3524
  ClientKeys?: Record<string, string> | undefined;
3525
+ groupId?: string | undefined;
3526
+ GroupId?: string | undefined;
3365
3527
  }>>;
3366
3528
  purposeText: z.ZodString;
3367
3529
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -3409,6 +3571,8 @@ declare const mcpCurveDaoBuildGaugeDepositMultisignInputSchema: z.ZodEffects<z.Z
3409
3571
  pubkeyhex: string;
3410
3572
  keylist?: string[] | undefined;
3411
3573
  ClientKeys?: Record<string, string> | undefined;
3574
+ groupId?: string | undefined;
3575
+ GroupId?: string | undefined;
3412
3576
  } | undefined;
3413
3577
  expiryDate?: number | undefined;
3414
3578
  rpcUrl?: string | undefined;
@@ -3433,6 +3597,8 @@ declare const mcpCurveDaoBuildGaugeDepositMultisignInputSchema: z.ZodEffects<z.Z
3433
3597
  pubkeyhex: string;
3434
3598
  keylist?: string[] | undefined;
3435
3599
  ClientKeys?: Record<string, string> | undefined;
3600
+ groupId?: string | undefined;
3601
+ GroupId?: string | undefined;
3436
3602
  } | undefined;
3437
3603
  useCustomGas?: unknown;
3438
3604
  chainId?: unknown;
@@ -3461,6 +3627,8 @@ declare const mcpCurveDaoBuildGaugeDepositMultisignInputSchema: z.ZodEffects<z.Z
3461
3627
  pubkeyhex: string;
3462
3628
  keylist?: string[] | undefined;
3463
3629
  ClientKeys?: Record<string, string> | undefined;
3630
+ groupId?: string | undefined;
3631
+ GroupId?: string | undefined;
3464
3632
  } | undefined;
3465
3633
  expiryDate?: number | undefined;
3466
3634
  rpcUrl?: string | undefined;
@@ -3485,6 +3653,8 @@ declare const mcpCurveDaoBuildGaugeDepositMultisignInputSchema: z.ZodEffects<z.Z
3485
3653
  pubkeyhex: string;
3486
3654
  keylist?: string[] | undefined;
3487
3655
  ClientKeys?: Record<string, string> | undefined;
3656
+ groupId?: string | undefined;
3657
+ GroupId?: string | undefined;
3488
3658
  } | undefined;
3489
3659
  useCustomGas?: unknown;
3490
3660
  chainId?: unknown;
@@ -3619,14 +3789,20 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
3619
3789
  pubkeyhex: z.ZodString;
3620
3790
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3621
3791
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3792
+ groupId: z.ZodOptional<z.ZodString>;
3793
+ GroupId: z.ZodOptional<z.ZodString>;
3622
3794
  }, "strip", z.ZodTypeAny, {
3623
3795
  pubkeyhex: string;
3624
3796
  keylist?: string[] | undefined;
3625
3797
  ClientKeys?: Record<string, string> | undefined;
3798
+ groupId?: string | undefined;
3799
+ GroupId?: string | undefined;
3626
3800
  }, {
3627
3801
  pubkeyhex: string;
3628
3802
  keylist?: string[] | undefined;
3629
3803
  ClientKeys?: Record<string, string> | undefined;
3804
+ groupId?: string | undefined;
3805
+ GroupId?: string | undefined;
3630
3806
  }>>;
3631
3807
  purposeText: z.ZodString;
3632
3808
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -3678,6 +3854,8 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
3678
3854
  pubkeyhex: string;
3679
3855
  keylist?: string[] | undefined;
3680
3856
  ClientKeys?: Record<string, string> | undefined;
3857
+ groupId?: string | undefined;
3858
+ GroupId?: string | undefined;
3681
3859
  } | undefined;
3682
3860
  expiryDate?: number | undefined;
3683
3861
  rpcUrl?: string | undefined;
@@ -3704,6 +3882,8 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
3704
3882
  pubkeyhex: string;
3705
3883
  keylist?: string[] | undefined;
3706
3884
  ClientKeys?: Record<string, string> | undefined;
3885
+ groupId?: string | undefined;
3886
+ GroupId?: string | undefined;
3707
3887
  } | undefined;
3708
3888
  useCustomGas?: unknown;
3709
3889
  chainId?: unknown;
@@ -3734,6 +3914,8 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
3734
3914
  pubkeyhex: string;
3735
3915
  keylist?: string[] | undefined;
3736
3916
  ClientKeys?: Record<string, string> | undefined;
3917
+ groupId?: string | undefined;
3918
+ GroupId?: string | undefined;
3737
3919
  } | undefined;
3738
3920
  expiryDate?: number | undefined;
3739
3921
  rpcUrl?: string | undefined;
@@ -3760,6 +3942,8 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
3760
3942
  pubkeyhex: string;
3761
3943
  keylist?: string[] | undefined;
3762
3944
  ClientKeys?: Record<string, string> | undefined;
3945
+ groupId?: string | undefined;
3946
+ GroupId?: string | undefined;
3763
3947
  } | undefined;
3764
3948
  useCustomGas?: unknown;
3765
3949
  chainId?: unknown;
@@ -3872,14 +4056,20 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
3872
4056
  pubkeyhex: z.ZodString;
3873
4057
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3874
4058
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4059
+ groupId: z.ZodOptional<z.ZodString>;
4060
+ GroupId: z.ZodOptional<z.ZodString>;
3875
4061
  }, "strip", z.ZodTypeAny, {
3876
4062
  pubkeyhex: string;
3877
4063
  keylist?: string[] | undefined;
3878
4064
  ClientKeys?: Record<string, string> | undefined;
4065
+ groupId?: string | undefined;
4066
+ GroupId?: string | undefined;
3879
4067
  }, {
3880
4068
  pubkeyhex: string;
3881
4069
  keylist?: string[] | undefined;
3882
4070
  ClientKeys?: Record<string, string> | undefined;
4071
+ groupId?: string | undefined;
4072
+ GroupId?: string | undefined;
3883
4073
  }>>;
3884
4074
  purposeText: z.ZodString;
3885
4075
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -3932,6 +4122,8 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
3932
4122
  pubkeyhex: string;
3933
4123
  keylist?: string[] | undefined;
3934
4124
  ClientKeys?: Record<string, string> | undefined;
4125
+ groupId?: string | undefined;
4126
+ GroupId?: string | undefined;
3935
4127
  } | undefined;
3936
4128
  expiryDate?: number | undefined;
3937
4129
  rpcUrl?: string | undefined;
@@ -3958,6 +4150,8 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
3958
4150
  pubkeyhex: string;
3959
4151
  keylist?: string[] | undefined;
3960
4152
  ClientKeys?: Record<string, string> | undefined;
4153
+ groupId?: string | undefined;
4154
+ GroupId?: string | undefined;
3961
4155
  } | undefined;
3962
4156
  useCustomGas?: unknown;
3963
4157
  chainId?: unknown;
@@ -3990,6 +4184,8 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
3990
4184
  pubkeyhex: string;
3991
4185
  keylist?: string[] | undefined;
3992
4186
  ClientKeys?: Record<string, string> | undefined;
4187
+ groupId?: string | undefined;
4188
+ GroupId?: string | undefined;
3993
4189
  } | undefined;
3994
4190
  expiryDate?: number | undefined;
3995
4191
  rpcUrl?: string | undefined;
@@ -4016,6 +4212,8 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
4016
4212
  pubkeyhex: string;
4017
4213
  keylist?: string[] | undefined;
4018
4214
  ClientKeys?: Record<string, string> | undefined;
4215
+ groupId?: string | undefined;
4216
+ GroupId?: string | undefined;
4019
4217
  } | undefined;
4020
4218
  useCustomGas?: unknown;
4021
4219
  chainId?: unknown;
@@ -4048,6 +4246,8 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
4048
4246
  pubkeyhex: string;
4049
4247
  keylist?: string[] | undefined;
4050
4248
  ClientKeys?: Record<string, string> | undefined;
4249
+ groupId?: string | undefined;
4250
+ GroupId?: string | undefined;
4051
4251
  } | undefined;
4052
4252
  expiryDate?: number | undefined;
4053
4253
  rpcUrl?: string | undefined;
@@ -4074,6 +4274,8 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
4074
4274
  pubkeyhex: string;
4075
4275
  keylist?: string[] | undefined;
4076
4276
  ClientKeys?: Record<string, string> | undefined;
4277
+ groupId?: string | undefined;
4278
+ GroupId?: string | undefined;
4077
4279
  } | undefined;
4078
4280
  useCustomGas?: unknown;
4079
4281
  chainId?: unknown;
@@ -4101,14 +4303,20 @@ declare const mcpAerodromeBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects
4101
4303
  pubkeyhex: z.ZodString;
4102
4304
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4103
4305
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4306
+ groupId: z.ZodOptional<z.ZodString>;
4307
+ GroupId: z.ZodOptional<z.ZodString>;
4104
4308
  }, "strip", z.ZodTypeAny, {
4105
4309
  pubkeyhex: string;
4106
4310
  keylist?: string[] | undefined;
4107
4311
  ClientKeys?: Record<string, string> | undefined;
4312
+ groupId?: string | undefined;
4313
+ GroupId?: string | undefined;
4108
4314
  }, {
4109
4315
  pubkeyhex: string;
4110
4316
  keylist?: string[] | undefined;
4111
4317
  ClientKeys?: Record<string, string> | undefined;
4318
+ groupId?: string | undefined;
4319
+ GroupId?: string | undefined;
4112
4320
  }>>;
4113
4321
  purposeText: z.ZodString;
4114
4322
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -4164,6 +4372,8 @@ declare const mcpAerodromeBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects
4164
4372
  pubkeyhex: string;
4165
4373
  keylist?: string[] | undefined;
4166
4374
  ClientKeys?: Record<string, string> | undefined;
4375
+ groupId?: string | undefined;
4376
+ GroupId?: string | undefined;
4167
4377
  } | undefined;
4168
4378
  expiryDate?: number | undefined;
4169
4379
  rpcUrl?: string | undefined;
@@ -4192,6 +4402,8 @@ declare const mcpAerodromeBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects
4192
4402
  pubkeyhex: string;
4193
4403
  keylist?: string[] | undefined;
4194
4404
  ClientKeys?: Record<string, string> | undefined;
4405
+ groupId?: string | undefined;
4406
+ GroupId?: string | undefined;
4195
4407
  } | undefined;
4196
4408
  useCustomGas?: unknown;
4197
4409
  chainId?: unknown;
@@ -4226,6 +4438,8 @@ declare const mcpAerodromeBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects
4226
4438
  pubkeyhex: string;
4227
4439
  keylist?: string[] | undefined;
4228
4440
  ClientKeys?: Record<string, string> | undefined;
4441
+ groupId?: string | undefined;
4442
+ GroupId?: string | undefined;
4229
4443
  } | undefined;
4230
4444
  expiryDate?: number | undefined;
4231
4445
  rpcUrl?: string | undefined;
@@ -4254,6 +4468,8 @@ declare const mcpAerodromeBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects
4254
4468
  pubkeyhex: string;
4255
4469
  keylist?: string[] | undefined;
4256
4470
  ClientKeys?: Record<string, string> | undefined;
4471
+ groupId?: string | undefined;
4472
+ GroupId?: string | undefined;
4257
4473
  } | undefined;
4258
4474
  useCustomGas?: unknown;
4259
4475
  chainId?: unknown;
@@ -4282,14 +4498,20 @@ declare const mcpAerodromeBuildClMintMultisignInputSchema: z.ZodEffects<z.ZodObj
4282
4498
  pubkeyhex: z.ZodString;
4283
4499
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4284
4500
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4501
+ groupId: z.ZodOptional<z.ZodString>;
4502
+ GroupId: z.ZodOptional<z.ZodString>;
4285
4503
  }, "strip", z.ZodTypeAny, {
4286
4504
  pubkeyhex: string;
4287
4505
  keylist?: string[] | undefined;
4288
4506
  ClientKeys?: Record<string, string> | undefined;
4507
+ groupId?: string | undefined;
4508
+ GroupId?: string | undefined;
4289
4509
  }, {
4290
4510
  pubkeyhex: string;
4291
4511
  keylist?: string[] | undefined;
4292
4512
  ClientKeys?: Record<string, string> | undefined;
4513
+ groupId?: string | undefined;
4514
+ GroupId?: string | undefined;
4293
4515
  }>>;
4294
4516
  purposeText: z.ZodString;
4295
4517
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -4348,6 +4570,8 @@ declare const mcpAerodromeBuildClMintMultisignInputSchema: z.ZodEffects<z.ZodObj
4348
4570
  pubkeyhex: string;
4349
4571
  keylist?: string[] | undefined;
4350
4572
  ClientKeys?: Record<string, string> | undefined;
4573
+ groupId?: string | undefined;
4574
+ GroupId?: string | undefined;
4351
4575
  } | undefined;
4352
4576
  expiryDate?: number | undefined;
4353
4577
  rpcUrl?: string | undefined;
@@ -4378,6 +4602,8 @@ declare const mcpAerodromeBuildClMintMultisignInputSchema: z.ZodEffects<z.ZodObj
4378
4602
  pubkeyhex: string;
4379
4603
  keylist?: string[] | undefined;
4380
4604
  ClientKeys?: Record<string, string> | undefined;
4605
+ groupId?: string | undefined;
4606
+ GroupId?: string | undefined;
4381
4607
  } | undefined;
4382
4608
  useCustomGas?: unknown;
4383
4609
  chainId?: unknown;
@@ -4412,6 +4638,8 @@ declare const mcpAerodromeBuildClMintMultisignInputSchema: z.ZodEffects<z.ZodObj
4412
4638
  pubkeyhex: string;
4413
4639
  keylist?: string[] | undefined;
4414
4640
  ClientKeys?: Record<string, string> | undefined;
4641
+ groupId?: string | undefined;
4642
+ GroupId?: string | undefined;
4415
4643
  } | undefined;
4416
4644
  expiryDate?: number | undefined;
4417
4645
  rpcUrl?: string | undefined;
@@ -4442,6 +4670,8 @@ declare const mcpAerodromeBuildClMintMultisignInputSchema: z.ZodEffects<z.ZodObj
4442
4670
  pubkeyhex: string;
4443
4671
  keylist?: string[] | undefined;
4444
4672
  ClientKeys?: Record<string, string> | undefined;
4673
+ groupId?: string | undefined;
4674
+ GroupId?: string | undefined;
4445
4675
  } | undefined;
4446
4676
  useCustomGas?: unknown;
4447
4677
  chainId?: unknown;
@@ -4468,14 +4698,20 @@ declare const mcpAerodromeBuildClIncreaseMultisignInputSchema: z.ZodEffects<z.Zo
4468
4698
  pubkeyhex: z.ZodString;
4469
4699
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4470
4700
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4701
+ groupId: z.ZodOptional<z.ZodString>;
4702
+ GroupId: z.ZodOptional<z.ZodString>;
4471
4703
  }, "strip", z.ZodTypeAny, {
4472
4704
  pubkeyhex: string;
4473
4705
  keylist?: string[] | undefined;
4474
4706
  ClientKeys?: Record<string, string> | undefined;
4707
+ groupId?: string | undefined;
4708
+ GroupId?: string | undefined;
4475
4709
  }, {
4476
4710
  pubkeyhex: string;
4477
4711
  keylist?: string[] | undefined;
4478
4712
  ClientKeys?: Record<string, string> | undefined;
4713
+ groupId?: string | undefined;
4714
+ GroupId?: string | undefined;
4479
4715
  }>>;
4480
4716
  purposeText: z.ZodString;
4481
4717
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -4530,6 +4766,8 @@ declare const mcpAerodromeBuildClIncreaseMultisignInputSchema: z.ZodEffects<z.Zo
4530
4766
  pubkeyhex: string;
4531
4767
  keylist?: string[] | undefined;
4532
4768
  ClientKeys?: Record<string, string> | undefined;
4769
+ groupId?: string | undefined;
4770
+ GroupId?: string | undefined;
4533
4771
  } | undefined;
4534
4772
  expiryDate?: number | undefined;
4535
4773
  rpcUrl?: string | undefined;
@@ -4557,6 +4795,8 @@ declare const mcpAerodromeBuildClIncreaseMultisignInputSchema: z.ZodEffects<z.Zo
4557
4795
  pubkeyhex: string;
4558
4796
  keylist?: string[] | undefined;
4559
4797
  ClientKeys?: Record<string, string> | undefined;
4798
+ groupId?: string | undefined;
4799
+ GroupId?: string | undefined;
4560
4800
  } | undefined;
4561
4801
  useCustomGas?: unknown;
4562
4802
  chainId?: unknown;
@@ -4588,6 +4828,8 @@ declare const mcpAerodromeBuildClIncreaseMultisignInputSchema: z.ZodEffects<z.Zo
4588
4828
  pubkeyhex: string;
4589
4829
  keylist?: string[] | undefined;
4590
4830
  ClientKeys?: Record<string, string> | undefined;
4831
+ groupId?: string | undefined;
4832
+ GroupId?: string | undefined;
4591
4833
  } | undefined;
4592
4834
  expiryDate?: number | undefined;
4593
4835
  rpcUrl?: string | undefined;
@@ -4615,6 +4857,8 @@ declare const mcpAerodromeBuildClIncreaseMultisignInputSchema: z.ZodEffects<z.Zo
4615
4857
  pubkeyhex: string;
4616
4858
  keylist?: string[] | undefined;
4617
4859
  ClientKeys?: Record<string, string> | undefined;
4860
+ groupId?: string | undefined;
4861
+ GroupId?: string | undefined;
4618
4862
  } | undefined;
4619
4863
  useCustomGas?: unknown;
4620
4864
  chainId?: unknown;
@@ -4639,14 +4883,20 @@ declare const mcpAerodromeBuildClDecreaseMultisignInputSchema: z.ZodEffects<z.Zo
4639
4883
  pubkeyhex: z.ZodString;
4640
4884
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4641
4885
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4886
+ groupId: z.ZodOptional<z.ZodString>;
4887
+ GroupId: z.ZodOptional<z.ZodString>;
4642
4888
  }, "strip", z.ZodTypeAny, {
4643
4889
  pubkeyhex: string;
4644
4890
  keylist?: string[] | undefined;
4645
4891
  ClientKeys?: Record<string, string> | undefined;
4892
+ groupId?: string | undefined;
4893
+ GroupId?: string | undefined;
4646
4894
  }, {
4647
4895
  pubkeyhex: string;
4648
4896
  keylist?: string[] | undefined;
4649
4897
  ClientKeys?: Record<string, string> | undefined;
4898
+ groupId?: string | undefined;
4899
+ GroupId?: string | undefined;
4650
4900
  }>>;
4651
4901
  purposeText: z.ZodString;
4652
4902
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -4695,6 +4945,8 @@ declare const mcpAerodromeBuildClDecreaseMultisignInputSchema: z.ZodEffects<z.Zo
4695
4945
  pubkeyhex: string;
4696
4946
  keylist?: string[] | undefined;
4697
4947
  ClientKeys?: Record<string, string> | undefined;
4948
+ groupId?: string | undefined;
4949
+ GroupId?: string | undefined;
4698
4950
  } | undefined;
4699
4951
  expiryDate?: number | undefined;
4700
4952
  rpcUrl?: string | undefined;
@@ -4720,6 +4972,8 @@ declare const mcpAerodromeBuildClDecreaseMultisignInputSchema: z.ZodEffects<z.Zo
4720
4972
  pubkeyhex: string;
4721
4973
  keylist?: string[] | undefined;
4722
4974
  ClientKeys?: Record<string, string> | undefined;
4975
+ groupId?: string | undefined;
4976
+ GroupId?: string | undefined;
4723
4977
  } | undefined;
4724
4978
  useCustomGas?: unknown;
4725
4979
  chainId?: unknown;
@@ -4749,6 +5003,8 @@ declare const mcpAerodromeBuildClDecreaseMultisignInputSchema: z.ZodEffects<z.Zo
4749
5003
  pubkeyhex: string;
4750
5004
  keylist?: string[] | undefined;
4751
5005
  ClientKeys?: Record<string, string> | undefined;
5006
+ groupId?: string | undefined;
5007
+ GroupId?: string | undefined;
4752
5008
  } | undefined;
4753
5009
  expiryDate?: number | undefined;
4754
5010
  rpcUrl?: string | undefined;
@@ -4774,6 +5030,8 @@ declare const mcpAerodromeBuildClDecreaseMultisignInputSchema: z.ZodEffects<z.Zo
4774
5030
  pubkeyhex: string;
4775
5031
  keylist?: string[] | undefined;
4776
5032
  ClientKeys?: Record<string, string> | undefined;
5033
+ groupId?: string | undefined;
5034
+ GroupId?: string | undefined;
4777
5035
  } | undefined;
4778
5036
  useCustomGas?: unknown;
4779
5037
  chainId?: unknown;
@@ -4800,14 +5058,20 @@ declare const mcpAerodromeBuildClBurnMultisignInputSchema: z.ZodEffects<z.ZodObj
4800
5058
  pubkeyhex: z.ZodString;
4801
5059
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4802
5060
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5061
+ groupId: z.ZodOptional<z.ZodString>;
5062
+ GroupId: z.ZodOptional<z.ZodString>;
4803
5063
  }, "strip", z.ZodTypeAny, {
4804
5064
  pubkeyhex: string;
4805
5065
  keylist?: string[] | undefined;
4806
5066
  ClientKeys?: Record<string, string> | undefined;
5067
+ groupId?: string | undefined;
5068
+ GroupId?: string | undefined;
4807
5069
  }, {
4808
5070
  pubkeyhex: string;
4809
5071
  keylist?: string[] | undefined;
4810
5072
  ClientKeys?: Record<string, string> | undefined;
5073
+ groupId?: string | undefined;
5074
+ GroupId?: string | undefined;
4811
5075
  }>>;
4812
5076
  purposeText: z.ZodString;
4813
5077
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -4852,6 +5116,8 @@ declare const mcpAerodromeBuildClBurnMultisignInputSchema: z.ZodEffects<z.ZodObj
4852
5116
  pubkeyhex: string;
4853
5117
  keylist?: string[] | undefined;
4854
5118
  ClientKeys?: Record<string, string> | undefined;
5119
+ groupId?: string | undefined;
5120
+ GroupId?: string | undefined;
4855
5121
  } | undefined;
4856
5122
  expiryDate?: number | undefined;
4857
5123
  rpcUrl?: string | undefined;
@@ -4874,6 +5140,8 @@ declare const mcpAerodromeBuildClBurnMultisignInputSchema: z.ZodEffects<z.ZodObj
4874
5140
  pubkeyhex: string;
4875
5141
  keylist?: string[] | undefined;
4876
5142
  ClientKeys?: Record<string, string> | undefined;
5143
+ groupId?: string | undefined;
5144
+ GroupId?: string | undefined;
4877
5145
  } | undefined;
4878
5146
  useCustomGas?: unknown;
4879
5147
  chainId?: unknown;
@@ -4900,6 +5168,8 @@ declare const mcpAerodromeBuildClBurnMultisignInputSchema: z.ZodEffects<z.ZodObj
4900
5168
  pubkeyhex: string;
4901
5169
  keylist?: string[] | undefined;
4902
5170
  ClientKeys?: Record<string, string> | undefined;
5171
+ groupId?: string | undefined;
5172
+ GroupId?: string | undefined;
4903
5173
  } | undefined;
4904
5174
  expiryDate?: number | undefined;
4905
5175
  rpcUrl?: string | undefined;
@@ -4922,6 +5192,8 @@ declare const mcpAerodromeBuildClBurnMultisignInputSchema: z.ZodEffects<z.ZodObj
4922
5192
  pubkeyhex: string;
4923
5193
  keylist?: string[] | undefined;
4924
5194
  ClientKeys?: Record<string, string> | undefined;
5195
+ groupId?: string | undefined;
5196
+ GroupId?: string | undefined;
4925
5197
  } | undefined;
4926
5198
  useCustomGas?: unknown;
4927
5199
  chainId?: unknown;
@@ -4946,14 +5218,20 @@ declare const mcpAerodromeBuildGaugeStakeMultisignInputSchema: z.ZodEffects<z.Zo
4946
5218
  pubkeyhex: z.ZodString;
4947
5219
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4948
5220
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5221
+ groupId: z.ZodOptional<z.ZodString>;
5222
+ GroupId: z.ZodOptional<z.ZodString>;
4949
5223
  }, "strip", z.ZodTypeAny, {
4950
5224
  pubkeyhex: string;
4951
5225
  keylist?: string[] | undefined;
4952
5226
  ClientKeys?: Record<string, string> | undefined;
5227
+ groupId?: string | undefined;
5228
+ GroupId?: string | undefined;
4953
5229
  }, {
4954
5230
  pubkeyhex: string;
4955
5231
  keylist?: string[] | undefined;
4956
5232
  ClientKeys?: Record<string, string> | undefined;
5233
+ groupId?: string | undefined;
5234
+ GroupId?: string | undefined;
4957
5235
  }>>;
4958
5236
  purposeText: z.ZodString;
4959
5237
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -5004,6 +5282,8 @@ declare const mcpAerodromeBuildGaugeStakeMultisignInputSchema: z.ZodEffects<z.Zo
5004
5282
  pubkeyhex: string;
5005
5283
  keylist?: string[] | undefined;
5006
5284
  ClientKeys?: Record<string, string> | undefined;
5285
+ groupId?: string | undefined;
5286
+ GroupId?: string | undefined;
5007
5287
  } | undefined;
5008
5288
  expiryDate?: number | undefined;
5009
5289
  rpcUrl?: string | undefined;
@@ -5030,6 +5310,8 @@ declare const mcpAerodromeBuildGaugeStakeMultisignInputSchema: z.ZodEffects<z.Zo
5030
5310
  pubkeyhex: string;
5031
5311
  keylist?: string[] | undefined;
5032
5312
  ClientKeys?: Record<string, string> | undefined;
5313
+ groupId?: string | undefined;
5314
+ GroupId?: string | undefined;
5033
5315
  } | undefined;
5034
5316
  useCustomGas?: unknown;
5035
5317
  chainId?: unknown;
@@ -5062,6 +5344,8 @@ declare const mcpAerodromeBuildGaugeStakeMultisignInputSchema: z.ZodEffects<z.Zo
5062
5344
  pubkeyhex: string;
5063
5345
  keylist?: string[] | undefined;
5064
5346
  ClientKeys?: Record<string, string> | undefined;
5347
+ groupId?: string | undefined;
5348
+ GroupId?: string | undefined;
5065
5349
  } | undefined;
5066
5350
  expiryDate?: number | undefined;
5067
5351
  rpcUrl?: string | undefined;
@@ -5088,6 +5372,8 @@ declare const mcpAerodromeBuildGaugeStakeMultisignInputSchema: z.ZodEffects<z.Zo
5088
5372
  pubkeyhex: string;
5089
5373
  keylist?: string[] | undefined;
5090
5374
  ClientKeys?: Record<string, string> | undefined;
5375
+ groupId?: string | undefined;
5376
+ GroupId?: string | undefined;
5091
5377
  } | undefined;
5092
5378
  useCustomGas?: unknown;
5093
5379
  chainId?: unknown;
@@ -5117,14 +5403,20 @@ declare const mcpAerodromeBuildGaugeUnstakeMultisignInputSchema: z.ZodEffects<z.
5117
5403
  pubkeyhex: z.ZodString;
5118
5404
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5119
5405
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5406
+ groupId: z.ZodOptional<z.ZodString>;
5407
+ GroupId: z.ZodOptional<z.ZodString>;
5120
5408
  }, "strip", z.ZodTypeAny, {
5121
5409
  pubkeyhex: string;
5122
5410
  keylist?: string[] | undefined;
5123
5411
  ClientKeys?: Record<string, string> | undefined;
5412
+ groupId?: string | undefined;
5413
+ GroupId?: string | undefined;
5124
5414
  }, {
5125
5415
  pubkeyhex: string;
5126
5416
  keylist?: string[] | undefined;
5127
5417
  ClientKeys?: Record<string, string> | undefined;
5418
+ groupId?: string | undefined;
5419
+ GroupId?: string | undefined;
5128
5420
  }>>;
5129
5421
  purposeText: z.ZodString;
5130
5422
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -5174,6 +5466,8 @@ declare const mcpAerodromeBuildGaugeUnstakeMultisignInputSchema: z.ZodEffects<z.
5174
5466
  pubkeyhex: string;
5175
5467
  keylist?: string[] | undefined;
5176
5468
  ClientKeys?: Record<string, string> | undefined;
5469
+ groupId?: string | undefined;
5470
+ GroupId?: string | undefined;
5177
5471
  } | undefined;
5178
5472
  expiryDate?: number | undefined;
5179
5473
  rpcUrl?: string | undefined;
@@ -5199,6 +5493,8 @@ declare const mcpAerodromeBuildGaugeUnstakeMultisignInputSchema: z.ZodEffects<z.
5199
5493
  pubkeyhex: string;
5200
5494
  keylist?: string[] | undefined;
5201
5495
  ClientKeys?: Record<string, string> | undefined;
5496
+ groupId?: string | undefined;
5497
+ GroupId?: string | undefined;
5202
5498
  } | undefined;
5203
5499
  useCustomGas?: unknown;
5204
5500
  chainId?: unknown;
@@ -5230,6 +5526,8 @@ declare const mcpAerodromeBuildGaugeUnstakeMultisignInputSchema: z.ZodEffects<z.
5230
5526
  pubkeyhex: string;
5231
5527
  keylist?: string[] | undefined;
5232
5528
  ClientKeys?: Record<string, string> | undefined;
5529
+ groupId?: string | undefined;
5530
+ GroupId?: string | undefined;
5233
5531
  } | undefined;
5234
5532
  expiryDate?: number | undefined;
5235
5533
  rpcUrl?: string | undefined;
@@ -5255,6 +5553,8 @@ declare const mcpAerodromeBuildGaugeUnstakeMultisignInputSchema: z.ZodEffects<z.
5255
5553
  pubkeyhex: string;
5256
5554
  keylist?: string[] | undefined;
5257
5555
  ClientKeys?: Record<string, string> | undefined;
5556
+ groupId?: string | undefined;
5557
+ GroupId?: string | undefined;
5258
5558
  } | undefined;
5259
5559
  useCustomGas?: unknown;
5260
5560
  chainId?: unknown;
@@ -5283,14 +5583,20 @@ declare const mcpAerodromeBuildClaimFeesMultisignInputSchema: z.ZodEffects<z.Zod
5283
5583
  pubkeyhex: z.ZodString;
5284
5584
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5285
5585
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5586
+ groupId: z.ZodOptional<z.ZodString>;
5587
+ GroupId: z.ZodOptional<z.ZodString>;
5286
5588
  }, "strip", z.ZodTypeAny, {
5287
5589
  pubkeyhex: string;
5288
5590
  keylist?: string[] | undefined;
5289
5591
  ClientKeys?: Record<string, string> | undefined;
5592
+ groupId?: string | undefined;
5593
+ GroupId?: string | undefined;
5290
5594
  }, {
5291
5595
  pubkeyhex: string;
5292
5596
  keylist?: string[] | undefined;
5293
5597
  ClientKeys?: Record<string, string> | undefined;
5598
+ groupId?: string | undefined;
5599
+ GroupId?: string | undefined;
5294
5600
  }>>;
5295
5601
  purposeText: z.ZodString;
5296
5602
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -5335,6 +5641,8 @@ declare const mcpAerodromeBuildClaimFeesMultisignInputSchema: z.ZodEffects<z.Zod
5335
5641
  pubkeyhex: string;
5336
5642
  keylist?: string[] | undefined;
5337
5643
  ClientKeys?: Record<string, string> | undefined;
5644
+ groupId?: string | undefined;
5645
+ GroupId?: string | undefined;
5338
5646
  } | undefined;
5339
5647
  expiryDate?: number | undefined;
5340
5648
  rpcUrl?: string | undefined;
@@ -5357,6 +5665,8 @@ declare const mcpAerodromeBuildClaimFeesMultisignInputSchema: z.ZodEffects<z.Zod
5357
5665
  pubkeyhex: string;
5358
5666
  keylist?: string[] | undefined;
5359
5667
  ClientKeys?: Record<string, string> | undefined;
5668
+ groupId?: string | undefined;
5669
+ GroupId?: string | undefined;
5360
5670
  } | undefined;
5361
5671
  useCustomGas?: unknown;
5362
5672
  chainId?: unknown;
@@ -5383,6 +5693,8 @@ declare const mcpAerodromeBuildClaimFeesMultisignInputSchema: z.ZodEffects<z.Zod
5383
5693
  pubkeyhex: string;
5384
5694
  keylist?: string[] | undefined;
5385
5695
  ClientKeys?: Record<string, string> | undefined;
5696
+ groupId?: string | undefined;
5697
+ GroupId?: string | undefined;
5386
5698
  } | undefined;
5387
5699
  expiryDate?: number | undefined;
5388
5700
  rpcUrl?: string | undefined;
@@ -5405,6 +5717,8 @@ declare const mcpAerodromeBuildClaimFeesMultisignInputSchema: z.ZodEffects<z.Zod
5405
5717
  pubkeyhex: string;
5406
5718
  keylist?: string[] | undefined;
5407
5719
  ClientKeys?: Record<string, string> | undefined;
5720
+ groupId?: string | undefined;
5721
+ GroupId?: string | undefined;
5408
5722
  } | undefined;
5409
5723
  useCustomGas?: unknown;
5410
5724
  chainId?: unknown;
@@ -5429,14 +5743,20 @@ declare const mcpAerodromeBuildClCollectFeesMultisignInputSchema: z.ZodEffects<z
5429
5743
  pubkeyhex: z.ZodString;
5430
5744
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5431
5745
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5746
+ groupId: z.ZodOptional<z.ZodString>;
5747
+ GroupId: z.ZodOptional<z.ZodString>;
5432
5748
  }, "strip", z.ZodTypeAny, {
5433
5749
  pubkeyhex: string;
5434
5750
  keylist?: string[] | undefined;
5435
5751
  ClientKeys?: Record<string, string> | undefined;
5752
+ groupId?: string | undefined;
5753
+ GroupId?: string | undefined;
5436
5754
  }, {
5437
5755
  pubkeyhex: string;
5438
5756
  keylist?: string[] | undefined;
5439
5757
  ClientKeys?: Record<string, string> | undefined;
5758
+ groupId?: string | undefined;
5759
+ GroupId?: string | undefined;
5440
5760
  }>>;
5441
5761
  purposeText: z.ZodString;
5442
5762
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -5481,6 +5801,8 @@ declare const mcpAerodromeBuildClCollectFeesMultisignInputSchema: z.ZodEffects<z
5481
5801
  pubkeyhex: string;
5482
5802
  keylist?: string[] | undefined;
5483
5803
  ClientKeys?: Record<string, string> | undefined;
5804
+ groupId?: string | undefined;
5805
+ GroupId?: string | undefined;
5484
5806
  } | undefined;
5485
5807
  expiryDate?: number | undefined;
5486
5808
  rpcUrl?: string | undefined;
@@ -5503,6 +5825,8 @@ declare const mcpAerodromeBuildClCollectFeesMultisignInputSchema: z.ZodEffects<z
5503
5825
  pubkeyhex: string;
5504
5826
  keylist?: string[] | undefined;
5505
5827
  ClientKeys?: Record<string, string> | undefined;
5828
+ groupId?: string | undefined;
5829
+ GroupId?: string | undefined;
5506
5830
  } | undefined;
5507
5831
  useCustomGas?: unknown;
5508
5832
  chainId?: unknown;
@@ -5529,6 +5853,8 @@ declare const mcpAerodromeBuildClCollectFeesMultisignInputSchema: z.ZodEffects<z
5529
5853
  pubkeyhex: string;
5530
5854
  keylist?: string[] | undefined;
5531
5855
  ClientKeys?: Record<string, string> | undefined;
5856
+ groupId?: string | undefined;
5857
+ GroupId?: string | undefined;
5532
5858
  } | undefined;
5533
5859
  expiryDate?: number | undefined;
5534
5860
  rpcUrl?: string | undefined;
@@ -5551,6 +5877,8 @@ declare const mcpAerodromeBuildClCollectFeesMultisignInputSchema: z.ZodEffects<z
5551
5877
  pubkeyhex: string;
5552
5878
  keylist?: string[] | undefined;
5553
5879
  ClientKeys?: Record<string, string> | undefined;
5880
+ groupId?: string | undefined;
5881
+ GroupId?: string | undefined;
5554
5882
  } | undefined;
5555
5883
  useCustomGas?: unknown;
5556
5884
  chainId?: unknown;
@@ -5575,14 +5903,20 @@ declare const mcpAerodromeBuildClaimEmissionsMultisignInputSchema: z.ZodEffects<
5575
5903
  pubkeyhex: z.ZodString;
5576
5904
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5577
5905
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5906
+ groupId: z.ZodOptional<z.ZodString>;
5907
+ GroupId: z.ZodOptional<z.ZodString>;
5578
5908
  }, "strip", z.ZodTypeAny, {
5579
5909
  pubkeyhex: string;
5580
5910
  keylist?: string[] | undefined;
5581
5911
  ClientKeys?: Record<string, string> | undefined;
5912
+ groupId?: string | undefined;
5913
+ GroupId?: string | undefined;
5582
5914
  }, {
5583
5915
  pubkeyhex: string;
5584
5916
  keylist?: string[] | undefined;
5585
5917
  ClientKeys?: Record<string, string> | undefined;
5918
+ groupId?: string | undefined;
5919
+ GroupId?: string | undefined;
5586
5920
  }>>;
5587
5921
  purposeText: z.ZodString;
5588
5922
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -5630,6 +5964,8 @@ declare const mcpAerodromeBuildClaimEmissionsMultisignInputSchema: z.ZodEffects<
5630
5964
  pubkeyhex: string;
5631
5965
  keylist?: string[] | undefined;
5632
5966
  ClientKeys?: Record<string, string> | undefined;
5967
+ groupId?: string | undefined;
5968
+ GroupId?: string | undefined;
5633
5969
  } | undefined;
5634
5970
  expiryDate?: number | undefined;
5635
5971
  rpcUrl?: string | undefined;
@@ -5653,6 +5989,8 @@ declare const mcpAerodromeBuildClaimEmissionsMultisignInputSchema: z.ZodEffects<
5653
5989
  pubkeyhex: string;
5654
5990
  keylist?: string[] | undefined;
5655
5991
  ClientKeys?: Record<string, string> | undefined;
5992
+ groupId?: string | undefined;
5993
+ GroupId?: string | undefined;
5656
5994
  } | undefined;
5657
5995
  useCustomGas?: unknown;
5658
5996
  chainId?: unknown;
@@ -5682,6 +6020,8 @@ declare const mcpAerodromeBuildClaimEmissionsMultisignInputSchema: z.ZodEffects<
5682
6020
  pubkeyhex: string;
5683
6021
  keylist?: string[] | undefined;
5684
6022
  ClientKeys?: Record<string, string> | undefined;
6023
+ groupId?: string | undefined;
6024
+ GroupId?: string | undefined;
5685
6025
  } | undefined;
5686
6026
  expiryDate?: number | undefined;
5687
6027
  rpcUrl?: string | undefined;
@@ -5705,6 +6045,8 @@ declare const mcpAerodromeBuildClaimEmissionsMultisignInputSchema: z.ZodEffects<
5705
6045
  pubkeyhex: string;
5706
6046
  keylist?: string[] | undefined;
5707
6047
  ClientKeys?: Record<string, string> | undefined;
6048
+ groupId?: string | undefined;
6049
+ GroupId?: string | undefined;
5708
6050
  } | undefined;
5709
6051
  useCustomGas?: unknown;
5710
6052
  chainId?: unknown;
@@ -5987,14 +6329,20 @@ declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
5987
6329
  pubkeyhex: z.ZodString;
5988
6330
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5989
6331
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
6332
+ groupId: z.ZodOptional<z.ZodString>;
6333
+ GroupId: z.ZodOptional<z.ZodString>;
5990
6334
  }, "strip", z.ZodTypeAny, {
5991
6335
  pubkeyhex: string;
5992
6336
  keylist?: string[] | undefined;
5993
6337
  ClientKeys?: Record<string, string> | undefined;
6338
+ groupId?: string | undefined;
6339
+ GroupId?: string | undefined;
5994
6340
  }, {
5995
6341
  pubkeyhex: string;
5996
6342
  keylist?: string[] | undefined;
5997
6343
  ClientKeys?: Record<string, string> | undefined;
6344
+ groupId?: string | undefined;
6345
+ GroupId?: string | undefined;
5998
6346
  }>>;
5999
6347
  purposeText: z.ZodString;
6000
6348
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -6044,6 +6392,8 @@ declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
6044
6392
  pubkeyhex: string;
6045
6393
  keylist?: string[] | undefined;
6046
6394
  ClientKeys?: Record<string, string> | undefined;
6395
+ groupId?: string | undefined;
6396
+ GroupId?: string | undefined;
6047
6397
  } | undefined;
6048
6398
  expiryDate?: number | undefined;
6049
6399
  rpcUrl?: string | undefined;
@@ -6070,6 +6420,8 @@ declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
6070
6420
  pubkeyhex: string;
6071
6421
  keylist?: string[] | undefined;
6072
6422
  ClientKeys?: Record<string, string> | undefined;
6423
+ groupId?: string | undefined;
6424
+ GroupId?: string | undefined;
6073
6425
  } | undefined;
6074
6426
  useCustomGas?: unknown;
6075
6427
  chainId?: unknown;
@@ -6100,6 +6452,8 @@ declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
6100
6452
  pubkeyhex: string;
6101
6453
  keylist?: string[] | undefined;
6102
6454
  ClientKeys?: Record<string, string> | undefined;
6455
+ groupId?: string | undefined;
6456
+ GroupId?: string | undefined;
6103
6457
  } | undefined;
6104
6458
  expiryDate?: number | undefined;
6105
6459
  rpcUrl?: string | undefined;
@@ -6128,6 +6482,8 @@ declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
6128
6482
  pubkeyhex: string;
6129
6483
  keylist?: string[] | undefined;
6130
6484
  ClientKeys?: Record<string, string> | undefined;
6485
+ groupId?: string | undefined;
6486
+ GroupId?: string | undefined;
6131
6487
  } | undefined;
6132
6488
  expiryDate?: number | undefined;
6133
6489
  rpcUrl?: string | undefined;
@@ -6468,14 +6824,20 @@ declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
6468
6824
  pubkeyhex: z.ZodString;
6469
6825
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6470
6826
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
6827
+ groupId: z.ZodOptional<z.ZodString>;
6828
+ GroupId: z.ZodOptional<z.ZodString>;
6471
6829
  }, "strip", z.ZodTypeAny, {
6472
6830
  pubkeyhex: string;
6473
6831
  keylist?: string[] | undefined;
6474
6832
  ClientKeys?: Record<string, string> | undefined;
6833
+ groupId?: string | undefined;
6834
+ GroupId?: string | undefined;
6475
6835
  }, {
6476
6836
  pubkeyhex: string;
6477
6837
  keylist?: string[] | undefined;
6478
6838
  ClientKeys?: Record<string, string> | undefined;
6839
+ groupId?: string | undefined;
6840
+ GroupId?: string | undefined;
6479
6841
  }>>;
6480
6842
  purposeText: z.ZodString;
6481
6843
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -6528,6 +6890,8 @@ declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
6528
6890
  pubkeyhex: string;
6529
6891
  keylist?: string[] | undefined;
6530
6892
  ClientKeys?: Record<string, string> | undefined;
6893
+ groupId?: string | undefined;
6894
+ GroupId?: string | undefined;
6531
6895
  } | undefined;
6532
6896
  expiryDate?: number | undefined;
6533
6897
  rpcUrl?: string | undefined;
@@ -6556,6 +6920,8 @@ declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
6556
6920
  pubkeyhex: string;
6557
6921
  keylist?: string[] | undefined;
6558
6922
  ClientKeys?: Record<string, string> | undefined;
6923
+ groupId?: string | undefined;
6924
+ GroupId?: string | undefined;
6559
6925
  } | undefined;
6560
6926
  useCustomGas?: unknown;
6561
6927
  chainId?: unknown;
@@ -6588,6 +6954,8 @@ declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
6588
6954
  pubkeyhex: string;
6589
6955
  keylist?: string[] | undefined;
6590
6956
  ClientKeys?: Record<string, string> | undefined;
6957
+ groupId?: string | undefined;
6958
+ GroupId?: string | undefined;
6591
6959
  } | undefined;
6592
6960
  expiryDate?: number | undefined;
6593
6961
  rpcUrl?: string | undefined;
@@ -6618,6 +6986,8 @@ declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
6618
6986
  pubkeyhex: string;
6619
6987
  keylist?: string[] | undefined;
6620
6988
  ClientKeys?: Record<string, string> | undefined;
6989
+ groupId?: string | undefined;
6990
+ GroupId?: string | undefined;
6621
6991
  } | undefined;
6622
6992
  expiryDate?: number | undefined;
6623
6993
  rpcUrl?: string | undefined;
@@ -6644,14 +7014,20 @@ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
6644
7014
  pubkeyhex: z.ZodString;
6645
7015
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6646
7016
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7017
+ groupId: z.ZodOptional<z.ZodString>;
7018
+ GroupId: z.ZodOptional<z.ZodString>;
6647
7019
  }, "strip", z.ZodTypeAny, {
6648
7020
  pubkeyhex: string;
6649
7021
  keylist?: string[] | undefined;
6650
7022
  ClientKeys?: Record<string, string> | undefined;
7023
+ groupId?: string | undefined;
7024
+ GroupId?: string | undefined;
6651
7025
  }, {
6652
7026
  pubkeyhex: string;
6653
7027
  keylist?: string[] | undefined;
6654
7028
  ClientKeys?: Record<string, string> | undefined;
7029
+ groupId?: string | undefined;
7030
+ GroupId?: string | undefined;
6655
7031
  }>>;
6656
7032
  purposeText: z.ZodString;
6657
7033
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -6701,6 +7077,8 @@ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
6701
7077
  pubkeyhex: string;
6702
7078
  keylist?: string[] | undefined;
6703
7079
  ClientKeys?: Record<string, string> | undefined;
7080
+ groupId?: string | undefined;
7081
+ GroupId?: string | undefined;
6704
7082
  } | undefined;
6705
7083
  expiryDate?: number | undefined;
6706
7084
  rpcUrl?: string | undefined;
@@ -6727,6 +7105,8 @@ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
6727
7105
  pubkeyhex: string;
6728
7106
  keylist?: string[] | undefined;
6729
7107
  ClientKeys?: Record<string, string> | undefined;
7108
+ groupId?: string | undefined;
7109
+ GroupId?: string | undefined;
6730
7110
  } | undefined;
6731
7111
  useCustomGas?: unknown;
6732
7112
  chainId?: unknown;
@@ -6757,6 +7137,8 @@ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
6757
7137
  pubkeyhex: string;
6758
7138
  keylist?: string[] | undefined;
6759
7139
  ClientKeys?: Record<string, string> | undefined;
7140
+ groupId?: string | undefined;
7141
+ GroupId?: string | undefined;
6760
7142
  } | undefined;
6761
7143
  expiryDate?: number | undefined;
6762
7144
  rpcUrl?: string | undefined;
@@ -6785,6 +7167,8 @@ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
6785
7167
  pubkeyhex: string;
6786
7168
  keylist?: string[] | undefined;
6787
7169
  ClientKeys?: Record<string, string> | undefined;
7170
+ groupId?: string | undefined;
7171
+ GroupId?: string | undefined;
6788
7172
  } | undefined;
6789
7173
  expiryDate?: number | undefined;
6790
7174
  rpcUrl?: string | undefined;
@@ -6810,14 +7194,20 @@ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodEffec
6810
7194
  pubkeyhex: z.ZodString;
6811
7195
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6812
7196
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7197
+ groupId: z.ZodOptional<z.ZodString>;
7198
+ GroupId: z.ZodOptional<z.ZodString>;
6813
7199
  }, "strip", z.ZodTypeAny, {
6814
7200
  pubkeyhex: string;
6815
7201
  keylist?: string[] | undefined;
6816
7202
  ClientKeys?: Record<string, string> | undefined;
7203
+ groupId?: string | undefined;
7204
+ GroupId?: string | undefined;
6817
7205
  }, {
6818
7206
  pubkeyhex: string;
6819
7207
  keylist?: string[] | undefined;
6820
7208
  ClientKeys?: Record<string, string> | undefined;
7209
+ groupId?: string | undefined;
7210
+ GroupId?: string | undefined;
6821
7211
  }>>;
6822
7212
  purposeText: z.ZodString;
6823
7213
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -6868,6 +7258,8 @@ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodEffec
6868
7258
  pubkeyhex: string;
6869
7259
  keylist?: string[] | undefined;
6870
7260
  ClientKeys?: Record<string, string> | undefined;
7261
+ groupId?: string | undefined;
7262
+ GroupId?: string | undefined;
6871
7263
  } | undefined;
6872
7264
  expiryDate?: number | undefined;
6873
7265
  rpcUrl?: string | undefined;
@@ -6894,6 +7286,8 @@ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodEffec
6894
7286
  pubkeyhex: string;
6895
7287
  keylist?: string[] | undefined;
6896
7288
  ClientKeys?: Record<string, string> | undefined;
7289
+ groupId?: string | undefined;
7290
+ GroupId?: string | undefined;
6897
7291
  } | undefined;
6898
7292
  useCustomGas?: unknown;
6899
7293
  chainId?: unknown;
@@ -6924,6 +7318,8 @@ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodEffec
6924
7318
  pubkeyhex: string;
6925
7319
  keylist?: string[] | undefined;
6926
7320
  ClientKeys?: Record<string, string> | undefined;
7321
+ groupId?: string | undefined;
7322
+ GroupId?: string | undefined;
6927
7323
  } | undefined;
6928
7324
  expiryDate?: number | undefined;
6929
7325
  rpcUrl?: string | undefined;
@@ -6952,6 +7348,8 @@ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodEffec
6952
7348
  pubkeyhex: string;
6953
7349
  keylist?: string[] | undefined;
6954
7350
  ClientKeys?: Record<string, string> | undefined;
7351
+ groupId?: string | undefined;
7352
+ GroupId?: string | undefined;
6955
7353
  } | undefined;
6956
7354
  expiryDate?: number | undefined;
6957
7355
  rpcUrl?: string | undefined;
@@ -6976,14 +7374,20 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
6976
7374
  pubkeyhex: z.ZodString;
6977
7375
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6978
7376
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7377
+ groupId: z.ZodOptional<z.ZodString>;
7378
+ GroupId: z.ZodOptional<z.ZodString>;
6979
7379
  }, "strip", z.ZodTypeAny, {
6980
7380
  pubkeyhex: string;
6981
7381
  keylist?: string[] | undefined;
6982
7382
  ClientKeys?: Record<string, string> | undefined;
7383
+ groupId?: string | undefined;
7384
+ GroupId?: string | undefined;
6983
7385
  }, {
6984
7386
  pubkeyhex: string;
6985
7387
  keylist?: string[] | undefined;
6986
7388
  ClientKeys?: Record<string, string> | undefined;
7389
+ groupId?: string | undefined;
7390
+ GroupId?: string | undefined;
6987
7391
  }>>;
6988
7392
  purposeText: z.ZodString;
6989
7393
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -7032,6 +7436,8 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
7032
7436
  pubkeyhex: string;
7033
7437
  keylist?: string[] | undefined;
7034
7438
  ClientKeys?: Record<string, string> | undefined;
7439
+ groupId?: string | undefined;
7440
+ GroupId?: string | undefined;
7035
7441
  } | undefined;
7036
7442
  expiryDate?: number | undefined;
7037
7443
  rpcUrl?: string | undefined;
@@ -7056,6 +7462,8 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
7056
7462
  pubkeyhex: string;
7057
7463
  keylist?: string[] | undefined;
7058
7464
  ClientKeys?: Record<string, string> | undefined;
7465
+ groupId?: string | undefined;
7466
+ GroupId?: string | undefined;
7059
7467
  } | undefined;
7060
7468
  useCustomGas?: unknown;
7061
7469
  chainId?: unknown;
@@ -7084,6 +7492,8 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
7084
7492
  pubkeyhex: string;
7085
7493
  keylist?: string[] | undefined;
7086
7494
  ClientKeys?: Record<string, string> | undefined;
7495
+ groupId?: string | undefined;
7496
+ GroupId?: string | undefined;
7087
7497
  } | undefined;
7088
7498
  expiryDate?: number | undefined;
7089
7499
  rpcUrl?: string | undefined;
@@ -7110,6 +7520,8 @@ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObj
7110
7520
  pubkeyhex: string;
7111
7521
  keylist?: string[] | undefined;
7112
7522
  ClientKeys?: Record<string, string> | undefined;
7523
+ groupId?: string | undefined;
7524
+ GroupId?: string | undefined;
7113
7525
  } | undefined;
7114
7526
  expiryDate?: number | undefined;
7115
7527
  rpcUrl?: string | undefined;
@@ -7132,14 +7544,20 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
7132
7544
  pubkeyhex: z.ZodString;
7133
7545
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7134
7546
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7547
+ groupId: z.ZodOptional<z.ZodString>;
7548
+ GroupId: z.ZodOptional<z.ZodString>;
7135
7549
  }, "strip", z.ZodTypeAny, {
7136
7550
  pubkeyhex: string;
7137
7551
  keylist?: string[] | undefined;
7138
7552
  ClientKeys?: Record<string, string> | undefined;
7553
+ groupId?: string | undefined;
7554
+ GroupId?: string | undefined;
7139
7555
  }, {
7140
7556
  pubkeyhex: string;
7141
7557
  keylist?: string[] | undefined;
7142
7558
  ClientKeys?: Record<string, string> | undefined;
7559
+ groupId?: string | undefined;
7560
+ GroupId?: string | undefined;
7143
7561
  }>>;
7144
7562
  purposeText: z.ZodString;
7145
7563
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -7188,6 +7606,8 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
7188
7606
  pubkeyhex: string;
7189
7607
  keylist?: string[] | undefined;
7190
7608
  ClientKeys?: Record<string, string> | undefined;
7609
+ groupId?: string | undefined;
7610
+ GroupId?: string | undefined;
7191
7611
  } | undefined;
7192
7612
  expiryDate?: number | undefined;
7193
7613
  rpcUrl?: string | undefined;
@@ -7212,6 +7632,8 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
7212
7632
  pubkeyhex: string;
7213
7633
  keylist?: string[] | undefined;
7214
7634
  ClientKeys?: Record<string, string> | undefined;
7635
+ groupId?: string | undefined;
7636
+ GroupId?: string | undefined;
7215
7637
  } | undefined;
7216
7638
  useCustomGas?: unknown;
7217
7639
  chainId?: unknown;
@@ -7240,6 +7662,8 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
7240
7662
  pubkeyhex: string;
7241
7663
  keylist?: string[] | undefined;
7242
7664
  ClientKeys?: Record<string, string> | undefined;
7665
+ groupId?: string | undefined;
7666
+ GroupId?: string | undefined;
7243
7667
  } | undefined;
7244
7668
  expiryDate?: number | undefined;
7245
7669
  rpcUrl?: string | undefined;
@@ -7266,6 +7690,8 @@ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObje
7266
7690
  pubkeyhex: string;
7267
7691
  keylist?: string[] | undefined;
7268
7692
  ClientKeys?: Record<string, string> | undefined;
7693
+ groupId?: string | undefined;
7694
+ GroupId?: string | undefined;
7269
7695
  } | undefined;
7270
7696
  expiryDate?: number | undefined;
7271
7697
  rpcUrl?: string | undefined;
@@ -7310,14 +7736,20 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
7310
7736
  pubkeyhex: z.ZodString;
7311
7737
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7312
7738
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7739
+ groupId: z.ZodOptional<z.ZodString>;
7740
+ GroupId: z.ZodOptional<z.ZodString>;
7313
7741
  }, "strip", z.ZodTypeAny, {
7314
7742
  pubkeyhex: string;
7315
7743
  keylist?: string[] | undefined;
7316
7744
  ClientKeys?: Record<string, string> | undefined;
7745
+ groupId?: string | undefined;
7746
+ GroupId?: string | undefined;
7317
7747
  }, {
7318
7748
  pubkeyhex: string;
7319
7749
  keylist?: string[] | undefined;
7320
7750
  ClientKeys?: Record<string, string> | undefined;
7751
+ groupId?: string | undefined;
7752
+ GroupId?: string | undefined;
7321
7753
  }>>;
7322
7754
  purposeText: z.ZodString;
7323
7755
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -7368,6 +7800,8 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
7368
7800
  pubkeyhex: string;
7369
7801
  keylist?: string[] | undefined;
7370
7802
  ClientKeys?: Record<string, string> | undefined;
7803
+ groupId?: string | undefined;
7804
+ GroupId?: string | undefined;
7371
7805
  } | undefined;
7372
7806
  expiryDate?: number | undefined;
7373
7807
  rpcUrl?: string | undefined;
@@ -7395,6 +7829,8 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
7395
7829
  pubkeyhex: string;
7396
7830
  keylist?: string[] | undefined;
7397
7831
  ClientKeys?: Record<string, string> | undefined;
7832
+ groupId?: string | undefined;
7833
+ GroupId?: string | undefined;
7398
7834
  } | undefined;
7399
7835
  useCustomGas?: unknown;
7400
7836
  chainId?: unknown;
@@ -7426,6 +7862,8 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
7426
7862
  pubkeyhex: string;
7427
7863
  keylist?: string[] | undefined;
7428
7864
  ClientKeys?: Record<string, string> | undefined;
7865
+ groupId?: string | undefined;
7866
+ GroupId?: string | undefined;
7429
7867
  } | undefined;
7430
7868
  expiryDate?: number | undefined;
7431
7869
  rpcUrl?: string | undefined;
@@ -7455,6 +7893,8 @@ declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodO
7455
7893
  pubkeyhex: string;
7456
7894
  keylist?: string[] | undefined;
7457
7895
  ClientKeys?: Record<string, string> | undefined;
7896
+ groupId?: string | undefined;
7897
+ GroupId?: string | undefined;
7458
7898
  } | undefined;
7459
7899
  expiryDate?: number | undefined;
7460
7900
  rpcUrl?: string | undefined;
@@ -7481,14 +7921,20 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
7481
7921
  pubkeyhex: z.ZodString;
7482
7922
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7483
7923
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7924
+ groupId: z.ZodOptional<z.ZodString>;
7925
+ GroupId: z.ZodOptional<z.ZodString>;
7484
7926
  }, "strip", z.ZodTypeAny, {
7485
7927
  pubkeyhex: string;
7486
7928
  keylist?: string[] | undefined;
7487
7929
  ClientKeys?: Record<string, string> | undefined;
7930
+ groupId?: string | undefined;
7931
+ GroupId?: string | undefined;
7488
7932
  }, {
7489
7933
  pubkeyhex: string;
7490
7934
  keylist?: string[] | undefined;
7491
7935
  ClientKeys?: Record<string, string> | undefined;
7936
+ groupId?: string | undefined;
7937
+ GroupId?: string | undefined;
7492
7938
  }>>;
7493
7939
  purposeText: z.ZodString;
7494
7940
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -7544,6 +7990,8 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
7544
7990
  pubkeyhex: string;
7545
7991
  keylist?: string[] | undefined;
7546
7992
  ClientKeys?: Record<string, string> | undefined;
7993
+ groupId?: string | undefined;
7994
+ GroupId?: string | undefined;
7547
7995
  } | undefined;
7548
7996
  expiryDate?: number | undefined;
7549
7997
  rpcUrl?: string | undefined;
@@ -7574,6 +8022,8 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
7574
8022
  pubkeyhex: string;
7575
8023
  keylist?: string[] | undefined;
7576
8024
  ClientKeys?: Record<string, string> | undefined;
8025
+ groupId?: string | undefined;
8026
+ GroupId?: string | undefined;
7577
8027
  } | undefined;
7578
8028
  useCustomGas?: unknown;
7579
8029
  chainId?: unknown;
@@ -7608,6 +8058,8 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
7608
8058
  pubkeyhex: string;
7609
8059
  keylist?: string[] | undefined;
7610
8060
  ClientKeys?: Record<string, string> | undefined;
8061
+ groupId?: string | undefined;
8062
+ GroupId?: string | undefined;
7611
8063
  } | undefined;
7612
8064
  expiryDate?: number | undefined;
7613
8065
  rpcUrl?: string | undefined;
@@ -7640,6 +8092,8 @@ declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.Zo
7640
8092
  pubkeyhex: string;
7641
8093
  keylist?: string[] | undefined;
7642
8094
  ClientKeys?: Record<string, string> | undefined;
8095
+ groupId?: string | undefined;
8096
+ GroupId?: string | undefined;
7643
8097
  } | undefined;
7644
8098
  expiryDate?: number | undefined;
7645
8099
  rpcUrl?: string | undefined;
@@ -7667,14 +8121,20 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
7667
8121
  pubkeyhex: z.ZodString;
7668
8122
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7669
8123
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8124
+ groupId: z.ZodOptional<z.ZodString>;
8125
+ GroupId: z.ZodOptional<z.ZodString>;
7670
8126
  }, "strip", z.ZodTypeAny, {
7671
8127
  pubkeyhex: string;
7672
8128
  keylist?: string[] | undefined;
7673
8129
  ClientKeys?: Record<string, string> | undefined;
8130
+ groupId?: string | undefined;
8131
+ GroupId?: string | undefined;
7674
8132
  }, {
7675
8133
  pubkeyhex: string;
7676
8134
  keylist?: string[] | undefined;
7677
8135
  ClientKeys?: Record<string, string> | undefined;
8136
+ groupId?: string | undefined;
8137
+ GroupId?: string | undefined;
7678
8138
  }>>;
7679
8139
  purposeText: z.ZodString;
7680
8140
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -7728,6 +8188,8 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
7728
8188
  pubkeyhex: string;
7729
8189
  keylist?: string[] | undefined;
7730
8190
  ClientKeys?: Record<string, string> | undefined;
8191
+ groupId?: string | undefined;
8192
+ GroupId?: string | undefined;
7731
8193
  } | undefined;
7732
8194
  expiryDate?: number | undefined;
7733
8195
  rpcUrl?: string | undefined;
@@ -7758,6 +8220,8 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
7758
8220
  pubkeyhex: string;
7759
8221
  keylist?: string[] | undefined;
7760
8222
  ClientKeys?: Record<string, string> | undefined;
8223
+ groupId?: string | undefined;
8224
+ GroupId?: string | undefined;
7761
8225
  } | undefined;
7762
8226
  useCustomGas?: unknown;
7763
8227
  chainId?: unknown;
@@ -7792,6 +8256,8 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
7792
8256
  pubkeyhex: string;
7793
8257
  keylist?: string[] | undefined;
7794
8258
  ClientKeys?: Record<string, string> | undefined;
8259
+ groupId?: string | undefined;
8260
+ GroupId?: string | undefined;
7795
8261
  } | undefined;
7796
8262
  expiryDate?: number | undefined;
7797
8263
  rpcUrl?: string | undefined;
@@ -7824,6 +8290,8 @@ declare const mcpMorphoMidnightLendOfferInputSchema: z.ZodEffects<z.ZodEffects<z
7824
8290
  pubkeyhex: string;
7825
8291
  keylist?: string[] | undefined;
7826
8292
  ClientKeys?: Record<string, string> | undefined;
8293
+ groupId?: string | undefined;
8294
+ GroupId?: string | undefined;
7827
8295
  } | undefined;
7828
8296
  expiryDate?: number | undefined;
7829
8297
  rpcUrl?: string | undefined;
@@ -7853,14 +8321,20 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
7853
8321
  pubkeyhex: z.ZodString;
7854
8322
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7855
8323
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8324
+ groupId: z.ZodOptional<z.ZodString>;
8325
+ GroupId: z.ZodOptional<z.ZodString>;
7856
8326
  }, "strip", z.ZodTypeAny, {
7857
8327
  pubkeyhex: string;
7858
8328
  keylist?: string[] | undefined;
7859
8329
  ClientKeys?: Record<string, string> | undefined;
8330
+ groupId?: string | undefined;
8331
+ GroupId?: string | undefined;
7860
8332
  }, {
7861
8333
  pubkeyhex: string;
7862
8334
  keylist?: string[] | undefined;
7863
8335
  ClientKeys?: Record<string, string> | undefined;
8336
+ groupId?: string | undefined;
8337
+ GroupId?: string | undefined;
7864
8338
  }>>;
7865
8339
  purposeText: z.ZodString;
7866
8340
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -7910,6 +8384,8 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
7910
8384
  pubkeyhex: string;
7911
8385
  keylist?: string[] | undefined;
7912
8386
  ClientKeys?: Record<string, string> | undefined;
8387
+ groupId?: string | undefined;
8388
+ GroupId?: string | undefined;
7913
8389
  } | undefined;
7914
8390
  expiryDate?: number | undefined;
7915
8391
  rpcUrl?: string | undefined;
@@ -7937,6 +8413,8 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
7937
8413
  pubkeyhex: string;
7938
8414
  keylist?: string[] | undefined;
7939
8415
  ClientKeys?: Record<string, string> | undefined;
8416
+ groupId?: string | undefined;
8417
+ GroupId?: string | undefined;
7940
8418
  } | undefined;
7941
8419
  useCustomGas?: unknown;
7942
8420
  chainId?: unknown;
@@ -7968,6 +8446,8 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
7968
8446
  pubkeyhex: string;
7969
8447
  keylist?: string[] | undefined;
7970
8448
  ClientKeys?: Record<string, string> | undefined;
8449
+ groupId?: string | undefined;
8450
+ GroupId?: string | undefined;
7971
8451
  } | undefined;
7972
8452
  expiryDate?: number | undefined;
7973
8453
  rpcUrl?: string | undefined;
@@ -7997,6 +8477,8 @@ declare const mcpMorphoMidnightCancelLendOfferInputSchema: z.ZodEffects<z.ZodEff
7997
8477
  pubkeyhex: string;
7998
8478
  keylist?: string[] | undefined;
7999
8479
  ClientKeys?: Record<string, string> | undefined;
8480
+ groupId?: string | undefined;
8481
+ GroupId?: string | undefined;
8000
8482
  } | undefined;
8001
8483
  expiryDate?: number | undefined;
8002
8484
  rpcUrl?: string | undefined;
@@ -8024,14 +8506,20 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
8024
8506
  pubkeyhex: z.ZodString;
8025
8507
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8026
8508
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8509
+ groupId: z.ZodOptional<z.ZodString>;
8510
+ GroupId: z.ZodOptional<z.ZodString>;
8027
8511
  }, "strip", z.ZodTypeAny, {
8028
8512
  pubkeyhex: string;
8029
8513
  keylist?: string[] | undefined;
8030
8514
  ClientKeys?: Record<string, string> | undefined;
8515
+ groupId?: string | undefined;
8516
+ GroupId?: string | undefined;
8031
8517
  }, {
8032
8518
  pubkeyhex: string;
8033
8519
  keylist?: string[] | undefined;
8034
8520
  ClientKeys?: Record<string, string> | undefined;
8521
+ groupId?: string | undefined;
8522
+ GroupId?: string | undefined;
8035
8523
  }>>;
8036
8524
  purposeText: z.ZodString;
8037
8525
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -8080,6 +8568,8 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
8080
8568
  pubkeyhex: string;
8081
8569
  keylist?: string[] | undefined;
8082
8570
  ClientKeys?: Record<string, string> | undefined;
8571
+ groupId?: string | undefined;
8572
+ GroupId?: string | undefined;
8083
8573
  } | undefined;
8084
8574
  expiryDate?: number | undefined;
8085
8575
  rpcUrl?: string | undefined;
@@ -8106,6 +8596,8 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
8106
8596
  pubkeyhex: string;
8107
8597
  keylist?: string[] | undefined;
8108
8598
  ClientKeys?: Record<string, string> | undefined;
8599
+ groupId?: string | undefined;
8600
+ GroupId?: string | undefined;
8109
8601
  } | undefined;
8110
8602
  useCustomGas?: unknown;
8111
8603
  chainId?: unknown;
@@ -8136,6 +8628,8 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
8136
8628
  pubkeyhex: string;
8137
8629
  keylist?: string[] | undefined;
8138
8630
  ClientKeys?: Record<string, string> | undefined;
8631
+ groupId?: string | undefined;
8632
+ GroupId?: string | undefined;
8139
8633
  } | undefined;
8140
8634
  expiryDate?: number | undefined;
8141
8635
  rpcUrl?: string | undefined;
@@ -8164,6 +8658,8 @@ declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.Zod
8164
8658
  pubkeyhex: string;
8165
8659
  keylist?: string[] | undefined;
8166
8660
  ClientKeys?: Record<string, string> | undefined;
8661
+ groupId?: string | undefined;
8662
+ GroupId?: string | undefined;
8167
8663
  } | undefined;
8168
8664
  expiryDate?: number | undefined;
8169
8665
  rpcUrl?: string | undefined;
@@ -9614,6 +10110,143 @@ declare const mcpContinuumDaoForumSectionsInputSchema: z.ZodObject<{
9614
10110
  forumUrl?: string | undefined;
9615
10111
  }>;
9616
10112
  declare const mcpContinuumDaoForumSectionsOutputSchema: z.ZodUnknown;
10113
+ declare const mcpContinuumDaoMpaListingInputSchema: z.ZodObject<{
10114
+ forumUrl: z.ZodOptional<z.ZodString>;
10115
+ ticket: z.ZodOptional<z.ZodString>;
10116
+ kind: z.ZodEnum<["offer", "request", "directory", "opportunity"]>;
10117
+ title: z.ZodOptional<z.ZodString>;
10118
+ summary: z.ZodString;
10119
+ details: z.ZodString;
10120
+ capabilities: z.ZodArray<z.ZodEnum<["research", "monitoring", "execution-proposal", "routing", "other"]>, "many">;
10121
+ expiresAt: z.ZodOptional<z.ZodString>;
10122
+ contact: z.ZodOptional<z.ZodString>;
10123
+ }, "strip", z.ZodTypeAny, {
10124
+ kind: "request" | "offer" | "directory" | "opportunity";
10125
+ summary: string;
10126
+ details: string;
10127
+ capabilities: ("routing" | "research" | "monitoring" | "execution-proposal" | "other")[];
10128
+ title?: string | undefined;
10129
+ forumUrl?: string | undefined;
10130
+ ticket?: string | undefined;
10131
+ expiresAt?: string | undefined;
10132
+ contact?: string | undefined;
10133
+ }, {
10134
+ kind: "request" | "offer" | "directory" | "opportunity";
10135
+ summary: string;
10136
+ details: string;
10137
+ capabilities: ("routing" | "research" | "monitoring" | "execution-proposal" | "other")[];
10138
+ title?: string | undefined;
10139
+ forumUrl?: string | undefined;
10140
+ ticket?: string | undefined;
10141
+ expiresAt?: string | undefined;
10142
+ contact?: string | undefined;
10143
+ }>;
10144
+ declare const mcpContinuumDaoMpaListingOutputSchema: z.ZodUnknown;
10145
+ declare const mcpContinuumDaoMpaRetractInputSchema: z.ZodObject<{
10146
+ forumUrl: z.ZodOptional<z.ZodString>;
10147
+ ticket: z.ZodOptional<z.ZodString>;
10148
+ url: z.ZodOptional<z.ZodString>;
10149
+ tid: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
10150
+ }, "strip", z.ZodTypeAny, {
10151
+ url?: string | undefined;
10152
+ forumUrl?: string | undefined;
10153
+ tid?: string | number | undefined;
10154
+ ticket?: string | undefined;
10155
+ }, {
10156
+ url?: string | undefined;
10157
+ forumUrl?: string | undefined;
10158
+ tid?: string | number | undefined;
10159
+ ticket?: string | undefined;
10160
+ }>;
10161
+ declare const mcpContinuumDaoMpaRetractOutputSchema: z.ZodUnknown;
10162
+ declare const mcpContinuumDaoMpaFlagInputSchema: z.ZodObject<{
10163
+ forumUrl: z.ZodOptional<z.ZodString>;
10164
+ ticket: z.ZodOptional<z.ZodString>;
10165
+ url: z.ZodOptional<z.ZodString>;
10166
+ tid: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
10167
+ reason: z.ZodString;
10168
+ }, "strip", z.ZodTypeAny, {
10169
+ reason: string;
10170
+ url?: string | undefined;
10171
+ forumUrl?: string | undefined;
10172
+ tid?: string | number | undefined;
10173
+ ticket?: string | undefined;
10174
+ }, {
10175
+ reason: string;
10176
+ url?: string | undefined;
10177
+ forumUrl?: string | undefined;
10178
+ tid?: string | number | undefined;
10179
+ ticket?: string | undefined;
10180
+ }>;
10181
+ declare const mcpContinuumDaoMpaFlagOutputSchema: z.ZodUnknown;
10182
+ declare const mcpContinuumDaoMpaMailboxOpenInputSchema: z.ZodObject<{
10183
+ forumUrl: z.ZodOptional<z.ZodString>;
10184
+ ticket: z.ZodOptional<z.ZodString>;
10185
+ username: z.ZodString;
10186
+ content: z.ZodOptional<z.ZodString>;
10187
+ }, "strip", z.ZodTypeAny, {
10188
+ username: string;
10189
+ forumUrl?: string | undefined;
10190
+ ticket?: string | undefined;
10191
+ content?: string | undefined;
10192
+ }, {
10193
+ username: string;
10194
+ forumUrl?: string | undefined;
10195
+ ticket?: string | undefined;
10196
+ content?: string | undefined;
10197
+ }>;
10198
+ declare const mcpContinuumDaoMpaMailboxOpenOutputSchema: z.ZodUnknown;
10199
+ declare const mcpContinuumDaoMpaMailboxSendInputSchema: z.ZodObject<{
10200
+ forumUrl: z.ZodOptional<z.ZodString>;
10201
+ ticket: z.ZodOptional<z.ZodString>;
10202
+ username: z.ZodOptional<z.ZodString>;
10203
+ url: z.ZodOptional<z.ZodString>;
10204
+ tid: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
10205
+ content: z.ZodString;
10206
+ }, "strip", z.ZodTypeAny, {
10207
+ content: string;
10208
+ url?: string | undefined;
10209
+ forumUrl?: string | undefined;
10210
+ tid?: string | number | undefined;
10211
+ username?: string | undefined;
10212
+ ticket?: string | undefined;
10213
+ }, {
10214
+ content: string;
10215
+ url?: string | undefined;
10216
+ forumUrl?: string | undefined;
10217
+ tid?: string | number | undefined;
10218
+ username?: string | undefined;
10219
+ ticket?: string | undefined;
10220
+ }>;
10221
+ declare const mcpContinuumDaoMpaMailboxSendOutputSchema: z.ZodUnknown;
10222
+ declare const mcpContinuumDaoMpaMailboxListInputSchema: z.ZodObject<{
10223
+ forumUrl: z.ZodOptional<z.ZodString>;
10224
+ ticket: z.ZodOptional<z.ZodString>;
10225
+ }, "strip", z.ZodTypeAny, {
10226
+ forumUrl?: string | undefined;
10227
+ ticket?: string | undefined;
10228
+ }, {
10229
+ forumUrl?: string | undefined;
10230
+ ticket?: string | undefined;
10231
+ }>;
10232
+ declare const mcpContinuumDaoMpaMailboxListOutputSchema: z.ZodUnknown;
10233
+ declare const mcpContinuumDaoTechnocoreBindInputSchema: z.ZodObject<{
10234
+ forumUrl: z.ZodOptional<z.ZodString>;
10235
+ ticket: z.ZodOptional<z.ZodString>;
10236
+ did: z.ZodString;
10237
+ signature: z.ZodString;
10238
+ }, "strip", z.ZodTypeAny, {
10239
+ signature: string;
10240
+ did: string;
10241
+ forumUrl?: string | undefined;
10242
+ ticket?: string | undefined;
10243
+ }, {
10244
+ signature: string;
10245
+ did: string;
10246
+ forumUrl?: string | undefined;
10247
+ ticket?: string | undefined;
10248
+ }>;
10249
+ declare const mcpContinuumDaoTechnocoreBindOutputSchema: z.ZodUnknown;
9617
10250
  declare const mcpContinuumDaoForumSignInEligibleInputSchema: z.ZodObject<{
9618
10251
  address: z.ZodString;
9619
10252
  forumUrl: z.ZodOptional<z.ZodString>;
@@ -11276,14 +11909,20 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
11276
11909
  pubkeyhex: z.ZodString;
11277
11910
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11278
11911
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
11912
+ groupId: z.ZodOptional<z.ZodString>;
11913
+ GroupId: z.ZodOptional<z.ZodString>;
11279
11914
  }, "strip", z.ZodTypeAny, {
11280
11915
  pubkeyhex: string;
11281
11916
  keylist?: string[] | undefined;
11282
11917
  ClientKeys?: Record<string, string> | undefined;
11918
+ groupId?: string | undefined;
11919
+ GroupId?: string | undefined;
11283
11920
  }, {
11284
11921
  pubkeyhex: string;
11285
11922
  keylist?: string[] | undefined;
11286
11923
  ClientKeys?: Record<string, string> | undefined;
11924
+ groupId?: string | undefined;
11925
+ GroupId?: string | undefined;
11287
11926
  }>>;
11288
11927
  purposeText: z.ZodString;
11289
11928
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -11336,6 +11975,8 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
11336
11975
  pubkeyhex: string;
11337
11976
  keylist?: string[] | undefined;
11338
11977
  ClientKeys?: Record<string, string> | undefined;
11978
+ groupId?: string | undefined;
11979
+ GroupId?: string | undefined;
11339
11980
  } | undefined;
11340
11981
  expiryDate?: number | undefined;
11341
11982
  rpcUrl?: string | undefined;
@@ -11363,6 +12004,8 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
11363
12004
  pubkeyhex: string;
11364
12005
  keylist?: string[] | undefined;
11365
12006
  ClientKeys?: Record<string, string> | undefined;
12007
+ groupId?: string | undefined;
12008
+ GroupId?: string | undefined;
11366
12009
  } | undefined;
11367
12010
  useCustomGas?: unknown;
11368
12011
  chainId?: unknown;
@@ -11394,6 +12037,8 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
11394
12037
  pubkeyhex: string;
11395
12038
  keylist?: string[] | undefined;
11396
12039
  ClientKeys?: Record<string, string> | undefined;
12040
+ groupId?: string | undefined;
12041
+ GroupId?: string | undefined;
11397
12042
  } | undefined;
11398
12043
  expiryDate?: number | undefined;
11399
12044
  rpcUrl?: string | undefined;
@@ -11421,6 +12066,8 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
11421
12066
  pubkeyhex: string;
11422
12067
  keylist?: string[] | undefined;
11423
12068
  ClientKeys?: Record<string, string> | undefined;
12069
+ groupId?: string | undefined;
12070
+ GroupId?: string | undefined;
11424
12071
  } | undefined;
11425
12072
  useCustomGas?: unknown;
11426
12073
  chainId?: unknown;
@@ -11447,14 +12094,20 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
11447
12094
  pubkeyhex: z.ZodString;
11448
12095
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11449
12096
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
12097
+ groupId: z.ZodOptional<z.ZodString>;
12098
+ GroupId: z.ZodOptional<z.ZodString>;
11450
12099
  }, "strip", z.ZodTypeAny, {
11451
12100
  pubkeyhex: string;
11452
12101
  keylist?: string[] | undefined;
11453
12102
  ClientKeys?: Record<string, string> | undefined;
12103
+ groupId?: string | undefined;
12104
+ GroupId?: string | undefined;
11454
12105
  }, {
11455
12106
  pubkeyhex: string;
11456
12107
  keylist?: string[] | undefined;
11457
12108
  ClientKeys?: Record<string, string> | undefined;
12109
+ groupId?: string | undefined;
12110
+ GroupId?: string | undefined;
11458
12111
  }>>;
11459
12112
  purposeText: z.ZodString;
11460
12113
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -11508,6 +12161,8 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
11508
12161
  pubkeyhex: string;
11509
12162
  keylist?: string[] | undefined;
11510
12163
  ClientKeys?: Record<string, string> | undefined;
12164
+ groupId?: string | undefined;
12165
+ GroupId?: string | undefined;
11511
12166
  } | undefined;
11512
12167
  expiryDate?: number | undefined;
11513
12168
  rpcUrl?: string | undefined;
@@ -11535,6 +12190,8 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
11535
12190
  pubkeyhex: string;
11536
12191
  keylist?: string[] | undefined;
11537
12192
  ClientKeys?: Record<string, string> | undefined;
12193
+ groupId?: string | undefined;
12194
+ GroupId?: string | undefined;
11538
12195
  } | undefined;
11539
12196
  useCustomGas?: unknown;
11540
12197
  chainId?: unknown;
@@ -11566,6 +12223,8 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
11566
12223
  pubkeyhex: string;
11567
12224
  keylist?: string[] | undefined;
11568
12225
  ClientKeys?: Record<string, string> | undefined;
12226
+ groupId?: string | undefined;
12227
+ GroupId?: string | undefined;
11569
12228
  } | undefined;
11570
12229
  expiryDate?: number | undefined;
11571
12230
  rpcUrl?: string | undefined;
@@ -11593,6 +12252,8 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
11593
12252
  pubkeyhex: string;
11594
12253
  keylist?: string[] | undefined;
11595
12254
  ClientKeys?: Record<string, string> | undefined;
12255
+ groupId?: string | undefined;
12256
+ GroupId?: string | undefined;
11596
12257
  } | undefined;
11597
12258
  useCustomGas?: unknown;
11598
12259
  chainId?: unknown;
@@ -11618,14 +12279,20 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
11618
12279
  pubkeyhex: z.ZodString;
11619
12280
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11620
12281
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
12282
+ groupId: z.ZodOptional<z.ZodString>;
12283
+ GroupId: z.ZodOptional<z.ZodString>;
11621
12284
  }, "strip", z.ZodTypeAny, {
11622
12285
  pubkeyhex: string;
11623
12286
  keylist?: string[] | undefined;
11624
12287
  ClientKeys?: Record<string, string> | undefined;
12288
+ groupId?: string | undefined;
12289
+ GroupId?: string | undefined;
11625
12290
  }, {
11626
12291
  pubkeyhex: string;
11627
12292
  keylist?: string[] | undefined;
11628
12293
  ClientKeys?: Record<string, string> | undefined;
12294
+ groupId?: string | undefined;
12295
+ GroupId?: string | undefined;
11629
12296
  }>>;
11630
12297
  purposeText: z.ZodString;
11631
12298
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -11680,6 +12347,8 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
11680
12347
  pubkeyhex: string;
11681
12348
  keylist?: string[] | undefined;
11682
12349
  ClientKeys?: Record<string, string> | undefined;
12350
+ groupId?: string | undefined;
12351
+ GroupId?: string | undefined;
11683
12352
  } | undefined;
11684
12353
  expiryDate?: number | undefined;
11685
12354
  rpcUrl?: string | undefined;
@@ -11708,6 +12377,8 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
11708
12377
  pubkeyhex: string;
11709
12378
  keylist?: string[] | undefined;
11710
12379
  ClientKeys?: Record<string, string> | undefined;
12380
+ groupId?: string | undefined;
12381
+ GroupId?: string | undefined;
11711
12382
  } | undefined;
11712
12383
  useCustomGas?: unknown;
11713
12384
  chainId?: unknown;
@@ -11740,6 +12411,8 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
11740
12411
  pubkeyhex: string;
11741
12412
  keylist?: string[] | undefined;
11742
12413
  ClientKeys?: Record<string, string> | undefined;
12414
+ groupId?: string | undefined;
12415
+ GroupId?: string | undefined;
11743
12416
  } | undefined;
11744
12417
  expiryDate?: number | undefined;
11745
12418
  rpcUrl?: string | undefined;
@@ -11768,6 +12441,8 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
11768
12441
  pubkeyhex: string;
11769
12442
  keylist?: string[] | undefined;
11770
12443
  ClientKeys?: Record<string, string> | undefined;
12444
+ groupId?: string | undefined;
12445
+ GroupId?: string | undefined;
11771
12446
  } | undefined;
11772
12447
  useCustomGas?: unknown;
11773
12448
  chainId?: unknown;
@@ -11794,14 +12469,20 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
11794
12469
  pubkeyhex: z.ZodString;
11795
12470
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11796
12471
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
12472
+ groupId: z.ZodOptional<z.ZodString>;
12473
+ GroupId: z.ZodOptional<z.ZodString>;
11797
12474
  }, "strip", z.ZodTypeAny, {
11798
12475
  pubkeyhex: string;
11799
12476
  keylist?: string[] | undefined;
11800
12477
  ClientKeys?: Record<string, string> | undefined;
12478
+ groupId?: string | undefined;
12479
+ GroupId?: string | undefined;
11801
12480
  }, {
11802
12481
  pubkeyhex: string;
11803
12482
  keylist?: string[] | undefined;
11804
12483
  ClientKeys?: Record<string, string> | undefined;
12484
+ groupId?: string | undefined;
12485
+ GroupId?: string | undefined;
11805
12486
  }>>;
11806
12487
  purposeText: z.ZodString;
11807
12488
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -11853,6 +12534,8 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
11853
12534
  pubkeyhex: string;
11854
12535
  keylist?: string[] | undefined;
11855
12536
  ClientKeys?: Record<string, string> | undefined;
12537
+ groupId?: string | undefined;
12538
+ GroupId?: string | undefined;
11856
12539
  } | undefined;
11857
12540
  expiryDate?: number | undefined;
11858
12541
  rpcUrl?: string | undefined;
@@ -11879,6 +12562,8 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
11879
12562
  pubkeyhex: string;
11880
12563
  keylist?: string[] | undefined;
11881
12564
  ClientKeys?: Record<string, string> | undefined;
12565
+ groupId?: string | undefined;
12566
+ GroupId?: string | undefined;
11882
12567
  } | undefined;
11883
12568
  useCustomGas?: unknown;
11884
12569
  chainId?: unknown;
@@ -11909,6 +12594,8 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
11909
12594
  pubkeyhex: string;
11910
12595
  keylist?: string[] | undefined;
11911
12596
  ClientKeys?: Record<string, string> | undefined;
12597
+ groupId?: string | undefined;
12598
+ GroupId?: string | undefined;
11912
12599
  } | undefined;
11913
12600
  expiryDate?: number | undefined;
11914
12601
  rpcUrl?: string | undefined;
@@ -11935,6 +12622,8 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
11935
12622
  pubkeyhex: string;
11936
12623
  keylist?: string[] | undefined;
11937
12624
  ClientKeys?: Record<string, string> | undefined;
12625
+ groupId?: string | undefined;
12626
+ GroupId?: string | undefined;
11938
12627
  } | undefined;
11939
12628
  useCustomGas?: unknown;
11940
12629
  chainId?: unknown;
@@ -11960,14 +12649,20 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
11960
12649
  pubkeyhex: z.ZodString;
11961
12650
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11962
12651
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
12652
+ groupId: z.ZodOptional<z.ZodString>;
12653
+ GroupId: z.ZodOptional<z.ZodString>;
11963
12654
  }, "strip", z.ZodTypeAny, {
11964
12655
  pubkeyhex: string;
11965
12656
  keylist?: string[] | undefined;
11966
12657
  ClientKeys?: Record<string, string> | undefined;
12658
+ groupId?: string | undefined;
12659
+ GroupId?: string | undefined;
11967
12660
  }, {
11968
12661
  pubkeyhex: string;
11969
12662
  keylist?: string[] | undefined;
11970
12663
  ClientKeys?: Record<string, string> | undefined;
12664
+ groupId?: string | undefined;
12665
+ GroupId?: string | undefined;
11971
12666
  }>>;
11972
12667
  purposeText: z.ZodString;
11973
12668
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -12019,6 +12714,8 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
12019
12714
  pubkeyhex: string;
12020
12715
  keylist?: string[] | undefined;
12021
12716
  ClientKeys?: Record<string, string> | undefined;
12717
+ groupId?: string | undefined;
12718
+ GroupId?: string | undefined;
12022
12719
  } | undefined;
12023
12720
  expiryDate?: number | undefined;
12024
12721
  rpcUrl?: string | undefined;
@@ -12045,6 +12742,8 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
12045
12742
  pubkeyhex: string;
12046
12743
  keylist?: string[] | undefined;
12047
12744
  ClientKeys?: Record<string, string> | undefined;
12745
+ groupId?: string | undefined;
12746
+ GroupId?: string | undefined;
12048
12747
  } | undefined;
12049
12748
  useCustomGas?: unknown;
12050
12749
  chainId?: unknown;
@@ -12075,6 +12774,8 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
12075
12774
  pubkeyhex: string;
12076
12775
  keylist?: string[] | undefined;
12077
12776
  ClientKeys?: Record<string, string> | undefined;
12777
+ groupId?: string | undefined;
12778
+ GroupId?: string | undefined;
12078
12779
  } | undefined;
12079
12780
  expiryDate?: number | undefined;
12080
12781
  rpcUrl?: string | undefined;
@@ -12101,6 +12802,8 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
12101
12802
  pubkeyhex: string;
12102
12803
  keylist?: string[] | undefined;
12103
12804
  ClientKeys?: Record<string, string> | undefined;
12805
+ groupId?: string | undefined;
12806
+ GroupId?: string | undefined;
12104
12807
  } | undefined;
12105
12808
  useCustomGas?: unknown;
12106
12809
  chainId?: unknown;
@@ -12126,14 +12829,20 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
12126
12829
  pubkeyhex: z.ZodString;
12127
12830
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12128
12831
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
12832
+ groupId: z.ZodOptional<z.ZodString>;
12833
+ GroupId: z.ZodOptional<z.ZodString>;
12129
12834
  }, "strip", z.ZodTypeAny, {
12130
12835
  pubkeyhex: string;
12131
12836
  keylist?: string[] | undefined;
12132
12837
  ClientKeys?: Record<string, string> | undefined;
12838
+ groupId?: string | undefined;
12839
+ GroupId?: string | undefined;
12133
12840
  }, {
12134
12841
  pubkeyhex: string;
12135
12842
  keylist?: string[] | undefined;
12136
12843
  ClientKeys?: Record<string, string> | undefined;
12844
+ groupId?: string | undefined;
12845
+ GroupId?: string | undefined;
12137
12846
  }>>;
12138
12847
  purposeText: z.ZodString;
12139
12848
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -12197,6 +12906,8 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
12197
12906
  pubkeyhex: string;
12198
12907
  keylist?: string[] | undefined;
12199
12908
  ClientKeys?: Record<string, string> | undefined;
12909
+ groupId?: string | undefined;
12910
+ GroupId?: string | undefined;
12200
12911
  } | undefined;
12201
12912
  expiryDate?: number | undefined;
12202
12913
  rpcUrl?: string | undefined;
@@ -12227,6 +12938,8 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
12227
12938
  pubkeyhex: string;
12228
12939
  keylist?: string[] | undefined;
12229
12940
  ClientKeys?: Record<string, string> | undefined;
12941
+ groupId?: string | undefined;
12942
+ GroupId?: string | undefined;
12230
12943
  } | undefined;
12231
12944
  useCustomGas?: unknown;
12232
12945
  chainId?: unknown;
@@ -12261,6 +12974,8 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
12261
12974
  pubkeyhex: string;
12262
12975
  keylist?: string[] | undefined;
12263
12976
  ClientKeys?: Record<string, string> | undefined;
12977
+ groupId?: string | undefined;
12978
+ GroupId?: string | undefined;
12264
12979
  } | undefined;
12265
12980
  expiryDate?: number | undefined;
12266
12981
  rpcUrl?: string | undefined;
@@ -12291,6 +13006,8 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
12291
13006
  pubkeyhex: string;
12292
13007
  keylist?: string[] | undefined;
12293
13008
  ClientKeys?: Record<string, string> | undefined;
13009
+ groupId?: string | undefined;
13010
+ GroupId?: string | undefined;
12294
13011
  } | undefined;
12295
13012
  useCustomGas?: unknown;
12296
13013
  chainId?: unknown;
@@ -12318,14 +13035,20 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
12318
13035
  pubkeyhex: z.ZodString;
12319
13036
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12320
13037
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
13038
+ groupId: z.ZodOptional<z.ZodString>;
13039
+ GroupId: z.ZodOptional<z.ZodString>;
12321
13040
  }, "strip", z.ZodTypeAny, {
12322
13041
  pubkeyhex: string;
12323
13042
  keylist?: string[] | undefined;
12324
13043
  ClientKeys?: Record<string, string> | undefined;
13044
+ groupId?: string | undefined;
13045
+ GroupId?: string | undefined;
12325
13046
  }, {
12326
13047
  pubkeyhex: string;
12327
13048
  keylist?: string[] | undefined;
12328
13049
  ClientKeys?: Record<string, string> | undefined;
13050
+ groupId?: string | undefined;
13051
+ GroupId?: string | undefined;
12329
13052
  }>>;
12330
13053
  purposeText: z.ZodString;
12331
13054
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -12378,6 +13101,8 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
12378
13101
  pubkeyhex: string;
12379
13102
  keylist?: string[] | undefined;
12380
13103
  ClientKeys?: Record<string, string> | undefined;
13104
+ groupId?: string | undefined;
13105
+ GroupId?: string | undefined;
12381
13106
  } | undefined;
12382
13107
  expiryDate?: number | undefined;
12383
13108
  rpcUrl?: string | undefined;
@@ -12405,6 +13130,8 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
12405
13130
  pubkeyhex: string;
12406
13131
  keylist?: string[] | undefined;
12407
13132
  ClientKeys?: Record<string, string> | undefined;
13133
+ groupId?: string | undefined;
13134
+ GroupId?: string | undefined;
12408
13135
  } | undefined;
12409
13136
  useCustomGas?: unknown;
12410
13137
  chainId?: unknown;
@@ -12436,6 +13163,8 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
12436
13163
  pubkeyhex: string;
12437
13164
  keylist?: string[] | undefined;
12438
13165
  ClientKeys?: Record<string, string> | undefined;
13166
+ groupId?: string | undefined;
13167
+ GroupId?: string | undefined;
12439
13168
  } | undefined;
12440
13169
  expiryDate?: number | undefined;
12441
13170
  rpcUrl?: string | undefined;
@@ -12463,6 +13192,8 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
12463
13192
  pubkeyhex: string;
12464
13193
  keylist?: string[] | undefined;
12465
13194
  ClientKeys?: Record<string, string> | undefined;
13195
+ groupId?: string | undefined;
13196
+ GroupId?: string | undefined;
12466
13197
  } | undefined;
12467
13198
  useCustomGas?: unknown;
12468
13199
  chainId?: unknown;
@@ -12489,14 +13220,20 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
12489
13220
  pubkeyhex: z.ZodString;
12490
13221
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12491
13222
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
13223
+ groupId: z.ZodOptional<z.ZodString>;
13224
+ GroupId: z.ZodOptional<z.ZodString>;
12492
13225
  }, "strip", z.ZodTypeAny, {
12493
13226
  pubkeyhex: string;
12494
13227
  keylist?: string[] | undefined;
12495
13228
  ClientKeys?: Record<string, string> | undefined;
13229
+ groupId?: string | undefined;
13230
+ GroupId?: string | undefined;
12496
13231
  }, {
12497
13232
  pubkeyhex: string;
12498
13233
  keylist?: string[] | undefined;
12499
13234
  ClientKeys?: Record<string, string> | undefined;
13235
+ groupId?: string | undefined;
13236
+ GroupId?: string | undefined;
12500
13237
  }>>;
12501
13238
  purposeText: z.ZodString;
12502
13239
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -12543,6 +13280,8 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
12543
13280
  pubkeyhex: string;
12544
13281
  keylist?: string[] | undefined;
12545
13282
  ClientKeys?: Record<string, string> | undefined;
13283
+ groupId?: string | undefined;
13284
+ GroupId?: string | undefined;
12546
13285
  } | undefined;
12547
13286
  expiryDate?: number | undefined;
12548
13287
  rpcUrl?: string | undefined;
@@ -12568,6 +13307,8 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
12568
13307
  pubkeyhex: string;
12569
13308
  keylist?: string[] | undefined;
12570
13309
  ClientKeys?: Record<string, string> | undefined;
13310
+ groupId?: string | undefined;
13311
+ GroupId?: string | undefined;
12571
13312
  } | undefined;
12572
13313
  useCustomGas?: unknown;
12573
13314
  chainId?: unknown;
@@ -12597,6 +13338,8 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
12597
13338
  pubkeyhex: string;
12598
13339
  keylist?: string[] | undefined;
12599
13340
  ClientKeys?: Record<string, string> | undefined;
13341
+ groupId?: string | undefined;
13342
+ GroupId?: string | undefined;
12600
13343
  } | undefined;
12601
13344
  expiryDate?: number | undefined;
12602
13345
  rpcUrl?: string | undefined;
@@ -12622,6 +13365,8 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
12622
13365
  pubkeyhex: string;
12623
13366
  keylist?: string[] | undefined;
12624
13367
  ClientKeys?: Record<string, string> | undefined;
13368
+ groupId?: string | undefined;
13369
+ GroupId?: string | undefined;
12625
13370
  } | undefined;
12626
13371
  useCustomGas?: unknown;
12627
13372
  chainId?: unknown;
@@ -15849,14 +16594,20 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
15849
16594
  pubkeyhex: z.ZodString;
15850
16595
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
15851
16596
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
16597
+ groupId: z.ZodOptional<z.ZodString>;
16598
+ GroupId: z.ZodOptional<z.ZodString>;
15852
16599
  }, "strip", z.ZodTypeAny, {
15853
16600
  pubkeyhex: string;
15854
16601
  keylist?: string[] | undefined;
15855
16602
  ClientKeys?: Record<string, string> | undefined;
16603
+ groupId?: string | undefined;
16604
+ GroupId?: string | undefined;
15856
16605
  }, {
15857
16606
  pubkeyhex: string;
15858
16607
  keylist?: string[] | undefined;
15859
16608
  ClientKeys?: Record<string, string> | undefined;
16609
+ groupId?: string | undefined;
16610
+ GroupId?: string | undefined;
15860
16611
  }>>;
15861
16612
  purposeText: z.ZodString;
15862
16613
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -15903,6 +16654,8 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
15903
16654
  pubkeyhex: string;
15904
16655
  keylist?: string[] | undefined;
15905
16656
  ClientKeys?: Record<string, string> | undefined;
16657
+ groupId?: string | undefined;
16658
+ GroupId?: string | undefined;
15906
16659
  } | undefined;
15907
16660
  expiryDate?: number | undefined;
15908
16661
  rpcUrl?: string | undefined;
@@ -15926,6 +16679,8 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
15926
16679
  pubkeyhex: string;
15927
16680
  keylist?: string[] | undefined;
15928
16681
  ClientKeys?: Record<string, string> | undefined;
16682
+ groupId?: string | undefined;
16683
+ GroupId?: string | undefined;
15929
16684
  } | undefined;
15930
16685
  useCustomGas?: unknown;
15931
16686
  chainId?: unknown;
@@ -15953,6 +16708,8 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
15953
16708
  pubkeyhex: string;
15954
16709
  keylist?: string[] | undefined;
15955
16710
  ClientKeys?: Record<string, string> | undefined;
16711
+ groupId?: string | undefined;
16712
+ GroupId?: string | undefined;
15956
16713
  } | undefined;
15957
16714
  expiryDate?: number | undefined;
15958
16715
  rpcUrl?: string | undefined;
@@ -15976,6 +16733,8 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
15976
16733
  pubkeyhex: string;
15977
16734
  keylist?: string[] | undefined;
15978
16735
  ClientKeys?: Record<string, string> | undefined;
16736
+ groupId?: string | undefined;
16737
+ GroupId?: string | undefined;
15979
16738
  } | undefined;
15980
16739
  useCustomGas?: unknown;
15981
16740
  chainId?: unknown;
@@ -16000,14 +16759,20 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
16000
16759
  pubkeyhex: z.ZodString;
16001
16760
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16002
16761
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
16762
+ groupId: z.ZodOptional<z.ZodString>;
16763
+ GroupId: z.ZodOptional<z.ZodString>;
16003
16764
  }, "strip", z.ZodTypeAny, {
16004
16765
  pubkeyhex: string;
16005
16766
  keylist?: string[] | undefined;
16006
16767
  ClientKeys?: Record<string, string> | undefined;
16768
+ groupId?: string | undefined;
16769
+ GroupId?: string | undefined;
16007
16770
  }, {
16008
16771
  pubkeyhex: string;
16009
16772
  keylist?: string[] | undefined;
16010
16773
  ClientKeys?: Record<string, string> | undefined;
16774
+ groupId?: string | undefined;
16775
+ GroupId?: string | undefined;
16011
16776
  }>>;
16012
16777
  purposeText: z.ZodString;
16013
16778
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -16054,6 +16819,8 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
16054
16819
  pubkeyhex: string;
16055
16820
  keylist?: string[] | undefined;
16056
16821
  ClientKeys?: Record<string, string> | undefined;
16822
+ groupId?: string | undefined;
16823
+ GroupId?: string | undefined;
16057
16824
  } | undefined;
16058
16825
  expiryDate?: number | undefined;
16059
16826
  rpcUrl?: string | undefined;
@@ -16077,6 +16844,8 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
16077
16844
  pubkeyhex: string;
16078
16845
  keylist?: string[] | undefined;
16079
16846
  ClientKeys?: Record<string, string> | undefined;
16847
+ groupId?: string | undefined;
16848
+ GroupId?: string | undefined;
16080
16849
  } | undefined;
16081
16850
  useCustomGas?: unknown;
16082
16851
  chainId?: unknown;
@@ -16104,6 +16873,8 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
16104
16873
  pubkeyhex: string;
16105
16874
  keylist?: string[] | undefined;
16106
16875
  ClientKeys?: Record<string, string> | undefined;
16876
+ groupId?: string | undefined;
16877
+ GroupId?: string | undefined;
16107
16878
  } | undefined;
16108
16879
  expiryDate?: number | undefined;
16109
16880
  rpcUrl?: string | undefined;
@@ -16127,6 +16898,8 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
16127
16898
  pubkeyhex: string;
16128
16899
  keylist?: string[] | undefined;
16129
16900
  ClientKeys?: Record<string, string> | undefined;
16901
+ groupId?: string | undefined;
16902
+ GroupId?: string | undefined;
16130
16903
  } | undefined;
16131
16904
  useCustomGas?: unknown;
16132
16905
  chainId?: unknown;
@@ -16151,14 +16924,20 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
16151
16924
  pubkeyhex: z.ZodString;
16152
16925
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16153
16926
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
16927
+ groupId: z.ZodOptional<z.ZodString>;
16928
+ GroupId: z.ZodOptional<z.ZodString>;
16154
16929
  }, "strip", z.ZodTypeAny, {
16155
16930
  pubkeyhex: string;
16156
16931
  keylist?: string[] | undefined;
16157
16932
  ClientKeys?: Record<string, string> | undefined;
16933
+ groupId?: string | undefined;
16934
+ GroupId?: string | undefined;
16158
16935
  }, {
16159
16936
  pubkeyhex: string;
16160
16937
  keylist?: string[] | undefined;
16161
16938
  ClientKeys?: Record<string, string> | undefined;
16939
+ groupId?: string | undefined;
16940
+ GroupId?: string | undefined;
16162
16941
  }>>;
16163
16942
  purposeText: z.ZodString;
16164
16943
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -16205,6 +16984,8 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
16205
16984
  pubkeyhex: string;
16206
16985
  keylist?: string[] | undefined;
16207
16986
  ClientKeys?: Record<string, string> | undefined;
16987
+ groupId?: string | undefined;
16988
+ GroupId?: string | undefined;
16208
16989
  } | undefined;
16209
16990
  expiryDate?: number | undefined;
16210
16991
  rpcUrl?: string | undefined;
@@ -16228,6 +17009,8 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
16228
17009
  pubkeyhex: string;
16229
17010
  keylist?: string[] | undefined;
16230
17011
  ClientKeys?: Record<string, string> | undefined;
17012
+ groupId?: string | undefined;
17013
+ GroupId?: string | undefined;
16231
17014
  } | undefined;
16232
17015
  useCustomGas?: unknown;
16233
17016
  chainId?: unknown;
@@ -16255,6 +17038,8 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
16255
17038
  pubkeyhex: string;
16256
17039
  keylist?: string[] | undefined;
16257
17040
  ClientKeys?: Record<string, string> | undefined;
17041
+ groupId?: string | undefined;
17042
+ GroupId?: string | undefined;
16258
17043
  } | undefined;
16259
17044
  expiryDate?: number | undefined;
16260
17045
  rpcUrl?: string | undefined;
@@ -16278,6 +17063,8 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
16278
17063
  pubkeyhex: string;
16279
17064
  keylist?: string[] | undefined;
16280
17065
  ClientKeys?: Record<string, string> | undefined;
17066
+ groupId?: string | undefined;
17067
+ GroupId?: string | undefined;
16281
17068
  } | undefined;
16282
17069
  useCustomGas?: unknown;
16283
17070
  chainId?: unknown;
@@ -16302,14 +17089,20 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
16302
17089
  pubkeyhex: z.ZodString;
16303
17090
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16304
17091
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
17092
+ groupId: z.ZodOptional<z.ZodString>;
17093
+ GroupId: z.ZodOptional<z.ZodString>;
16305
17094
  }, "strip", z.ZodTypeAny, {
16306
17095
  pubkeyhex: string;
16307
17096
  keylist?: string[] | undefined;
16308
17097
  ClientKeys?: Record<string, string> | undefined;
17098
+ groupId?: string | undefined;
17099
+ GroupId?: string | undefined;
16309
17100
  }, {
16310
17101
  pubkeyhex: string;
16311
17102
  keylist?: string[] | undefined;
16312
17103
  ClientKeys?: Record<string, string> | undefined;
17104
+ groupId?: string | undefined;
17105
+ GroupId?: string | undefined;
16313
17106
  }>>;
16314
17107
  purposeText: z.ZodString;
16315
17108
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -16356,6 +17149,8 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
16356
17149
  pubkeyhex: string;
16357
17150
  keylist?: string[] | undefined;
16358
17151
  ClientKeys?: Record<string, string> | undefined;
17152
+ groupId?: string | undefined;
17153
+ GroupId?: string | undefined;
16359
17154
  } | undefined;
16360
17155
  expiryDate?: number | undefined;
16361
17156
  rpcUrl?: string | undefined;
@@ -16379,6 +17174,8 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
16379
17174
  pubkeyhex: string;
16380
17175
  keylist?: string[] | undefined;
16381
17176
  ClientKeys?: Record<string, string> | undefined;
17177
+ groupId?: string | undefined;
17178
+ GroupId?: string | undefined;
16382
17179
  } | undefined;
16383
17180
  useCustomGas?: unknown;
16384
17181
  chainId?: unknown;
@@ -16406,6 +17203,8 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
16406
17203
  pubkeyhex: string;
16407
17204
  keylist?: string[] | undefined;
16408
17205
  ClientKeys?: Record<string, string> | undefined;
17206
+ groupId?: string | undefined;
17207
+ GroupId?: string | undefined;
16409
17208
  } | undefined;
16410
17209
  expiryDate?: number | undefined;
16411
17210
  rpcUrl?: string | undefined;
@@ -16429,6 +17228,8 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
16429
17228
  pubkeyhex: string;
16430
17229
  keylist?: string[] | undefined;
16431
17230
  ClientKeys?: Record<string, string> | undefined;
17231
+ groupId?: string | undefined;
17232
+ GroupId?: string | undefined;
16432
17233
  } | undefined;
16433
17234
  useCustomGas?: unknown;
16434
17235
  chainId?: unknown;
@@ -16453,14 +17254,20 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
16453
17254
  pubkeyhex: z.ZodString;
16454
17255
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16455
17256
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
17257
+ groupId: z.ZodOptional<z.ZodString>;
17258
+ GroupId: z.ZodOptional<z.ZodString>;
16456
17259
  }, "strip", z.ZodTypeAny, {
16457
17260
  pubkeyhex: string;
16458
17261
  keylist?: string[] | undefined;
16459
17262
  ClientKeys?: Record<string, string> | undefined;
17263
+ groupId?: string | undefined;
17264
+ GroupId?: string | undefined;
16460
17265
  }, {
16461
17266
  pubkeyhex: string;
16462
17267
  keylist?: string[] | undefined;
16463
17268
  ClientKeys?: Record<string, string> | undefined;
17269
+ groupId?: string | undefined;
17270
+ GroupId?: string | undefined;
16464
17271
  }>>;
16465
17272
  purposeText: z.ZodString;
16466
17273
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -16507,6 +17314,8 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
16507
17314
  pubkeyhex: string;
16508
17315
  keylist?: string[] | undefined;
16509
17316
  ClientKeys?: Record<string, string> | undefined;
17317
+ groupId?: string | undefined;
17318
+ GroupId?: string | undefined;
16510
17319
  } | undefined;
16511
17320
  expiryDate?: number | undefined;
16512
17321
  rpcUrl?: string | undefined;
@@ -16530,6 +17339,8 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
16530
17339
  pubkeyhex: string;
16531
17340
  keylist?: string[] | undefined;
16532
17341
  ClientKeys?: Record<string, string> | undefined;
17342
+ groupId?: string | undefined;
17343
+ GroupId?: string | undefined;
16533
17344
  } | undefined;
16534
17345
  useCustomGas?: unknown;
16535
17346
  chainId?: unknown;
@@ -16557,6 +17368,8 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
16557
17368
  pubkeyhex: string;
16558
17369
  keylist?: string[] | undefined;
16559
17370
  ClientKeys?: Record<string, string> | undefined;
17371
+ groupId?: string | undefined;
17372
+ GroupId?: string | undefined;
16560
17373
  } | undefined;
16561
17374
  expiryDate?: number | undefined;
16562
17375
  rpcUrl?: string | undefined;
@@ -16580,6 +17393,8 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
16580
17393
  pubkeyhex: string;
16581
17394
  keylist?: string[] | undefined;
16582
17395
  ClientKeys?: Record<string, string> | undefined;
17396
+ groupId?: string | undefined;
17397
+ GroupId?: string | undefined;
16583
17398
  } | undefined;
16584
17399
  useCustomGas?: unknown;
16585
17400
  chainId?: unknown;
@@ -16604,14 +17419,20 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
16604
17419
  pubkeyhex: z.ZodString;
16605
17420
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16606
17421
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
17422
+ groupId: z.ZodOptional<z.ZodString>;
17423
+ GroupId: z.ZodOptional<z.ZodString>;
16607
17424
  }, "strip", z.ZodTypeAny, {
16608
17425
  pubkeyhex: string;
16609
17426
  keylist?: string[] | undefined;
16610
17427
  ClientKeys?: Record<string, string> | undefined;
17428
+ groupId?: string | undefined;
17429
+ GroupId?: string | undefined;
16611
17430
  }, {
16612
17431
  pubkeyhex: string;
16613
17432
  keylist?: string[] | undefined;
16614
17433
  ClientKeys?: Record<string, string> | undefined;
17434
+ groupId?: string | undefined;
17435
+ GroupId?: string | undefined;
16615
17436
  }>>;
16616
17437
  purposeText: z.ZodString;
16617
17438
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -16658,6 +17479,8 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
16658
17479
  pubkeyhex: string;
16659
17480
  keylist?: string[] | undefined;
16660
17481
  ClientKeys?: Record<string, string> | undefined;
17482
+ groupId?: string | undefined;
17483
+ GroupId?: string | undefined;
16661
17484
  } | undefined;
16662
17485
  expiryDate?: number | undefined;
16663
17486
  rpcUrl?: string | undefined;
@@ -16681,6 +17504,8 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
16681
17504
  pubkeyhex: string;
16682
17505
  keylist?: string[] | undefined;
16683
17506
  ClientKeys?: Record<string, string> | undefined;
17507
+ groupId?: string | undefined;
17508
+ GroupId?: string | undefined;
16684
17509
  } | undefined;
16685
17510
  useCustomGas?: unknown;
16686
17511
  chainId?: unknown;
@@ -16708,6 +17533,8 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
16708
17533
  pubkeyhex: string;
16709
17534
  keylist?: string[] | undefined;
16710
17535
  ClientKeys?: Record<string, string> | undefined;
17536
+ groupId?: string | undefined;
17537
+ GroupId?: string | undefined;
16711
17538
  } | undefined;
16712
17539
  expiryDate?: number | undefined;
16713
17540
  rpcUrl?: string | undefined;
@@ -16731,6 +17558,8 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
16731
17558
  pubkeyhex: string;
16732
17559
  keylist?: string[] | undefined;
16733
17560
  ClientKeys?: Record<string, string> | undefined;
17561
+ groupId?: string | undefined;
17562
+ GroupId?: string | undefined;
16734
17563
  } | undefined;
16735
17564
  useCustomGas?: unknown;
16736
17565
  chainId?: unknown;
@@ -16755,14 +17584,20 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
16755
17584
  pubkeyhex: z.ZodString;
16756
17585
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16757
17586
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
17587
+ groupId: z.ZodOptional<z.ZodString>;
17588
+ GroupId: z.ZodOptional<z.ZodString>;
16758
17589
  }, "strip", z.ZodTypeAny, {
16759
17590
  pubkeyhex: string;
16760
17591
  keylist?: string[] | undefined;
16761
17592
  ClientKeys?: Record<string, string> | undefined;
17593
+ groupId?: string | undefined;
17594
+ GroupId?: string | undefined;
16762
17595
  }, {
16763
17596
  pubkeyhex: string;
16764
17597
  keylist?: string[] | undefined;
16765
17598
  ClientKeys?: Record<string, string> | undefined;
17599
+ groupId?: string | undefined;
17600
+ GroupId?: string | undefined;
16766
17601
  }>>;
16767
17602
  purposeText: z.ZodString;
16768
17603
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -16809,6 +17644,8 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
16809
17644
  pubkeyhex: string;
16810
17645
  keylist?: string[] | undefined;
16811
17646
  ClientKeys?: Record<string, string> | undefined;
17647
+ groupId?: string | undefined;
17648
+ GroupId?: string | undefined;
16812
17649
  } | undefined;
16813
17650
  expiryDate?: number | undefined;
16814
17651
  rpcUrl?: string | undefined;
@@ -16831,6 +17668,8 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
16831
17668
  pubkeyhex: string;
16832
17669
  keylist?: string[] | undefined;
16833
17670
  ClientKeys?: Record<string, string> | undefined;
17671
+ groupId?: string | undefined;
17672
+ GroupId?: string | undefined;
16834
17673
  } | undefined;
16835
17674
  useCustomGas?: unknown;
16836
17675
  chainId?: unknown;
@@ -16859,6 +17698,8 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
16859
17698
  pubkeyhex: string;
16860
17699
  keylist?: string[] | undefined;
16861
17700
  ClientKeys?: Record<string, string> | undefined;
17701
+ groupId?: string | undefined;
17702
+ GroupId?: string | undefined;
16862
17703
  } | undefined;
16863
17704
  expiryDate?: number | undefined;
16864
17705
  rpcUrl?: string | undefined;
@@ -16881,6 +17722,8 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
16881
17722
  pubkeyhex: string;
16882
17723
  keylist?: string[] | undefined;
16883
17724
  ClientKeys?: Record<string, string> | undefined;
17725
+ groupId?: string | undefined;
17726
+ GroupId?: string | undefined;
16884
17727
  } | undefined;
16885
17728
  useCustomGas?: unknown;
16886
17729
  chainId?: unknown;
@@ -16906,14 +17749,20 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
16906
17749
  pubkeyhex: z.ZodString;
16907
17750
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16908
17751
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
17752
+ groupId: z.ZodOptional<z.ZodString>;
17753
+ GroupId: z.ZodOptional<z.ZodString>;
16909
17754
  }, "strip", z.ZodTypeAny, {
16910
17755
  pubkeyhex: string;
16911
17756
  keylist?: string[] | undefined;
16912
17757
  ClientKeys?: Record<string, string> | undefined;
17758
+ groupId?: string | undefined;
17759
+ GroupId?: string | undefined;
16913
17760
  }, {
16914
17761
  pubkeyhex: string;
16915
17762
  keylist?: string[] | undefined;
16916
17763
  ClientKeys?: Record<string, string> | undefined;
17764
+ groupId?: string | undefined;
17765
+ GroupId?: string | undefined;
16917
17766
  }>>;
16918
17767
  purposeText: z.ZodString;
16919
17768
  useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
@@ -16960,6 +17809,8 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
16960
17809
  pubkeyhex: string;
16961
17810
  keylist?: string[] | undefined;
16962
17811
  ClientKeys?: Record<string, string> | undefined;
17812
+ groupId?: string | undefined;
17813
+ GroupId?: string | undefined;
16963
17814
  } | undefined;
16964
17815
  expiryDate?: number | undefined;
16965
17816
  rpcUrl?: string | undefined;
@@ -16982,6 +17833,8 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
16982
17833
  pubkeyhex: string;
16983
17834
  keylist?: string[] | undefined;
16984
17835
  ClientKeys?: Record<string, string> | undefined;
17836
+ groupId?: string | undefined;
17837
+ GroupId?: string | undefined;
16985
17838
  } | undefined;
16986
17839
  useCustomGas?: unknown;
16987
17840
  chainId?: unknown;
@@ -17010,6 +17863,8 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
17010
17863
  pubkeyhex: string;
17011
17864
  keylist?: string[] | undefined;
17012
17865
  ClientKeys?: Record<string, string> | undefined;
17866
+ groupId?: string | undefined;
17867
+ GroupId?: string | undefined;
17013
17868
  } | undefined;
17014
17869
  expiryDate?: number | undefined;
17015
17870
  rpcUrl?: string | undefined;
@@ -17032,6 +17887,8 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
17032
17887
  pubkeyhex: string;
17033
17888
  keylist?: string[] | undefined;
17034
17889
  ClientKeys?: Record<string, string> | undefined;
17890
+ groupId?: string | undefined;
17891
+ GroupId?: string | undefined;
17035
17892
  } | undefined;
17036
17893
  useCustomGas?: unknown;
17037
17894
  chainId?: unknown;
@@ -17169,4 +18026,4 @@ declare function getAgentCatalog(): {
17169
18026
  };
17170
18027
  };
17171
18028
 
17172
- export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpAaveV4FetchMarketInput, type McpAaveV4FetchMarketOutput, type McpAaveV4FetchMarketsInput, type McpAaveV4FetchMarketsOutput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaFetchSusdeApyInput, type McpEthenaFetchSusdeApyOutput, type McpEthenaStakeInput, type McpEulerV2FetchEarnVaultsInput, type McpEulerV2FetchEarnVaultsOutput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoFetchStethAprInput, type McpLidoFetchStethAprOutput, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMapleFetchMarketInput, type McpMapleFetchMarketOutput, type McpMapleFetchMarketsInput, type McpMapleFetchMarketsOutput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoFetchMidnightBooksInput, type McpMorphoFetchMidnightBooksOutput, type McpMorphoFetchMidnightOffersInput, type McpMorphoFetchMidnightOffersOutput, type McpMorphoFetchMidnightPositionsInput, type McpMorphoFetchMidnightPositionsOutput, type McpMorphoFetchMidnightQuoteInput, type McpMorphoFetchMidnightQuoteOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyFetchSusdsRateInput, type McpSkyFetchSusdsRateOutput, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildAllowlistFinalizeMultisignInput, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CheckPermissionsInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4KycApplyLinkInput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4FetchMarketInputSchema, mcpAaveV4FetchMarketOutputSchema, mcpAaveV4FetchMarketsInputSchema, mcpAaveV4FetchMarketsOutputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpAerodromeBuildAddLiquidityMultisignInputSchema, mcpAerodromeBuildClBurnMultisignInputSchema, mcpAerodromeBuildClCollectFeesMultisignInputSchema, mcpAerodromeBuildClDecreaseMultisignInputSchema, mcpAerodromeBuildClIncreaseMultisignInputSchema, mcpAerodromeBuildClMintMultisignInputSchema, mcpAerodromeBuildClaimEmissionsMultisignInputSchema, mcpAerodromeBuildClaimFeesMultisignInputSchema, mcpAerodromeBuildGaugeStakeMultisignInputSchema, mcpAerodromeBuildGaugeUnstakeMultisignInputSchema, mcpAerodromeBuildRemoveLiquidityMultisignInputSchema, mcpAerodromeBuildSwapMultisignInputSchema, mcpAerodromeDiscoverPoolsInputSchema, mcpAerodromeDiscoverPoolsOutputSchema, mcpAerodromeFetchLpYieldsInputSchema, mcpAerodromeFetchLpYieldsOutputSchema, mcpAerodromeFetchPoolsInputSchema, mcpAerodromeFetchPoolsOutputSchema, mcpAerodromeFetchPositionsInputSchema, mcpAerodromeFetchPositionsOutputSchema, mcpAerodromeFetchStockLpYieldsInputSchema, mcpAerodromeFetchStockLpYieldsOutputSchema, mcpAerodromeQuoteAddLiquidityInputSchema, mcpAerodromeQuoteAddLiquidityOutputSchema, mcpAerodromeQuoteClDepositInputSchema, mcpAerodromeQuoteClDepositOutputSchema, mcpAerodromeQuoteInputSchema, mcpAerodromeQuoteOutputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCompoundV3BulkerInputSchema, mcpCompoundV3ClaimRewardsInputSchema, mcpCompoundV3FetchAccountInputSchema, mcpCompoundV3FetchAccountOutputSchema, mcpCompoundV3FetchMarketInputSchema, mcpCompoundV3FetchMarketOutputSchema, mcpCompoundV3FetchMarketsInputSchema, mcpCompoundV3FetchMarketsOutputSchema, mcpCompoundV3RepayInputSchema, mcpCompoundV3SupplyInputSchema, mcpCompoundV3WithdrawInputSchema, mcpContinuumDaoAttachInputSchema, mcpContinuumDaoCastVoteBravoInputSchema, mcpContinuumDaoCastVoteDeltaInputSchema, mcpContinuumDaoCreateLockInputSchema, mcpContinuumDaoDelegateInputSchema, mcpContinuumDaoExplainProposalInputSchema, mcpContinuumDaoExplainProposalOutputSchema, mcpContinuumDaoFetchDelegatesInputSchema, mcpContinuumDaoFetchDelegatesOutputSchema, mcpContinuumDaoFetchLiveProposalsInputSchema, mcpContinuumDaoFetchLiveProposalsOutputSchema, mcpContinuumDaoFetchProposalInputSchema, mcpContinuumDaoFetchProposalOutputSchema, mcpContinuumDaoFetchProposalStateInputSchema, mcpContinuumDaoFetchProposalStateOutputSchema, mcpContinuumDaoFetchProposalsInputSchema, mcpContinuumDaoFetchProposalsOutputSchema, mcpContinuumDaoFetchVotingPowerInputSchema, mcpContinuumDaoFetchVotingPowerOutputSchema, mcpContinuumDaoForumCreateIdeaInputSchema, mcpContinuumDaoForumCreateIdeaOutputSchema, mcpContinuumDaoForumCreateTopicInputSchema, mcpContinuumDaoForumCreateTopicOutputSchema, mcpContinuumDaoForumDeleteInputSchema, mcpContinuumDaoForumDeleteOutputSchema, mcpContinuumDaoForumFetchPostInputSchema, mcpContinuumDaoForumFetchPostOutputSchema, mcpContinuumDaoForumFetchThreadInputSchema, mcpContinuumDaoForumFetchThreadOutputSchema, mcpContinuumDaoForumMarkReadInputSchema, mcpContinuumDaoForumMarkReadOutputSchema, mcpContinuumDaoForumMarkUnreadInputSchema, mcpContinuumDaoForumMarkUnreadOutputSchema, mcpContinuumDaoForumMeInputSchema, mcpContinuumDaoForumMeOutputSchema, mcpContinuumDaoForumReactInputSchema, mcpContinuumDaoForumReactOutputSchema, mcpContinuumDaoForumRecentInputSchema, mcpContinuumDaoForumRecentOutputSchema, mcpContinuumDaoForumReplyCountInputSchema, mcpContinuumDaoForumReplyCountOutputSchema, mcpContinuumDaoForumReplyInputSchema, mcpContinuumDaoForumReplyOutputSchema, mcpContinuumDaoForumResolveInputSchema, mcpContinuumDaoForumResolveOutputSchema, mcpContinuumDaoForumSearchInputSchema, mcpContinuumDaoForumSearchOutputSchema, mcpContinuumDaoForumSectionsInputSchema, mcpContinuumDaoForumSectionsOutputSchema, mcpContinuumDaoForumSignInEligibleInputSchema, mcpContinuumDaoForumSignInEligibleOutputSchema, mcpContinuumDaoForumSignInInputSchema, mcpContinuumDaoForumSignOutInputSchema, mcpContinuumDaoForumSignOutOutputSchema, mcpContinuumDaoForumUnreadInputSchema, mcpContinuumDaoForumUnreadOutputSchema, mcpContinuumDaoForumUserPostIdsInputSchema, mcpContinuumDaoForumUserPostIdsOutputSchema, mcpContinuumDaoIncreaseAmountInputSchema, mcpContinuumDaoIncreaseUnlockTimeInputSchema, mcpContinuumDaoMergeInputSchema, mcpContinuumDaoProposalIdInputSchema, mcpContinuumDaoProposeBravoInputSchema, mcpContinuumDaoProposeDeltaInputSchema, mcpContinuumDaoRegisterProposalInputSchema, mcpContinuumDaoRegisterProposalOutputSchema, mcpContinuumDaoRequestDetachInputSchema, mcpContinuumDaoSplitInputSchema, mcpContinuumDaoTokenIdInputSchema, mcpContinuumDaoTransferInputSchema, mcpContinuumDaoUndelegateInputSchema, mcpCurveDaoBuildAddLiquidityMultisignInputSchema, mcpCurveDaoBuildGaugeDepositMultisignInputSchema, mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoFetchImportantPoolsInputSchema, mcpCurveDaoFetchImportantPoolsOutputSchema, mcpCurveDaoFetchLpYieldsInputSchema, mcpCurveDaoFetchLpYieldsOutputSchema, mcpCurveDaoQuoteAddLiquidityInputSchema, mcpCurveDaoQuoteAddLiquidityOutputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpCurveDaoQuoteRemoveLiquidityInputSchema, mcpCurveDaoQuoteRemoveLiquidityOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaFetchSusdeApyInputSchema, mcpEthenaFetchSusdeApyOutputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchEarnVaultsInputSchema, mcpEulerV2FetchEarnVaultsOutputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchStockMarketsInputSchema, mcpHyperliquidFetchStockMarketsOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultApysInputSchema, mcpHyperliquidFetchVaultApysOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoFetchStethAprInputSchema, mcpLidoFetchStethAprOutputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleFetchMarketInputSchema, mcpMapleFetchMarketOutputSchema, mcpMapleFetchMarketsInputSchema, mcpMapleFetchMarketsOutputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightCancelLendOfferInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightLendOfferInputSchema, mcpMorphoMidnightRepayInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpPendleBuildAddLiquidityMultisignInputSchema, mcpPendleBuildMintPyMultisignInputSchema, mcpPendleBuildMintSyMultisignInputSchema, mcpPendleBuildRedeemPyMultisignInputSchema, mcpPendleBuildRedeemRewardsMultisignInputSchema, mcpPendleBuildRedeemSyMultisignInputSchema, mcpPendleBuildRemoveLiquidityMultisignInputSchema, mcpPendleBuildSwapMultisignInputSchema, mcpPendleFetchMarketsInputSchema, mcpPendleFetchMarketsOutputSchema, mcpPendleFetchMerkleRewardsInputSchema, mcpPendleFetchMerkleRewardsOutputSchema, mcpPendleFetchPositionsInputSchema, mcpPendleFetchPositionsOutputSchema, mcpPendleFetchPricesInputSchema, mcpPendleFetchPricesOutputSchema, mcpPendleQuoteAddLiquidityInputSchema, mcpPendleQuoteMintPyInputSchema, mcpPendleQuoteMintSyInputSchema, mcpPendleQuoteOutputSchema, mcpPendleQuoteRedeemPyInputSchema, mcpPendleQuoteRedeemSyInputSchema, mcpPendleQuoteRemoveLiquidityInputSchema, mcpPendleQuoteSwapInputSchema, mcpPendleSearchAssetsInputSchema, mcpPendleSearchAssetsOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyFetchSusdsRateInputSchema, mcpSkyFetchSusdsRateOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CheckPermissionsInputSchema, mcpUniswapV4CheckPermissionsOutputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4KycApplyLinkInputSchema, mcpUniswapV4KycApplyLinkOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
18029
+ export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpAaveV4FetchMarketInput, type McpAaveV4FetchMarketOutput, type McpAaveV4FetchMarketsInput, type McpAaveV4FetchMarketsOutput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaFetchSusdeApyInput, type McpEthenaFetchSusdeApyOutput, type McpEthenaStakeInput, type McpEulerV2FetchEarnVaultsInput, type McpEulerV2FetchEarnVaultsOutput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoFetchStethAprInput, type McpLidoFetchStethAprOutput, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMapleFetchMarketInput, type McpMapleFetchMarketOutput, type McpMapleFetchMarketsInput, type McpMapleFetchMarketsOutput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoFetchMidnightBooksInput, type McpMorphoFetchMidnightBooksOutput, type McpMorphoFetchMidnightOffersInput, type McpMorphoFetchMidnightOffersOutput, type McpMorphoFetchMidnightPositionsInput, type McpMorphoFetchMidnightPositionsOutput, type McpMorphoFetchMidnightQuoteInput, type McpMorphoFetchMidnightQuoteOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyFetchSusdsRateInput, type McpSkyFetchSusdsRateOutput, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildAllowlistFinalizeMultisignInput, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CheckPermissionsInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4KycApplyLinkInput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4FetchMarketInputSchema, mcpAaveV4FetchMarketOutputSchema, mcpAaveV4FetchMarketsInputSchema, mcpAaveV4FetchMarketsOutputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpAerodromeBuildAddLiquidityMultisignInputSchema, mcpAerodromeBuildClBurnMultisignInputSchema, mcpAerodromeBuildClCollectFeesMultisignInputSchema, mcpAerodromeBuildClDecreaseMultisignInputSchema, mcpAerodromeBuildClIncreaseMultisignInputSchema, mcpAerodromeBuildClMintMultisignInputSchema, mcpAerodromeBuildClaimEmissionsMultisignInputSchema, mcpAerodromeBuildClaimFeesMultisignInputSchema, mcpAerodromeBuildGaugeStakeMultisignInputSchema, mcpAerodromeBuildGaugeUnstakeMultisignInputSchema, mcpAerodromeBuildRemoveLiquidityMultisignInputSchema, mcpAerodromeBuildSwapMultisignInputSchema, mcpAerodromeDiscoverPoolsInputSchema, mcpAerodromeDiscoverPoolsOutputSchema, mcpAerodromeFetchLpYieldsInputSchema, mcpAerodromeFetchLpYieldsOutputSchema, mcpAerodromeFetchPoolsInputSchema, mcpAerodromeFetchPoolsOutputSchema, mcpAerodromeFetchPositionsInputSchema, mcpAerodromeFetchPositionsOutputSchema, mcpAerodromeFetchStockLpYieldsInputSchema, mcpAerodromeFetchStockLpYieldsOutputSchema, mcpAerodromeQuoteAddLiquidityInputSchema, mcpAerodromeQuoteAddLiquidityOutputSchema, mcpAerodromeQuoteClDepositInputSchema, mcpAerodromeQuoteClDepositOutputSchema, mcpAerodromeQuoteInputSchema, mcpAerodromeQuoteOutputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCompoundV3BulkerInputSchema, mcpCompoundV3ClaimRewardsInputSchema, mcpCompoundV3FetchAccountInputSchema, mcpCompoundV3FetchAccountOutputSchema, mcpCompoundV3FetchMarketInputSchema, mcpCompoundV3FetchMarketOutputSchema, mcpCompoundV3FetchMarketsInputSchema, mcpCompoundV3FetchMarketsOutputSchema, mcpCompoundV3RepayInputSchema, mcpCompoundV3SupplyInputSchema, mcpCompoundV3WithdrawInputSchema, mcpContinuumDaoAttachInputSchema, mcpContinuumDaoCastVoteBravoInputSchema, mcpContinuumDaoCastVoteDeltaInputSchema, mcpContinuumDaoCreateLockInputSchema, mcpContinuumDaoDelegateInputSchema, mcpContinuumDaoExplainProposalInputSchema, mcpContinuumDaoExplainProposalOutputSchema, mcpContinuumDaoFetchDelegatesInputSchema, mcpContinuumDaoFetchDelegatesOutputSchema, mcpContinuumDaoFetchLiveProposalsInputSchema, mcpContinuumDaoFetchLiveProposalsOutputSchema, mcpContinuumDaoFetchProposalInputSchema, mcpContinuumDaoFetchProposalOutputSchema, mcpContinuumDaoFetchProposalStateInputSchema, mcpContinuumDaoFetchProposalStateOutputSchema, mcpContinuumDaoFetchProposalsInputSchema, mcpContinuumDaoFetchProposalsOutputSchema, mcpContinuumDaoFetchVotingPowerInputSchema, mcpContinuumDaoFetchVotingPowerOutputSchema, mcpContinuumDaoForumCreateIdeaInputSchema, mcpContinuumDaoForumCreateIdeaOutputSchema, mcpContinuumDaoForumCreateTopicInputSchema, mcpContinuumDaoForumCreateTopicOutputSchema, mcpContinuumDaoForumDeleteInputSchema, mcpContinuumDaoForumDeleteOutputSchema, mcpContinuumDaoForumFetchPostInputSchema, mcpContinuumDaoForumFetchPostOutputSchema, mcpContinuumDaoForumFetchThreadInputSchema, mcpContinuumDaoForumFetchThreadOutputSchema, mcpContinuumDaoForumMarkReadInputSchema, mcpContinuumDaoForumMarkReadOutputSchema, mcpContinuumDaoForumMarkUnreadInputSchema, mcpContinuumDaoForumMarkUnreadOutputSchema, mcpContinuumDaoForumMeInputSchema, mcpContinuumDaoForumMeOutputSchema, mcpContinuumDaoForumReactInputSchema, mcpContinuumDaoForumReactOutputSchema, mcpContinuumDaoForumRecentInputSchema, mcpContinuumDaoForumRecentOutputSchema, mcpContinuumDaoForumReplyCountInputSchema, mcpContinuumDaoForumReplyCountOutputSchema, mcpContinuumDaoForumReplyInputSchema, mcpContinuumDaoForumReplyOutputSchema, mcpContinuumDaoForumResolveInputSchema, mcpContinuumDaoForumResolveOutputSchema, mcpContinuumDaoForumSearchInputSchema, mcpContinuumDaoForumSearchOutputSchema, mcpContinuumDaoForumSectionsInputSchema, mcpContinuumDaoForumSectionsOutputSchema, mcpContinuumDaoForumSignInEligibleInputSchema, mcpContinuumDaoForumSignInEligibleOutputSchema, mcpContinuumDaoForumSignInInputSchema, mcpContinuumDaoForumSignOutInputSchema, mcpContinuumDaoForumSignOutOutputSchema, mcpContinuumDaoForumUnreadInputSchema, mcpContinuumDaoForumUnreadOutputSchema, mcpContinuumDaoForumUserPostIdsInputSchema, mcpContinuumDaoForumUserPostIdsOutputSchema, mcpContinuumDaoIncreaseAmountInputSchema, mcpContinuumDaoIncreaseUnlockTimeInputSchema, mcpContinuumDaoMergeInputSchema, mcpContinuumDaoMpaFlagInputSchema, mcpContinuumDaoMpaFlagOutputSchema, mcpContinuumDaoMpaListingInputSchema, mcpContinuumDaoMpaListingOutputSchema, mcpContinuumDaoMpaMailboxListInputSchema, mcpContinuumDaoMpaMailboxListOutputSchema, mcpContinuumDaoMpaMailboxOpenInputSchema, mcpContinuumDaoMpaMailboxOpenOutputSchema, mcpContinuumDaoMpaMailboxSendInputSchema, mcpContinuumDaoMpaMailboxSendOutputSchema, mcpContinuumDaoMpaRetractInputSchema, mcpContinuumDaoMpaRetractOutputSchema, mcpContinuumDaoProposalIdInputSchema, mcpContinuumDaoProposeBravoInputSchema, mcpContinuumDaoProposeDeltaInputSchema, mcpContinuumDaoRegisterProposalInputSchema, mcpContinuumDaoRegisterProposalOutputSchema, mcpContinuumDaoRequestDetachInputSchema, mcpContinuumDaoSplitInputSchema, mcpContinuumDaoTechnocoreBindInputSchema, mcpContinuumDaoTechnocoreBindOutputSchema, mcpContinuumDaoTokenIdInputSchema, mcpContinuumDaoTransferInputSchema, mcpContinuumDaoUndelegateInputSchema, mcpCurveDaoBuildAddLiquidityMultisignInputSchema, mcpCurveDaoBuildGaugeDepositMultisignInputSchema, mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoFetchImportantPoolsInputSchema, mcpCurveDaoFetchImportantPoolsOutputSchema, mcpCurveDaoFetchLpYieldsInputSchema, mcpCurveDaoFetchLpYieldsOutputSchema, mcpCurveDaoQuoteAddLiquidityInputSchema, mcpCurveDaoQuoteAddLiquidityOutputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpCurveDaoQuoteRemoveLiquidityInputSchema, mcpCurveDaoQuoteRemoveLiquidityOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaFetchSusdeApyInputSchema, mcpEthenaFetchSusdeApyOutputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchEarnVaultsInputSchema, mcpEulerV2FetchEarnVaultsOutputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchStockMarketsInputSchema, mcpHyperliquidFetchStockMarketsOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultApysInputSchema, mcpHyperliquidFetchVaultApysOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoFetchStethAprInputSchema, mcpLidoFetchStethAprOutputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleFetchMarketInputSchema, mcpMapleFetchMarketOutputSchema, mcpMapleFetchMarketsInputSchema, mcpMapleFetchMarketsOutputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightCancelLendOfferInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightLendOfferInputSchema, mcpMorphoMidnightRepayInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpPendleBuildAddLiquidityMultisignInputSchema, mcpPendleBuildMintPyMultisignInputSchema, mcpPendleBuildMintSyMultisignInputSchema, mcpPendleBuildRedeemPyMultisignInputSchema, mcpPendleBuildRedeemRewardsMultisignInputSchema, mcpPendleBuildRedeemSyMultisignInputSchema, mcpPendleBuildRemoveLiquidityMultisignInputSchema, mcpPendleBuildSwapMultisignInputSchema, mcpPendleFetchMarketsInputSchema, mcpPendleFetchMarketsOutputSchema, mcpPendleFetchMerkleRewardsInputSchema, mcpPendleFetchMerkleRewardsOutputSchema, mcpPendleFetchPositionsInputSchema, mcpPendleFetchPositionsOutputSchema, mcpPendleFetchPricesInputSchema, mcpPendleFetchPricesOutputSchema, mcpPendleQuoteAddLiquidityInputSchema, mcpPendleQuoteMintPyInputSchema, mcpPendleQuoteMintSyInputSchema, mcpPendleQuoteOutputSchema, mcpPendleQuoteRedeemPyInputSchema, mcpPendleQuoteRedeemSyInputSchema, mcpPendleQuoteRemoveLiquidityInputSchema, mcpPendleQuoteSwapInputSchema, mcpPendleSearchAssetsInputSchema, mcpPendleSearchAssetsOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyFetchSusdsRateInputSchema, mcpSkyFetchSusdsRateOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CheckPermissionsInputSchema, mcpUniswapV4CheckPermissionsOutputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4KycApplyLinkInputSchema, mcpUniswapV4KycApplyLinkOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };