@continuumdao/ctm-mpc-defi 0.2.37 → 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.
- package/dist/agent/catalog.cjs +49 -38
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +722 -2
- package/dist/agent/catalog.js +49 -38
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/continuum-dao/SKILL.md +18 -2
- package/dist/{buildBatch-CngvebiD.d.ts → buildBatch-tsEUVn_a.d.ts} +3 -3
- package/dist/chains/evm/index.cjs +33 -22
- package/dist/chains/evm/index.cjs.map +1 -1
- package/dist/chains/evm/index.d.ts +10 -6
- package/dist/chains/evm/index.js +33 -22
- package/dist/chains/evm/index.js.map +1 -1
- package/dist/chains/near/index.d.ts +1 -1
- package/dist/chains/solana/index.d.ts +1 -1
- package/dist/core/index.d.ts +5 -5
- package/dist/{eip712Multisign-DCW7heqX.d.ts → eip712Multisign-6oNIlObj.d.ts} +1 -1
- package/dist/{envelope-C_bfuKab.d.ts → envelope-Cm-llShH.d.ts} +1 -1
- package/dist/index.cjs +33 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.js +33 -22
- package/dist/index.js.map +1 -1
- package/dist/protocols/evm/aave-v4/index.d.ts +1 -1
- package/dist/protocols/evm/aerodrome/index.d.ts +4 -4
- package/dist/protocols/evm/arcus/index.d.ts +2 -2
- package/dist/protocols/evm/circle-cctp/index.d.ts +2 -2
- package/dist/protocols/evm/compound-v3/index.d.ts +1 -1
- package/dist/protocols/evm/continuum-dao/index.cjs +797 -46
- package/dist/protocols/evm/continuum-dao/index.cjs.map +1 -1
- package/dist/protocols/evm/continuum-dao/index.d.ts +189 -5
- package/dist/protocols/evm/continuum-dao/index.js +759 -48
- package/dist/protocols/evm/continuum-dao/index.js.map +1 -1
- package/dist/protocols/evm/curve-dao/index.d.ts +2 -2
- package/dist/protocols/evm/ethena/index.d.ts +1 -1
- package/dist/protocols/evm/euler-v2/index.cjs +33 -22
- package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
- package/dist/protocols/evm/euler-v2/index.d.ts +1 -1
- package/dist/protocols/evm/euler-v2/index.js +33 -22
- package/dist/protocols/evm/euler-v2/index.js.map +1 -1
- package/dist/protocols/evm/gmx/index.d.ts +2 -2
- package/dist/protocols/evm/hyperliquid/index.d.ts +2 -2
- package/dist/protocols/evm/lido/index.d.ts +1 -1
- package/dist/protocols/evm/maple/index.d.ts +1 -1
- package/dist/protocols/evm/morpho/index.d.ts +1 -1
- package/dist/protocols/evm/pendle/index.d.ts +4 -4
- package/dist/protocols/evm/permit2/index.d.ts +1 -1
- package/dist/protocols/evm/sky/index.d.ts +1 -1
- package/dist/protocols/evm/uniswap-v4/index.d.ts +3 -3
- package/dist/protocols/evm/venice/index.d.ts +1 -1
- package/dist/{registry-DxDSPQ-p.d.ts → registry-BvsXh0-r.d.ts} +1 -1
- package/dist/{types-RZWOTm8c.d.ts → types-RJpoU4Pc.d.ts} +1 -1
- package/dist/{types-PZrvtjv8.d.ts → types-lIfv59N1.d.ts} +2 -0
- package/package.json +1 -1
package/dist/agent/catalog.d.ts
CHANGED
|
@@ -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-
|
|
4
|
-
export { g as getActionsByChainCategory, b as getProtocolModules } from '../registry-
|
|
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;
|
|
@@ -11413,14 +11909,20 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11413
11909
|
pubkeyhex: z.ZodString;
|
|
11414
11910
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11415
11911
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11912
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
11913
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
11416
11914
|
}, "strip", z.ZodTypeAny, {
|
|
11417
11915
|
pubkeyhex: string;
|
|
11418
11916
|
keylist?: string[] | undefined;
|
|
11419
11917
|
ClientKeys?: Record<string, string> | undefined;
|
|
11918
|
+
groupId?: string | undefined;
|
|
11919
|
+
GroupId?: string | undefined;
|
|
11420
11920
|
}, {
|
|
11421
11921
|
pubkeyhex: string;
|
|
11422
11922
|
keylist?: string[] | undefined;
|
|
11423
11923
|
ClientKeys?: Record<string, string> | undefined;
|
|
11924
|
+
groupId?: string | undefined;
|
|
11925
|
+
GroupId?: string | undefined;
|
|
11424
11926
|
}>>;
|
|
11425
11927
|
purposeText: z.ZodString;
|
|
11426
11928
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -11473,6 +11975,8 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11473
11975
|
pubkeyhex: string;
|
|
11474
11976
|
keylist?: string[] | undefined;
|
|
11475
11977
|
ClientKeys?: Record<string, string> | undefined;
|
|
11978
|
+
groupId?: string | undefined;
|
|
11979
|
+
GroupId?: string | undefined;
|
|
11476
11980
|
} | undefined;
|
|
11477
11981
|
expiryDate?: number | undefined;
|
|
11478
11982
|
rpcUrl?: string | undefined;
|
|
@@ -11500,6 +12004,8 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11500
12004
|
pubkeyhex: string;
|
|
11501
12005
|
keylist?: string[] | undefined;
|
|
11502
12006
|
ClientKeys?: Record<string, string> | undefined;
|
|
12007
|
+
groupId?: string | undefined;
|
|
12008
|
+
GroupId?: string | undefined;
|
|
11503
12009
|
} | undefined;
|
|
11504
12010
|
useCustomGas?: unknown;
|
|
11505
12011
|
chainId?: unknown;
|
|
@@ -11531,6 +12037,8 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11531
12037
|
pubkeyhex: string;
|
|
11532
12038
|
keylist?: string[] | undefined;
|
|
11533
12039
|
ClientKeys?: Record<string, string> | undefined;
|
|
12040
|
+
groupId?: string | undefined;
|
|
12041
|
+
GroupId?: string | undefined;
|
|
11534
12042
|
} | undefined;
|
|
11535
12043
|
expiryDate?: number | undefined;
|
|
11536
12044
|
rpcUrl?: string | undefined;
|
|
@@ -11558,6 +12066,8 @@ declare const mcpPendleBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11558
12066
|
pubkeyhex: string;
|
|
11559
12067
|
keylist?: string[] | undefined;
|
|
11560
12068
|
ClientKeys?: Record<string, string> | undefined;
|
|
12069
|
+
groupId?: string | undefined;
|
|
12070
|
+
GroupId?: string | undefined;
|
|
11561
12071
|
} | undefined;
|
|
11562
12072
|
useCustomGas?: unknown;
|
|
11563
12073
|
chainId?: unknown;
|
|
@@ -11584,14 +12094,20 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
11584
12094
|
pubkeyhex: z.ZodString;
|
|
11585
12095
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11586
12096
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12097
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
12098
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
11587
12099
|
}, "strip", z.ZodTypeAny, {
|
|
11588
12100
|
pubkeyhex: string;
|
|
11589
12101
|
keylist?: string[] | undefined;
|
|
11590
12102
|
ClientKeys?: Record<string, string> | undefined;
|
|
12103
|
+
groupId?: string | undefined;
|
|
12104
|
+
GroupId?: string | undefined;
|
|
11591
12105
|
}, {
|
|
11592
12106
|
pubkeyhex: string;
|
|
11593
12107
|
keylist?: string[] | undefined;
|
|
11594
12108
|
ClientKeys?: Record<string, string> | undefined;
|
|
12109
|
+
groupId?: string | undefined;
|
|
12110
|
+
GroupId?: string | undefined;
|
|
11595
12111
|
}>>;
|
|
11596
12112
|
purposeText: z.ZodString;
|
|
11597
12113
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -11645,6 +12161,8 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
11645
12161
|
pubkeyhex: string;
|
|
11646
12162
|
keylist?: string[] | undefined;
|
|
11647
12163
|
ClientKeys?: Record<string, string> | undefined;
|
|
12164
|
+
groupId?: string | undefined;
|
|
12165
|
+
GroupId?: string | undefined;
|
|
11648
12166
|
} | undefined;
|
|
11649
12167
|
expiryDate?: number | undefined;
|
|
11650
12168
|
rpcUrl?: string | undefined;
|
|
@@ -11672,6 +12190,8 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
11672
12190
|
pubkeyhex: string;
|
|
11673
12191
|
keylist?: string[] | undefined;
|
|
11674
12192
|
ClientKeys?: Record<string, string> | undefined;
|
|
12193
|
+
groupId?: string | undefined;
|
|
12194
|
+
GroupId?: string | undefined;
|
|
11675
12195
|
} | undefined;
|
|
11676
12196
|
useCustomGas?: unknown;
|
|
11677
12197
|
chainId?: unknown;
|
|
@@ -11703,6 +12223,8 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
11703
12223
|
pubkeyhex: string;
|
|
11704
12224
|
keylist?: string[] | undefined;
|
|
11705
12225
|
ClientKeys?: Record<string, string> | undefined;
|
|
12226
|
+
groupId?: string | undefined;
|
|
12227
|
+
GroupId?: string | undefined;
|
|
11706
12228
|
} | undefined;
|
|
11707
12229
|
expiryDate?: number | undefined;
|
|
11708
12230
|
rpcUrl?: string | undefined;
|
|
@@ -11730,6 +12252,8 @@ declare const mcpPendleBuildMintPyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
11730
12252
|
pubkeyhex: string;
|
|
11731
12253
|
keylist?: string[] | undefined;
|
|
11732
12254
|
ClientKeys?: Record<string, string> | undefined;
|
|
12255
|
+
groupId?: string | undefined;
|
|
12256
|
+
GroupId?: string | undefined;
|
|
11733
12257
|
} | undefined;
|
|
11734
12258
|
useCustomGas?: unknown;
|
|
11735
12259
|
chainId?: unknown;
|
|
@@ -11755,14 +12279,20 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
11755
12279
|
pubkeyhex: z.ZodString;
|
|
11756
12280
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11757
12281
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12282
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
12283
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
11758
12284
|
}, "strip", z.ZodTypeAny, {
|
|
11759
12285
|
pubkeyhex: string;
|
|
11760
12286
|
keylist?: string[] | undefined;
|
|
11761
12287
|
ClientKeys?: Record<string, string> | undefined;
|
|
12288
|
+
groupId?: string | undefined;
|
|
12289
|
+
GroupId?: string | undefined;
|
|
11762
12290
|
}, {
|
|
11763
12291
|
pubkeyhex: string;
|
|
11764
12292
|
keylist?: string[] | undefined;
|
|
11765
12293
|
ClientKeys?: Record<string, string> | undefined;
|
|
12294
|
+
groupId?: string | undefined;
|
|
12295
|
+
GroupId?: string | undefined;
|
|
11766
12296
|
}>>;
|
|
11767
12297
|
purposeText: z.ZodString;
|
|
11768
12298
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -11817,6 +12347,8 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
11817
12347
|
pubkeyhex: string;
|
|
11818
12348
|
keylist?: string[] | undefined;
|
|
11819
12349
|
ClientKeys?: Record<string, string> | undefined;
|
|
12350
|
+
groupId?: string | undefined;
|
|
12351
|
+
GroupId?: string | undefined;
|
|
11820
12352
|
} | undefined;
|
|
11821
12353
|
expiryDate?: number | undefined;
|
|
11822
12354
|
rpcUrl?: string | undefined;
|
|
@@ -11845,6 +12377,8 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
11845
12377
|
pubkeyhex: string;
|
|
11846
12378
|
keylist?: string[] | undefined;
|
|
11847
12379
|
ClientKeys?: Record<string, string> | undefined;
|
|
12380
|
+
groupId?: string | undefined;
|
|
12381
|
+
GroupId?: string | undefined;
|
|
11848
12382
|
} | undefined;
|
|
11849
12383
|
useCustomGas?: unknown;
|
|
11850
12384
|
chainId?: unknown;
|
|
@@ -11877,6 +12411,8 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
11877
12411
|
pubkeyhex: string;
|
|
11878
12412
|
keylist?: string[] | undefined;
|
|
11879
12413
|
ClientKeys?: Record<string, string> | undefined;
|
|
12414
|
+
groupId?: string | undefined;
|
|
12415
|
+
GroupId?: string | undefined;
|
|
11880
12416
|
} | undefined;
|
|
11881
12417
|
expiryDate?: number | undefined;
|
|
11882
12418
|
rpcUrl?: string | undefined;
|
|
@@ -11905,6 +12441,8 @@ declare const mcpPendleBuildRedeemPyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
11905
12441
|
pubkeyhex: string;
|
|
11906
12442
|
keylist?: string[] | undefined;
|
|
11907
12443
|
ClientKeys?: Record<string, string> | undefined;
|
|
12444
|
+
groupId?: string | undefined;
|
|
12445
|
+
GroupId?: string | undefined;
|
|
11908
12446
|
} | undefined;
|
|
11909
12447
|
useCustomGas?: unknown;
|
|
11910
12448
|
chainId?: unknown;
|
|
@@ -11931,14 +12469,20 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
11931
12469
|
pubkeyhex: z.ZodString;
|
|
11932
12470
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11933
12471
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12472
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
12473
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
11934
12474
|
}, "strip", z.ZodTypeAny, {
|
|
11935
12475
|
pubkeyhex: string;
|
|
11936
12476
|
keylist?: string[] | undefined;
|
|
11937
12477
|
ClientKeys?: Record<string, string> | undefined;
|
|
12478
|
+
groupId?: string | undefined;
|
|
12479
|
+
GroupId?: string | undefined;
|
|
11938
12480
|
}, {
|
|
11939
12481
|
pubkeyhex: string;
|
|
11940
12482
|
keylist?: string[] | undefined;
|
|
11941
12483
|
ClientKeys?: Record<string, string> | undefined;
|
|
12484
|
+
groupId?: string | undefined;
|
|
12485
|
+
GroupId?: string | undefined;
|
|
11942
12486
|
}>>;
|
|
11943
12487
|
purposeText: z.ZodString;
|
|
11944
12488
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -11990,6 +12534,8 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
11990
12534
|
pubkeyhex: string;
|
|
11991
12535
|
keylist?: string[] | undefined;
|
|
11992
12536
|
ClientKeys?: Record<string, string> | undefined;
|
|
12537
|
+
groupId?: string | undefined;
|
|
12538
|
+
GroupId?: string | undefined;
|
|
11993
12539
|
} | undefined;
|
|
11994
12540
|
expiryDate?: number | undefined;
|
|
11995
12541
|
rpcUrl?: string | undefined;
|
|
@@ -12016,6 +12562,8 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
12016
12562
|
pubkeyhex: string;
|
|
12017
12563
|
keylist?: string[] | undefined;
|
|
12018
12564
|
ClientKeys?: Record<string, string> | undefined;
|
|
12565
|
+
groupId?: string | undefined;
|
|
12566
|
+
GroupId?: string | undefined;
|
|
12019
12567
|
} | undefined;
|
|
12020
12568
|
useCustomGas?: unknown;
|
|
12021
12569
|
chainId?: unknown;
|
|
@@ -12046,6 +12594,8 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
12046
12594
|
pubkeyhex: string;
|
|
12047
12595
|
keylist?: string[] | undefined;
|
|
12048
12596
|
ClientKeys?: Record<string, string> | undefined;
|
|
12597
|
+
groupId?: string | undefined;
|
|
12598
|
+
GroupId?: string | undefined;
|
|
12049
12599
|
} | undefined;
|
|
12050
12600
|
expiryDate?: number | undefined;
|
|
12051
12601
|
rpcUrl?: string | undefined;
|
|
@@ -12072,6 +12622,8 @@ declare const mcpPendleBuildMintSyMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
12072
12622
|
pubkeyhex: string;
|
|
12073
12623
|
keylist?: string[] | undefined;
|
|
12074
12624
|
ClientKeys?: Record<string, string> | undefined;
|
|
12625
|
+
groupId?: string | undefined;
|
|
12626
|
+
GroupId?: string | undefined;
|
|
12075
12627
|
} | undefined;
|
|
12076
12628
|
useCustomGas?: unknown;
|
|
12077
12629
|
chainId?: unknown;
|
|
@@ -12097,14 +12649,20 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
12097
12649
|
pubkeyhex: z.ZodString;
|
|
12098
12650
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12099
12651
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12652
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
12653
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
12100
12654
|
}, "strip", z.ZodTypeAny, {
|
|
12101
12655
|
pubkeyhex: string;
|
|
12102
12656
|
keylist?: string[] | undefined;
|
|
12103
12657
|
ClientKeys?: Record<string, string> | undefined;
|
|
12658
|
+
groupId?: string | undefined;
|
|
12659
|
+
GroupId?: string | undefined;
|
|
12104
12660
|
}, {
|
|
12105
12661
|
pubkeyhex: string;
|
|
12106
12662
|
keylist?: string[] | undefined;
|
|
12107
12663
|
ClientKeys?: Record<string, string> | undefined;
|
|
12664
|
+
groupId?: string | undefined;
|
|
12665
|
+
GroupId?: string | undefined;
|
|
12108
12666
|
}>>;
|
|
12109
12667
|
purposeText: z.ZodString;
|
|
12110
12668
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -12156,6 +12714,8 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
12156
12714
|
pubkeyhex: string;
|
|
12157
12715
|
keylist?: string[] | undefined;
|
|
12158
12716
|
ClientKeys?: Record<string, string> | undefined;
|
|
12717
|
+
groupId?: string | undefined;
|
|
12718
|
+
GroupId?: string | undefined;
|
|
12159
12719
|
} | undefined;
|
|
12160
12720
|
expiryDate?: number | undefined;
|
|
12161
12721
|
rpcUrl?: string | undefined;
|
|
@@ -12182,6 +12742,8 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
12182
12742
|
pubkeyhex: string;
|
|
12183
12743
|
keylist?: string[] | undefined;
|
|
12184
12744
|
ClientKeys?: Record<string, string> | undefined;
|
|
12745
|
+
groupId?: string | undefined;
|
|
12746
|
+
GroupId?: string | undefined;
|
|
12185
12747
|
} | undefined;
|
|
12186
12748
|
useCustomGas?: unknown;
|
|
12187
12749
|
chainId?: unknown;
|
|
@@ -12212,6 +12774,8 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
12212
12774
|
pubkeyhex: string;
|
|
12213
12775
|
keylist?: string[] | undefined;
|
|
12214
12776
|
ClientKeys?: Record<string, string> | undefined;
|
|
12777
|
+
groupId?: string | undefined;
|
|
12778
|
+
GroupId?: string | undefined;
|
|
12215
12779
|
} | undefined;
|
|
12216
12780
|
expiryDate?: number | undefined;
|
|
12217
12781
|
rpcUrl?: string | undefined;
|
|
@@ -12238,6 +12802,8 @@ declare const mcpPendleBuildRedeemSyMultisignInputSchema: z.ZodEffects<z.ZodObje
|
|
|
12238
12802
|
pubkeyhex: string;
|
|
12239
12803
|
keylist?: string[] | undefined;
|
|
12240
12804
|
ClientKeys?: Record<string, string> | undefined;
|
|
12805
|
+
groupId?: string | undefined;
|
|
12806
|
+
GroupId?: string | undefined;
|
|
12241
12807
|
} | undefined;
|
|
12242
12808
|
useCustomGas?: unknown;
|
|
12243
12809
|
chainId?: unknown;
|
|
@@ -12263,14 +12829,20 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
|
|
|
12263
12829
|
pubkeyhex: z.ZodString;
|
|
12264
12830
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12265
12831
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12832
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
12833
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
12266
12834
|
}, "strip", z.ZodTypeAny, {
|
|
12267
12835
|
pubkeyhex: string;
|
|
12268
12836
|
keylist?: string[] | undefined;
|
|
12269
12837
|
ClientKeys?: Record<string, string> | undefined;
|
|
12838
|
+
groupId?: string | undefined;
|
|
12839
|
+
GroupId?: string | undefined;
|
|
12270
12840
|
}, {
|
|
12271
12841
|
pubkeyhex: string;
|
|
12272
12842
|
keylist?: string[] | undefined;
|
|
12273
12843
|
ClientKeys?: Record<string, string> | undefined;
|
|
12844
|
+
groupId?: string | undefined;
|
|
12845
|
+
GroupId?: string | undefined;
|
|
12274
12846
|
}>>;
|
|
12275
12847
|
purposeText: z.ZodString;
|
|
12276
12848
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -12334,6 +12906,8 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
|
|
|
12334
12906
|
pubkeyhex: string;
|
|
12335
12907
|
keylist?: string[] | undefined;
|
|
12336
12908
|
ClientKeys?: Record<string, string> | undefined;
|
|
12909
|
+
groupId?: string | undefined;
|
|
12910
|
+
GroupId?: string | undefined;
|
|
12337
12911
|
} | undefined;
|
|
12338
12912
|
expiryDate?: number | undefined;
|
|
12339
12913
|
rpcUrl?: string | undefined;
|
|
@@ -12364,6 +12938,8 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
|
|
|
12364
12938
|
pubkeyhex: string;
|
|
12365
12939
|
keylist?: string[] | undefined;
|
|
12366
12940
|
ClientKeys?: Record<string, string> | undefined;
|
|
12941
|
+
groupId?: string | undefined;
|
|
12942
|
+
GroupId?: string | undefined;
|
|
12367
12943
|
} | undefined;
|
|
12368
12944
|
useCustomGas?: unknown;
|
|
12369
12945
|
chainId?: unknown;
|
|
@@ -12398,6 +12974,8 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
|
|
|
12398
12974
|
pubkeyhex: string;
|
|
12399
12975
|
keylist?: string[] | undefined;
|
|
12400
12976
|
ClientKeys?: Record<string, string> | undefined;
|
|
12977
|
+
groupId?: string | undefined;
|
|
12978
|
+
GroupId?: string | undefined;
|
|
12401
12979
|
} | undefined;
|
|
12402
12980
|
expiryDate?: number | undefined;
|
|
12403
12981
|
rpcUrl?: string | undefined;
|
|
@@ -12428,6 +13006,8 @@ declare const mcpPendleBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.Zod
|
|
|
12428
13006
|
pubkeyhex: string;
|
|
12429
13007
|
keylist?: string[] | undefined;
|
|
12430
13008
|
ClientKeys?: Record<string, string> | undefined;
|
|
13009
|
+
groupId?: string | undefined;
|
|
13010
|
+
GroupId?: string | undefined;
|
|
12431
13011
|
} | undefined;
|
|
12432
13012
|
useCustomGas?: unknown;
|
|
12433
13013
|
chainId?: unknown;
|
|
@@ -12455,14 +13035,20 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
12455
13035
|
pubkeyhex: z.ZodString;
|
|
12456
13036
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12457
13037
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
13038
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
13039
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
12458
13040
|
}, "strip", z.ZodTypeAny, {
|
|
12459
13041
|
pubkeyhex: string;
|
|
12460
13042
|
keylist?: string[] | undefined;
|
|
12461
13043
|
ClientKeys?: Record<string, string> | undefined;
|
|
13044
|
+
groupId?: string | undefined;
|
|
13045
|
+
GroupId?: string | undefined;
|
|
12462
13046
|
}, {
|
|
12463
13047
|
pubkeyhex: string;
|
|
12464
13048
|
keylist?: string[] | undefined;
|
|
12465
13049
|
ClientKeys?: Record<string, string> | undefined;
|
|
13050
|
+
groupId?: string | undefined;
|
|
13051
|
+
GroupId?: string | undefined;
|
|
12466
13052
|
}>>;
|
|
12467
13053
|
purposeText: z.ZodString;
|
|
12468
13054
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -12515,6 +13101,8 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
12515
13101
|
pubkeyhex: string;
|
|
12516
13102
|
keylist?: string[] | undefined;
|
|
12517
13103
|
ClientKeys?: Record<string, string> | undefined;
|
|
13104
|
+
groupId?: string | undefined;
|
|
13105
|
+
GroupId?: string | undefined;
|
|
12518
13106
|
} | undefined;
|
|
12519
13107
|
expiryDate?: number | undefined;
|
|
12520
13108
|
rpcUrl?: string | undefined;
|
|
@@ -12542,6 +13130,8 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
12542
13130
|
pubkeyhex: string;
|
|
12543
13131
|
keylist?: string[] | undefined;
|
|
12544
13132
|
ClientKeys?: Record<string, string> | undefined;
|
|
13133
|
+
groupId?: string | undefined;
|
|
13134
|
+
GroupId?: string | undefined;
|
|
12545
13135
|
} | undefined;
|
|
12546
13136
|
useCustomGas?: unknown;
|
|
12547
13137
|
chainId?: unknown;
|
|
@@ -12573,6 +13163,8 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
12573
13163
|
pubkeyhex: string;
|
|
12574
13164
|
keylist?: string[] | undefined;
|
|
12575
13165
|
ClientKeys?: Record<string, string> | undefined;
|
|
13166
|
+
groupId?: string | undefined;
|
|
13167
|
+
GroupId?: string | undefined;
|
|
12576
13168
|
} | undefined;
|
|
12577
13169
|
expiryDate?: number | undefined;
|
|
12578
13170
|
rpcUrl?: string | undefined;
|
|
@@ -12600,6 +13192,8 @@ declare const mcpPendleBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
12600
13192
|
pubkeyhex: string;
|
|
12601
13193
|
keylist?: string[] | undefined;
|
|
12602
13194
|
ClientKeys?: Record<string, string> | undefined;
|
|
13195
|
+
groupId?: string | undefined;
|
|
13196
|
+
GroupId?: string | undefined;
|
|
12603
13197
|
} | undefined;
|
|
12604
13198
|
useCustomGas?: unknown;
|
|
12605
13199
|
chainId?: unknown;
|
|
@@ -12626,14 +13220,20 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
|
|
|
12626
13220
|
pubkeyhex: z.ZodString;
|
|
12627
13221
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12628
13222
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
13223
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
13224
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
12629
13225
|
}, "strip", z.ZodTypeAny, {
|
|
12630
13226
|
pubkeyhex: string;
|
|
12631
13227
|
keylist?: string[] | undefined;
|
|
12632
13228
|
ClientKeys?: Record<string, string> | undefined;
|
|
13229
|
+
groupId?: string | undefined;
|
|
13230
|
+
GroupId?: string | undefined;
|
|
12633
13231
|
}, {
|
|
12634
13232
|
pubkeyhex: string;
|
|
12635
13233
|
keylist?: string[] | undefined;
|
|
12636
13234
|
ClientKeys?: Record<string, string> | undefined;
|
|
13235
|
+
groupId?: string | undefined;
|
|
13236
|
+
GroupId?: string | undefined;
|
|
12637
13237
|
}>>;
|
|
12638
13238
|
purposeText: z.ZodString;
|
|
12639
13239
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -12680,6 +13280,8 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
|
|
|
12680
13280
|
pubkeyhex: string;
|
|
12681
13281
|
keylist?: string[] | undefined;
|
|
12682
13282
|
ClientKeys?: Record<string, string> | undefined;
|
|
13283
|
+
groupId?: string | undefined;
|
|
13284
|
+
GroupId?: string | undefined;
|
|
12683
13285
|
} | undefined;
|
|
12684
13286
|
expiryDate?: number | undefined;
|
|
12685
13287
|
rpcUrl?: string | undefined;
|
|
@@ -12705,6 +13307,8 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
|
|
|
12705
13307
|
pubkeyhex: string;
|
|
12706
13308
|
keylist?: string[] | undefined;
|
|
12707
13309
|
ClientKeys?: Record<string, string> | undefined;
|
|
13310
|
+
groupId?: string | undefined;
|
|
13311
|
+
GroupId?: string | undefined;
|
|
12708
13312
|
} | undefined;
|
|
12709
13313
|
useCustomGas?: unknown;
|
|
12710
13314
|
chainId?: unknown;
|
|
@@ -12734,6 +13338,8 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
|
|
|
12734
13338
|
pubkeyhex: string;
|
|
12735
13339
|
keylist?: string[] | undefined;
|
|
12736
13340
|
ClientKeys?: Record<string, string> | undefined;
|
|
13341
|
+
groupId?: string | undefined;
|
|
13342
|
+
GroupId?: string | undefined;
|
|
12737
13343
|
} | undefined;
|
|
12738
13344
|
expiryDate?: number | undefined;
|
|
12739
13345
|
rpcUrl?: string | undefined;
|
|
@@ -12759,6 +13365,8 @@ declare const mcpPendleBuildRedeemRewardsMultisignInputSchema: z.ZodEffects<z.Zo
|
|
|
12759
13365
|
pubkeyhex: string;
|
|
12760
13366
|
keylist?: string[] | undefined;
|
|
12761
13367
|
ClientKeys?: Record<string, string> | undefined;
|
|
13368
|
+
groupId?: string | undefined;
|
|
13369
|
+
GroupId?: string | undefined;
|
|
12762
13370
|
} | undefined;
|
|
12763
13371
|
useCustomGas?: unknown;
|
|
12764
13372
|
chainId?: unknown;
|
|
@@ -15986,14 +16594,20 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
|
|
|
15986
16594
|
pubkeyhex: z.ZodString;
|
|
15987
16595
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
15988
16596
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16597
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
16598
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
15989
16599
|
}, "strip", z.ZodTypeAny, {
|
|
15990
16600
|
pubkeyhex: string;
|
|
15991
16601
|
keylist?: string[] | undefined;
|
|
15992
16602
|
ClientKeys?: Record<string, string> | undefined;
|
|
16603
|
+
groupId?: string | undefined;
|
|
16604
|
+
GroupId?: string | undefined;
|
|
15993
16605
|
}, {
|
|
15994
16606
|
pubkeyhex: string;
|
|
15995
16607
|
keylist?: string[] | undefined;
|
|
15996
16608
|
ClientKeys?: Record<string, string> | undefined;
|
|
16609
|
+
groupId?: string | undefined;
|
|
16610
|
+
GroupId?: string | undefined;
|
|
15997
16611
|
}>>;
|
|
15998
16612
|
purposeText: z.ZodString;
|
|
15999
16613
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -16040,6 +16654,8 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
|
|
|
16040
16654
|
pubkeyhex: string;
|
|
16041
16655
|
keylist?: string[] | undefined;
|
|
16042
16656
|
ClientKeys?: Record<string, string> | undefined;
|
|
16657
|
+
groupId?: string | undefined;
|
|
16658
|
+
GroupId?: string | undefined;
|
|
16043
16659
|
} | undefined;
|
|
16044
16660
|
expiryDate?: number | undefined;
|
|
16045
16661
|
rpcUrl?: string | undefined;
|
|
@@ -16063,6 +16679,8 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
|
|
|
16063
16679
|
pubkeyhex: string;
|
|
16064
16680
|
keylist?: string[] | undefined;
|
|
16065
16681
|
ClientKeys?: Record<string, string> | undefined;
|
|
16682
|
+
groupId?: string | undefined;
|
|
16683
|
+
GroupId?: string | undefined;
|
|
16066
16684
|
} | undefined;
|
|
16067
16685
|
useCustomGas?: unknown;
|
|
16068
16686
|
chainId?: unknown;
|
|
@@ -16090,6 +16708,8 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
|
|
|
16090
16708
|
pubkeyhex: string;
|
|
16091
16709
|
keylist?: string[] | undefined;
|
|
16092
16710
|
ClientKeys?: Record<string, string> | undefined;
|
|
16711
|
+
groupId?: string | undefined;
|
|
16712
|
+
GroupId?: string | undefined;
|
|
16093
16713
|
} | undefined;
|
|
16094
16714
|
expiryDate?: number | undefined;
|
|
16095
16715
|
rpcUrl?: string | undefined;
|
|
@@ -16113,6 +16733,8 @@ declare const mcpArcusBuildCreateApiKeyMultisignInputSchema: z.ZodEffects<z.ZodO
|
|
|
16113
16733
|
pubkeyhex: string;
|
|
16114
16734
|
keylist?: string[] | undefined;
|
|
16115
16735
|
ClientKeys?: Record<string, string> | undefined;
|
|
16736
|
+
groupId?: string | undefined;
|
|
16737
|
+
GroupId?: string | undefined;
|
|
16116
16738
|
} | undefined;
|
|
16117
16739
|
useCustomGas?: unknown;
|
|
16118
16740
|
chainId?: unknown;
|
|
@@ -16137,14 +16759,20 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
|
|
|
16137
16759
|
pubkeyhex: z.ZodString;
|
|
16138
16760
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16139
16761
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16762
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
16763
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
16140
16764
|
}, "strip", z.ZodTypeAny, {
|
|
16141
16765
|
pubkeyhex: string;
|
|
16142
16766
|
keylist?: string[] | undefined;
|
|
16143
16767
|
ClientKeys?: Record<string, string> | undefined;
|
|
16768
|
+
groupId?: string | undefined;
|
|
16769
|
+
GroupId?: string | undefined;
|
|
16144
16770
|
}, {
|
|
16145
16771
|
pubkeyhex: string;
|
|
16146
16772
|
keylist?: string[] | undefined;
|
|
16147
16773
|
ClientKeys?: Record<string, string> | undefined;
|
|
16774
|
+
groupId?: string | undefined;
|
|
16775
|
+
GroupId?: string | undefined;
|
|
16148
16776
|
}>>;
|
|
16149
16777
|
purposeText: z.ZodString;
|
|
16150
16778
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -16191,6 +16819,8 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
|
|
|
16191
16819
|
pubkeyhex: string;
|
|
16192
16820
|
keylist?: string[] | undefined;
|
|
16193
16821
|
ClientKeys?: Record<string, string> | undefined;
|
|
16822
|
+
groupId?: string | undefined;
|
|
16823
|
+
GroupId?: string | undefined;
|
|
16194
16824
|
} | undefined;
|
|
16195
16825
|
expiryDate?: number | undefined;
|
|
16196
16826
|
rpcUrl?: string | undefined;
|
|
@@ -16214,6 +16844,8 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
|
|
|
16214
16844
|
pubkeyhex: string;
|
|
16215
16845
|
keylist?: string[] | undefined;
|
|
16216
16846
|
ClientKeys?: Record<string, string> | undefined;
|
|
16847
|
+
groupId?: string | undefined;
|
|
16848
|
+
GroupId?: string | undefined;
|
|
16217
16849
|
} | undefined;
|
|
16218
16850
|
useCustomGas?: unknown;
|
|
16219
16851
|
chainId?: unknown;
|
|
@@ -16241,6 +16873,8 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
|
|
|
16241
16873
|
pubkeyhex: string;
|
|
16242
16874
|
keylist?: string[] | undefined;
|
|
16243
16875
|
ClientKeys?: Record<string, string> | undefined;
|
|
16876
|
+
groupId?: string | undefined;
|
|
16877
|
+
GroupId?: string | undefined;
|
|
16244
16878
|
} | undefined;
|
|
16245
16879
|
expiryDate?: number | undefined;
|
|
16246
16880
|
rpcUrl?: string | undefined;
|
|
@@ -16264,6 +16898,8 @@ declare const mcpArcusBuildPlaceOrderMultisignInputSchema: z.ZodEffects<z.ZodObj
|
|
|
16264
16898
|
pubkeyhex: string;
|
|
16265
16899
|
keylist?: string[] | undefined;
|
|
16266
16900
|
ClientKeys?: Record<string, string> | undefined;
|
|
16901
|
+
groupId?: string | undefined;
|
|
16902
|
+
GroupId?: string | undefined;
|
|
16267
16903
|
} | undefined;
|
|
16268
16904
|
useCustomGas?: unknown;
|
|
16269
16905
|
chainId?: unknown;
|
|
@@ -16288,14 +16924,20 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
16288
16924
|
pubkeyhex: z.ZodString;
|
|
16289
16925
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16290
16926
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16927
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
16928
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
16291
16929
|
}, "strip", z.ZodTypeAny, {
|
|
16292
16930
|
pubkeyhex: string;
|
|
16293
16931
|
keylist?: string[] | undefined;
|
|
16294
16932
|
ClientKeys?: Record<string, string> | undefined;
|
|
16933
|
+
groupId?: string | undefined;
|
|
16934
|
+
GroupId?: string | undefined;
|
|
16295
16935
|
}, {
|
|
16296
16936
|
pubkeyhex: string;
|
|
16297
16937
|
keylist?: string[] | undefined;
|
|
16298
16938
|
ClientKeys?: Record<string, string> | undefined;
|
|
16939
|
+
groupId?: string | undefined;
|
|
16940
|
+
GroupId?: string | undefined;
|
|
16299
16941
|
}>>;
|
|
16300
16942
|
purposeText: z.ZodString;
|
|
16301
16943
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -16342,6 +16984,8 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
16342
16984
|
pubkeyhex: string;
|
|
16343
16985
|
keylist?: string[] | undefined;
|
|
16344
16986
|
ClientKeys?: Record<string, string> | undefined;
|
|
16987
|
+
groupId?: string | undefined;
|
|
16988
|
+
GroupId?: string | undefined;
|
|
16345
16989
|
} | undefined;
|
|
16346
16990
|
expiryDate?: number | undefined;
|
|
16347
16991
|
rpcUrl?: string | undefined;
|
|
@@ -16365,6 +17009,8 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
16365
17009
|
pubkeyhex: string;
|
|
16366
17010
|
keylist?: string[] | undefined;
|
|
16367
17011
|
ClientKeys?: Record<string, string> | undefined;
|
|
17012
|
+
groupId?: string | undefined;
|
|
17013
|
+
GroupId?: string | undefined;
|
|
16368
17014
|
} | undefined;
|
|
16369
17015
|
useCustomGas?: unknown;
|
|
16370
17016
|
chainId?: unknown;
|
|
@@ -16392,6 +17038,8 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
16392
17038
|
pubkeyhex: string;
|
|
16393
17039
|
keylist?: string[] | undefined;
|
|
16394
17040
|
ClientKeys?: Record<string, string> | undefined;
|
|
17041
|
+
groupId?: string | undefined;
|
|
17042
|
+
GroupId?: string | undefined;
|
|
16395
17043
|
} | undefined;
|
|
16396
17044
|
expiryDate?: number | undefined;
|
|
16397
17045
|
rpcUrl?: string | undefined;
|
|
@@ -16415,6 +17063,8 @@ declare const mcpArcusBuildCloseMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
16415
17063
|
pubkeyhex: string;
|
|
16416
17064
|
keylist?: string[] | undefined;
|
|
16417
17065
|
ClientKeys?: Record<string, string> | undefined;
|
|
17066
|
+
groupId?: string | undefined;
|
|
17067
|
+
GroupId?: string | undefined;
|
|
16418
17068
|
} | undefined;
|
|
16419
17069
|
useCustomGas?: unknown;
|
|
16420
17070
|
chainId?: unknown;
|
|
@@ -16439,14 +17089,20 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16439
17089
|
pubkeyhex: z.ZodString;
|
|
16440
17090
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16441
17091
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
17092
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
17093
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
16442
17094
|
}, "strip", z.ZodTypeAny, {
|
|
16443
17095
|
pubkeyhex: string;
|
|
16444
17096
|
keylist?: string[] | undefined;
|
|
16445
17097
|
ClientKeys?: Record<string, string> | undefined;
|
|
17098
|
+
groupId?: string | undefined;
|
|
17099
|
+
GroupId?: string | undefined;
|
|
16446
17100
|
}, {
|
|
16447
17101
|
pubkeyhex: string;
|
|
16448
17102
|
keylist?: string[] | undefined;
|
|
16449
17103
|
ClientKeys?: Record<string, string> | undefined;
|
|
17104
|
+
groupId?: string | undefined;
|
|
17105
|
+
GroupId?: string | undefined;
|
|
16450
17106
|
}>>;
|
|
16451
17107
|
purposeText: z.ZodString;
|
|
16452
17108
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -16493,6 +17149,8 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16493
17149
|
pubkeyhex: string;
|
|
16494
17150
|
keylist?: string[] | undefined;
|
|
16495
17151
|
ClientKeys?: Record<string, string> | undefined;
|
|
17152
|
+
groupId?: string | undefined;
|
|
17153
|
+
GroupId?: string | undefined;
|
|
16496
17154
|
} | undefined;
|
|
16497
17155
|
expiryDate?: number | undefined;
|
|
16498
17156
|
rpcUrl?: string | undefined;
|
|
@@ -16516,6 +17174,8 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16516
17174
|
pubkeyhex: string;
|
|
16517
17175
|
keylist?: string[] | undefined;
|
|
16518
17176
|
ClientKeys?: Record<string, string> | undefined;
|
|
17177
|
+
groupId?: string | undefined;
|
|
17178
|
+
GroupId?: string | undefined;
|
|
16519
17179
|
} | undefined;
|
|
16520
17180
|
useCustomGas?: unknown;
|
|
16521
17181
|
chainId?: unknown;
|
|
@@ -16543,6 +17203,8 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16543
17203
|
pubkeyhex: string;
|
|
16544
17204
|
keylist?: string[] | undefined;
|
|
16545
17205
|
ClientKeys?: Record<string, string> | undefined;
|
|
17206
|
+
groupId?: string | undefined;
|
|
17207
|
+
GroupId?: string | undefined;
|
|
16546
17208
|
} | undefined;
|
|
16547
17209
|
expiryDate?: number | undefined;
|
|
16548
17210
|
rpcUrl?: string | undefined;
|
|
@@ -16566,6 +17228,8 @@ declare const mcpArcusBuildCancelOrderMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16566
17228
|
pubkeyhex: string;
|
|
16567
17229
|
keylist?: string[] | undefined;
|
|
16568
17230
|
ClientKeys?: Record<string, string> | undefined;
|
|
17231
|
+
groupId?: string | undefined;
|
|
17232
|
+
GroupId?: string | undefined;
|
|
16569
17233
|
} | undefined;
|
|
16570
17234
|
useCustomGas?: unknown;
|
|
16571
17235
|
chainId?: unknown;
|
|
@@ -16590,14 +17254,20 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16590
17254
|
pubkeyhex: z.ZodString;
|
|
16591
17255
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16592
17256
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
17257
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
17258
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
16593
17259
|
}, "strip", z.ZodTypeAny, {
|
|
16594
17260
|
pubkeyhex: string;
|
|
16595
17261
|
keylist?: string[] | undefined;
|
|
16596
17262
|
ClientKeys?: Record<string, string> | undefined;
|
|
17263
|
+
groupId?: string | undefined;
|
|
17264
|
+
GroupId?: string | undefined;
|
|
16597
17265
|
}, {
|
|
16598
17266
|
pubkeyhex: string;
|
|
16599
17267
|
keylist?: string[] | undefined;
|
|
16600
17268
|
ClientKeys?: Record<string, string> | undefined;
|
|
17269
|
+
groupId?: string | undefined;
|
|
17270
|
+
GroupId?: string | undefined;
|
|
16601
17271
|
}>>;
|
|
16602
17272
|
purposeText: z.ZodString;
|
|
16603
17273
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -16644,6 +17314,8 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16644
17314
|
pubkeyhex: string;
|
|
16645
17315
|
keylist?: string[] | undefined;
|
|
16646
17316
|
ClientKeys?: Record<string, string> | undefined;
|
|
17317
|
+
groupId?: string | undefined;
|
|
17318
|
+
GroupId?: string | undefined;
|
|
16647
17319
|
} | undefined;
|
|
16648
17320
|
expiryDate?: number | undefined;
|
|
16649
17321
|
rpcUrl?: string | undefined;
|
|
@@ -16667,6 +17339,8 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16667
17339
|
pubkeyhex: string;
|
|
16668
17340
|
keylist?: string[] | undefined;
|
|
16669
17341
|
ClientKeys?: Record<string, string> | undefined;
|
|
17342
|
+
groupId?: string | undefined;
|
|
17343
|
+
GroupId?: string | undefined;
|
|
16670
17344
|
} | undefined;
|
|
16671
17345
|
useCustomGas?: unknown;
|
|
16672
17346
|
chainId?: unknown;
|
|
@@ -16694,6 +17368,8 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16694
17368
|
pubkeyhex: string;
|
|
16695
17369
|
keylist?: string[] | undefined;
|
|
16696
17370
|
ClientKeys?: Record<string, string> | undefined;
|
|
17371
|
+
groupId?: string | undefined;
|
|
17372
|
+
GroupId?: string | undefined;
|
|
16697
17373
|
} | undefined;
|
|
16698
17374
|
expiryDate?: number | undefined;
|
|
16699
17375
|
rpcUrl?: string | undefined;
|
|
@@ -16717,6 +17393,8 @@ declare const mcpArcusBuildSetLeverageMultisignInputSchema: z.ZodEffects<z.ZodOb
|
|
|
16717
17393
|
pubkeyhex: string;
|
|
16718
17394
|
keylist?: string[] | undefined;
|
|
16719
17395
|
ClientKeys?: Record<string, string> | undefined;
|
|
17396
|
+
groupId?: string | undefined;
|
|
17397
|
+
GroupId?: string | undefined;
|
|
16720
17398
|
} | undefined;
|
|
16721
17399
|
useCustomGas?: unknown;
|
|
16722
17400
|
chainId?: unknown;
|
|
@@ -16741,14 +17419,20 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
16741
17419
|
pubkeyhex: z.ZodString;
|
|
16742
17420
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16743
17421
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
17422
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
17423
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
16744
17424
|
}, "strip", z.ZodTypeAny, {
|
|
16745
17425
|
pubkeyhex: string;
|
|
16746
17426
|
keylist?: string[] | undefined;
|
|
16747
17427
|
ClientKeys?: Record<string, string> | undefined;
|
|
17428
|
+
groupId?: string | undefined;
|
|
17429
|
+
GroupId?: string | undefined;
|
|
16748
17430
|
}, {
|
|
16749
17431
|
pubkeyhex: string;
|
|
16750
17432
|
keylist?: string[] | undefined;
|
|
16751
17433
|
ClientKeys?: Record<string, string> | undefined;
|
|
17434
|
+
groupId?: string | undefined;
|
|
17435
|
+
GroupId?: string | undefined;
|
|
16752
17436
|
}>>;
|
|
16753
17437
|
purposeText: z.ZodString;
|
|
16754
17438
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -16795,6 +17479,8 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
16795
17479
|
pubkeyhex: string;
|
|
16796
17480
|
keylist?: string[] | undefined;
|
|
16797
17481
|
ClientKeys?: Record<string, string> | undefined;
|
|
17482
|
+
groupId?: string | undefined;
|
|
17483
|
+
GroupId?: string | undefined;
|
|
16798
17484
|
} | undefined;
|
|
16799
17485
|
expiryDate?: number | undefined;
|
|
16800
17486
|
rpcUrl?: string | undefined;
|
|
@@ -16818,6 +17504,8 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
16818
17504
|
pubkeyhex: string;
|
|
16819
17505
|
keylist?: string[] | undefined;
|
|
16820
17506
|
ClientKeys?: Record<string, string> | undefined;
|
|
17507
|
+
groupId?: string | undefined;
|
|
17508
|
+
GroupId?: string | undefined;
|
|
16821
17509
|
} | undefined;
|
|
16822
17510
|
useCustomGas?: unknown;
|
|
16823
17511
|
chainId?: unknown;
|
|
@@ -16845,6 +17533,8 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
16845
17533
|
pubkeyhex: string;
|
|
16846
17534
|
keylist?: string[] | undefined;
|
|
16847
17535
|
ClientKeys?: Record<string, string> | undefined;
|
|
17536
|
+
groupId?: string | undefined;
|
|
17537
|
+
GroupId?: string | undefined;
|
|
16848
17538
|
} | undefined;
|
|
16849
17539
|
expiryDate?: number | undefined;
|
|
16850
17540
|
rpcUrl?: string | undefined;
|
|
@@ -16868,6 +17558,8 @@ declare const mcpArcusSpotBuildRfqMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
16868
17558
|
pubkeyhex: string;
|
|
16869
17559
|
keylist?: string[] | undefined;
|
|
16870
17560
|
ClientKeys?: Record<string, string> | undefined;
|
|
17561
|
+
groupId?: string | undefined;
|
|
17562
|
+
GroupId?: string | undefined;
|
|
16871
17563
|
} | undefined;
|
|
16872
17564
|
useCustomGas?: unknown;
|
|
16873
17565
|
chainId?: unknown;
|
|
@@ -16892,14 +17584,20 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
16892
17584
|
pubkeyhex: z.ZodString;
|
|
16893
17585
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16894
17586
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
17587
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
17588
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
16895
17589
|
}, "strip", z.ZodTypeAny, {
|
|
16896
17590
|
pubkeyhex: string;
|
|
16897
17591
|
keylist?: string[] | undefined;
|
|
16898
17592
|
ClientKeys?: Record<string, string> | undefined;
|
|
17593
|
+
groupId?: string | undefined;
|
|
17594
|
+
GroupId?: string | undefined;
|
|
16899
17595
|
}, {
|
|
16900
17596
|
pubkeyhex: string;
|
|
16901
17597
|
keylist?: string[] | undefined;
|
|
16902
17598
|
ClientKeys?: Record<string, string> | undefined;
|
|
17599
|
+
groupId?: string | undefined;
|
|
17600
|
+
GroupId?: string | undefined;
|
|
16903
17601
|
}>>;
|
|
16904
17602
|
purposeText: z.ZodString;
|
|
16905
17603
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -16946,6 +17644,8 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
16946
17644
|
pubkeyhex: string;
|
|
16947
17645
|
keylist?: string[] | undefined;
|
|
16948
17646
|
ClientKeys?: Record<string, string> | undefined;
|
|
17647
|
+
groupId?: string | undefined;
|
|
17648
|
+
GroupId?: string | undefined;
|
|
16949
17649
|
} | undefined;
|
|
16950
17650
|
expiryDate?: number | undefined;
|
|
16951
17651
|
rpcUrl?: string | undefined;
|
|
@@ -16968,6 +17668,8 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
16968
17668
|
pubkeyhex: string;
|
|
16969
17669
|
keylist?: string[] | undefined;
|
|
16970
17670
|
ClientKeys?: Record<string, string> | undefined;
|
|
17671
|
+
groupId?: string | undefined;
|
|
17672
|
+
GroupId?: string | undefined;
|
|
16971
17673
|
} | undefined;
|
|
16972
17674
|
useCustomGas?: unknown;
|
|
16973
17675
|
chainId?: unknown;
|
|
@@ -16996,6 +17698,8 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
16996
17698
|
pubkeyhex: string;
|
|
16997
17699
|
keylist?: string[] | undefined;
|
|
16998
17700
|
ClientKeys?: Record<string, string> | undefined;
|
|
17701
|
+
groupId?: string | undefined;
|
|
17702
|
+
GroupId?: string | undefined;
|
|
16999
17703
|
} | undefined;
|
|
17000
17704
|
expiryDate?: number | undefined;
|
|
17001
17705
|
rpcUrl?: string | undefined;
|
|
@@ -17018,6 +17722,8 @@ declare const mcpArcusBuildDepositMultisignInputSchema: z.ZodEffects<z.ZodObject
|
|
|
17018
17722
|
pubkeyhex: string;
|
|
17019
17723
|
keylist?: string[] | undefined;
|
|
17020
17724
|
ClientKeys?: Record<string, string> | undefined;
|
|
17725
|
+
groupId?: string | undefined;
|
|
17726
|
+
GroupId?: string | undefined;
|
|
17021
17727
|
} | undefined;
|
|
17022
17728
|
useCustomGas?: unknown;
|
|
17023
17729
|
chainId?: unknown;
|
|
@@ -17043,14 +17749,20 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
17043
17749
|
pubkeyhex: z.ZodString;
|
|
17044
17750
|
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17045
17751
|
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
17752
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
17753
|
+
GroupId: z.ZodOptional<z.ZodString>;
|
|
17046
17754
|
}, "strip", z.ZodTypeAny, {
|
|
17047
17755
|
pubkeyhex: string;
|
|
17048
17756
|
keylist?: string[] | undefined;
|
|
17049
17757
|
ClientKeys?: Record<string, string> | undefined;
|
|
17758
|
+
groupId?: string | undefined;
|
|
17759
|
+
GroupId?: string | undefined;
|
|
17050
17760
|
}, {
|
|
17051
17761
|
pubkeyhex: string;
|
|
17052
17762
|
keylist?: string[] | undefined;
|
|
17053
17763
|
ClientKeys?: Record<string, string> | undefined;
|
|
17764
|
+
groupId?: string | undefined;
|
|
17765
|
+
GroupId?: string | undefined;
|
|
17054
17766
|
}>>;
|
|
17055
17767
|
purposeText: z.ZodString;
|
|
17056
17768
|
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
@@ -17097,6 +17809,8 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
17097
17809
|
pubkeyhex: string;
|
|
17098
17810
|
keylist?: string[] | undefined;
|
|
17099
17811
|
ClientKeys?: Record<string, string> | undefined;
|
|
17812
|
+
groupId?: string | undefined;
|
|
17813
|
+
GroupId?: string | undefined;
|
|
17100
17814
|
} | undefined;
|
|
17101
17815
|
expiryDate?: number | undefined;
|
|
17102
17816
|
rpcUrl?: string | undefined;
|
|
@@ -17119,6 +17833,8 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
17119
17833
|
pubkeyhex: string;
|
|
17120
17834
|
keylist?: string[] | undefined;
|
|
17121
17835
|
ClientKeys?: Record<string, string> | undefined;
|
|
17836
|
+
groupId?: string | undefined;
|
|
17837
|
+
GroupId?: string | undefined;
|
|
17122
17838
|
} | undefined;
|
|
17123
17839
|
useCustomGas?: unknown;
|
|
17124
17840
|
chainId?: unknown;
|
|
@@ -17147,6 +17863,8 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
17147
17863
|
pubkeyhex: string;
|
|
17148
17864
|
keylist?: string[] | undefined;
|
|
17149
17865
|
ClientKeys?: Record<string, string> | undefined;
|
|
17866
|
+
groupId?: string | undefined;
|
|
17867
|
+
GroupId?: string | undefined;
|
|
17150
17868
|
} | undefined;
|
|
17151
17869
|
expiryDate?: number | undefined;
|
|
17152
17870
|
rpcUrl?: string | undefined;
|
|
@@ -17169,6 +17887,8 @@ declare const mcpArcusBuildWithdrawMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
17169
17887
|
pubkeyhex: string;
|
|
17170
17888
|
keylist?: string[] | undefined;
|
|
17171
17889
|
ClientKeys?: Record<string, string> | undefined;
|
|
17890
|
+
groupId?: string | undefined;
|
|
17891
|
+
GroupId?: string | undefined;
|
|
17172
17892
|
} | undefined;
|
|
17173
17893
|
useCustomGas?: unknown;
|
|
17174
17894
|
chainId?: unknown;
|