@continuumdao/ctm-mpc-defi 0.2.26 → 0.2.28
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 +681 -46
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +1209 -21
- package/dist/agent/catalog.js +668 -47
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/morpho/SKILL.md +38 -6
- package/dist/agent/skills/uniswap-v4/SKILL.md +15 -0
- package/dist/core/index.cjs +19 -0
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.ts +8 -1
- package/dist/core/index.js +17 -1
- package/dist/core/index.js.map +1 -1
- package/dist/index.cjs +363 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +361 -23
- package/dist/index.js.map +1 -1
- package/dist/protocols/evm/aave-v4/index.cjs.map +1 -1
- package/dist/protocols/evm/aave-v4/index.js.map +1 -1
- package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
- package/dist/protocols/evm/euler-v2/index.js.map +1 -1
- package/dist/protocols/evm/maple/index.cjs.map +1 -1
- package/dist/protocols/evm/maple/index.js.map +1 -1
- package/dist/protocols/evm/morpho/index.cjs +1153 -142
- package/dist/protocols/evm/morpho/index.cjs.map +1 -1
- package/dist/protocols/evm/morpho/index.d.ts +314 -8
- package/dist/protocols/evm/morpho/index.js +1131 -144
- package/dist/protocols/evm/morpho/index.js.map +1 -1
- package/dist/protocols/evm/permit2/index.cjs.map +1 -1
- package/dist/protocols/evm/permit2/index.js.map +1 -1
- package/dist/protocols/evm/sky/index.cjs.map +1 -1
- package/dist/protocols/evm/sky/index.js.map +1 -1
- package/dist/protocols/evm/uniswap-v4/index.cjs +863 -25
- package/dist/protocols/evm/uniswap-v4/index.cjs.map +1 -1
- package/dist/protocols/evm/uniswap-v4/index.d.ts +266 -9
- package/dist/protocols/evm/uniswap-v4/index.js +834 -27
- package/dist/protocols/evm/uniswap-v4/index.js.map +1 -1
- package/package.json +2 -1
package/dist/agent/catalog.d.ts
CHANGED
|
@@ -493,12 +493,12 @@ declare const mcpUniswapV4QuoteInputSchema: z.ZodObject<{
|
|
|
493
493
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
494
494
|
universalRouterVersion: z.ZodOptional<z.ZodString>;
|
|
495
495
|
}, "strip", z.ZodTypeAny, {
|
|
496
|
+
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
496
497
|
chainId: number;
|
|
497
498
|
amount: string;
|
|
498
499
|
tokenIn: string;
|
|
499
500
|
tokenOut: string;
|
|
500
501
|
uniswapApiKey: string;
|
|
501
|
-
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
502
502
|
keyGen?: string | undefined;
|
|
503
503
|
tokenInChainId?: string | number | undefined;
|
|
504
504
|
tokenOutChainId?: string | number | undefined;
|
|
@@ -509,11 +509,11 @@ declare const mcpUniswapV4QuoteInputSchema: z.ZodObject<{
|
|
|
509
509
|
baseUrl?: string | undefined;
|
|
510
510
|
universalRouterVersion?: string | undefined;
|
|
511
511
|
}, {
|
|
512
|
+
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
512
513
|
amount: string;
|
|
513
514
|
tokenIn: string;
|
|
514
515
|
tokenOut: string;
|
|
515
516
|
uniswapApiKey: string;
|
|
516
|
-
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
517
517
|
keyGen?: string | undefined;
|
|
518
518
|
chainId?: unknown;
|
|
519
519
|
tokenInChainId?: string | number | undefined;
|
|
@@ -793,12 +793,12 @@ declare const mcpUniswapV4LimitOrderQuoteInputSchema: z.ZodObject<{
|
|
|
793
793
|
tokenOutChainId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
794
794
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
795
795
|
}, "strip", z.ZodTypeAny, {
|
|
796
|
+
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
796
797
|
chainId: number;
|
|
797
798
|
amount: string;
|
|
798
799
|
tokenIn: string;
|
|
799
800
|
tokenOut: string;
|
|
800
801
|
uniswapApiKey: string;
|
|
801
|
-
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
802
802
|
limitPrice: string;
|
|
803
803
|
orderDeadline: number;
|
|
804
804
|
keyGen?: string | undefined;
|
|
@@ -808,11 +808,11 @@ declare const mcpUniswapV4LimitOrderQuoteInputSchema: z.ZodObject<{
|
|
|
808
808
|
managementNodeUrl?: string | undefined;
|
|
809
809
|
baseUrl?: string | undefined;
|
|
810
810
|
}, {
|
|
811
|
+
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
811
812
|
amount: string;
|
|
812
813
|
tokenIn: string;
|
|
813
814
|
tokenOut: string;
|
|
814
815
|
uniswapApiKey: string;
|
|
815
|
-
type: "EXACT_INPUT" | "EXACT_OUTPUT";
|
|
816
816
|
limitPrice: string;
|
|
817
817
|
orderDeadline: number;
|
|
818
818
|
keyGen?: string | undefined;
|
|
@@ -1191,20 +1191,24 @@ declare const mcpUniswapV4LpCreatePositionInputSchema: z.ZodEffects<z.ZodObject<
|
|
|
1191
1191
|
} | undefined;
|
|
1192
1192
|
poolPreset?: string | undefined;
|
|
1193
1193
|
}, unknown>;
|
|
1194
|
-
/** MCP: list curated standard V4 LP pools (poolReference computed from pool key). */
|
|
1194
|
+
/** MCP: list curated standard or permissioned V4 LP pools (poolReference computed from pool key). */
|
|
1195
1195
|
declare const mcpUniswapV4LpListPoolsInputSchema: z.ZodObject<{
|
|
1196
1196
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
1197
1197
|
pair: z.ZodOptional<z.ZodString>;
|
|
1198
|
+
permissioned: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1198
1199
|
}, "strip", z.ZodTypeAny, {
|
|
1199
1200
|
chainId: number;
|
|
1201
|
+
permissioned?: boolean | undefined;
|
|
1200
1202
|
pair?: string | undefined;
|
|
1201
1203
|
}, {
|
|
1204
|
+
permissioned?: unknown;
|
|
1202
1205
|
chainId?: unknown;
|
|
1203
1206
|
pair?: string | undefined;
|
|
1204
1207
|
}>;
|
|
1205
1208
|
declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
|
|
1206
1209
|
chainId: z.ZodNumber;
|
|
1207
1210
|
chainLabel: z.ZodString;
|
|
1211
|
+
positionManagerKind: z.ZodOptional<z.ZodEnum<["standard", "permissioned"]>>;
|
|
1208
1212
|
pools: z.ZodArray<z.ZodObject<{
|
|
1209
1213
|
presetId: z.ZodString;
|
|
1210
1214
|
pairSlug: z.ZodString;
|
|
@@ -1220,6 +1224,11 @@ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
|
|
|
1220
1224
|
hooks: z.ZodString;
|
|
1221
1225
|
nativeWrapped: z.ZodOptional<z.ZodString>;
|
|
1222
1226
|
usesNativeEth: z.ZodBoolean;
|
|
1227
|
+
positionManagerKind: z.ZodOptional<z.ZodEnum<["standard", "permissioned"]>>;
|
|
1228
|
+
positionManager: z.ZodOptional<z.ZodString>;
|
|
1229
|
+
adapterAddress: z.ZodOptional<z.ZodString>;
|
|
1230
|
+
underlyingPermissionedToken: z.ZodOptional<z.ZodString>;
|
|
1231
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
1223
1232
|
}, "strip", z.ZodTypeAny, {
|
|
1224
1233
|
hooks: string;
|
|
1225
1234
|
fee: number;
|
|
@@ -1234,7 +1243,12 @@ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
|
|
|
1234
1243
|
pairSlug: string;
|
|
1235
1244
|
feeLabel: string;
|
|
1236
1245
|
usesNativeEth: boolean;
|
|
1246
|
+
issuer?: string | undefined;
|
|
1247
|
+
positionManager?: string | undefined;
|
|
1237
1248
|
nativeWrapped?: string | undefined;
|
|
1249
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1250
|
+
underlyingPermissionedToken?: string | undefined;
|
|
1251
|
+
adapterAddress?: string | undefined;
|
|
1238
1252
|
}, {
|
|
1239
1253
|
hooks: string;
|
|
1240
1254
|
fee: number;
|
|
@@ -1249,7 +1263,12 @@ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
|
|
|
1249
1263
|
pairSlug: string;
|
|
1250
1264
|
feeLabel: string;
|
|
1251
1265
|
usesNativeEth: boolean;
|
|
1266
|
+
issuer?: string | undefined;
|
|
1267
|
+
positionManager?: string | undefined;
|
|
1252
1268
|
nativeWrapped?: string | undefined;
|
|
1269
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1270
|
+
underlyingPermissionedToken?: string | undefined;
|
|
1271
|
+
adapterAddress?: string | undefined;
|
|
1253
1272
|
}>, "many">;
|
|
1254
1273
|
notes: z.ZodString;
|
|
1255
1274
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1269,9 +1288,15 @@ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
|
|
|
1269
1288
|
pairSlug: string;
|
|
1270
1289
|
feeLabel: string;
|
|
1271
1290
|
usesNativeEth: boolean;
|
|
1291
|
+
issuer?: string | undefined;
|
|
1292
|
+
positionManager?: string | undefined;
|
|
1272
1293
|
nativeWrapped?: string | undefined;
|
|
1294
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1295
|
+
underlyingPermissionedToken?: string | undefined;
|
|
1296
|
+
adapterAddress?: string | undefined;
|
|
1273
1297
|
}[];
|
|
1274
1298
|
notes: string;
|
|
1299
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1275
1300
|
}, {
|
|
1276
1301
|
chainId: number;
|
|
1277
1302
|
chainLabel: string;
|
|
@@ -1289,9 +1314,15 @@ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
|
|
|
1289
1314
|
pairSlug: string;
|
|
1290
1315
|
feeLabel: string;
|
|
1291
1316
|
usesNativeEth: boolean;
|
|
1317
|
+
issuer?: string | undefined;
|
|
1318
|
+
positionManager?: string | undefined;
|
|
1292
1319
|
nativeWrapped?: string | undefined;
|
|
1320
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1321
|
+
underlyingPermissionedToken?: string | undefined;
|
|
1322
|
+
adapterAddress?: string | undefined;
|
|
1293
1323
|
}[];
|
|
1294
1324
|
notes: string;
|
|
1325
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1295
1326
|
}>;
|
|
1296
1327
|
declare const mcpUniswapV4LpCreatePositionOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1297
1328
|
/** MCP: POST /lp/increase */
|
|
@@ -1545,8 +1576,8 @@ declare const mcpUniswapV4RegisterPositionNftInputSchema: z.ZodObject<{
|
|
|
1545
1576
|
}, {
|
|
1546
1577
|
tokenId: string | number;
|
|
1547
1578
|
symbol?: string | undefined;
|
|
1548
|
-
chainId?: unknown;
|
|
1549
1579
|
name?: string | undefined;
|
|
1580
|
+
chainId?: unknown;
|
|
1550
1581
|
keyGenId?: string | undefined;
|
|
1551
1582
|
positionManagerAddress?: string | undefined;
|
|
1552
1583
|
tokenURI?: string | undefined;
|
|
@@ -1654,6 +1685,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
|
|
|
1654
1685
|
lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1655
1686
|
nativeWrapped: z.ZodOptional<z.ZodString>;
|
|
1656
1687
|
poolReference: z.ZodOptional<z.ZodString>;
|
|
1688
|
+
positionManagerKind: z.ZodOptional<z.ZodEnum<["standard", "permissioned"]>>;
|
|
1689
|
+
usePermit2Approvals: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1657
1690
|
}, "strip", z.ZodTypeAny, {
|
|
1658
1691
|
purposeText: string;
|
|
1659
1692
|
useCustomGas: boolean;
|
|
@@ -1679,6 +1712,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
|
|
|
1679
1712
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
1680
1713
|
nativeWrapped?: string | undefined;
|
|
1681
1714
|
poolReference?: string | undefined;
|
|
1715
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1716
|
+
usePermit2Approvals?: boolean | undefined;
|
|
1682
1717
|
keyGenId?: string | undefined;
|
|
1683
1718
|
}, {
|
|
1684
1719
|
purposeText: string;
|
|
@@ -1705,6 +1740,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
|
|
|
1705
1740
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
1706
1741
|
nativeWrapped?: string | undefined;
|
|
1707
1742
|
poolReference?: string | undefined;
|
|
1743
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1744
|
+
usePermit2Approvals?: unknown;
|
|
1708
1745
|
keyGenId?: string | undefined;
|
|
1709
1746
|
}>, {
|
|
1710
1747
|
purposeText: string;
|
|
@@ -1731,6 +1768,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
|
|
|
1731
1768
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
1732
1769
|
nativeWrapped?: string | undefined;
|
|
1733
1770
|
poolReference?: string | undefined;
|
|
1771
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1772
|
+
usePermit2Approvals?: boolean | undefined;
|
|
1734
1773
|
keyGenId?: string | undefined;
|
|
1735
1774
|
}, unknown>, {
|
|
1736
1775
|
purposeText: string;
|
|
@@ -1757,6 +1796,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
|
|
|
1757
1796
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
1758
1797
|
nativeWrapped?: string | undefined;
|
|
1759
1798
|
poolReference?: string | undefined;
|
|
1799
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1800
|
+
usePermit2Approvals?: boolean | undefined;
|
|
1760
1801
|
keyGenId?: string | undefined;
|
|
1761
1802
|
}, unknown>;
|
|
1762
1803
|
declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
@@ -1811,6 +1852,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
1811
1852
|
lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1812
1853
|
nativeWrapped: z.ZodOptional<z.ZodString>;
|
|
1813
1854
|
poolReference: z.ZodOptional<z.ZodString>;
|
|
1855
|
+
positionManagerKind: z.ZodOptional<z.ZodEnum<["standard", "permissioned"]>>;
|
|
1856
|
+
usePermit2Approvals: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1814
1857
|
}, "strip", z.ZodTypeAny, {
|
|
1815
1858
|
purposeText: string;
|
|
1816
1859
|
useCustomGas: boolean;
|
|
@@ -1837,6 +1880,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
1837
1880
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
1838
1881
|
nativeWrapped?: string | undefined;
|
|
1839
1882
|
poolReference?: string | undefined;
|
|
1883
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1884
|
+
usePermit2Approvals?: boolean | undefined;
|
|
1840
1885
|
keyGenId?: string | undefined;
|
|
1841
1886
|
}, {
|
|
1842
1887
|
purposeText: string;
|
|
@@ -1864,6 +1909,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
1864
1909
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
1865
1910
|
nativeWrapped?: string | undefined;
|
|
1866
1911
|
poolReference?: string | undefined;
|
|
1912
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1913
|
+
usePermit2Approvals?: unknown;
|
|
1867
1914
|
keyGenId?: string | undefined;
|
|
1868
1915
|
}>, {
|
|
1869
1916
|
purposeText: string;
|
|
@@ -1891,6 +1938,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
1891
1938
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
1892
1939
|
nativeWrapped?: string | undefined;
|
|
1893
1940
|
poolReference?: string | undefined;
|
|
1941
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1942
|
+
usePermit2Approvals?: boolean | undefined;
|
|
1894
1943
|
keyGenId?: string | undefined;
|
|
1895
1944
|
}, unknown>, {
|
|
1896
1945
|
purposeText: string;
|
|
@@ -1918,6 +1967,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
1918
1967
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
1919
1968
|
nativeWrapped?: string | undefined;
|
|
1920
1969
|
poolReference?: string | undefined;
|
|
1970
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1971
|
+
usePermit2Approvals?: boolean | undefined;
|
|
1921
1972
|
keyGenId?: string | undefined;
|
|
1922
1973
|
}, unknown>;
|
|
1923
1974
|
declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
@@ -1972,6 +2023,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
1972
2023
|
lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1973
2024
|
nativeWrapped: z.ZodOptional<z.ZodString>;
|
|
1974
2025
|
poolReference: z.ZodOptional<z.ZodString>;
|
|
2026
|
+
positionManagerKind: z.ZodOptional<z.ZodEnum<["standard", "permissioned"]>>;
|
|
2027
|
+
usePermit2Approvals: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1975
2028
|
}, "strip", z.ZodTypeAny, {
|
|
1976
2029
|
purposeText: string;
|
|
1977
2030
|
useCustomGas: boolean;
|
|
@@ -1998,6 +2051,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
1998
2051
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
1999
2052
|
nativeWrapped?: string | undefined;
|
|
2000
2053
|
poolReference?: string | undefined;
|
|
2054
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
2055
|
+
usePermit2Approvals?: boolean | undefined;
|
|
2001
2056
|
keyGenId?: string | undefined;
|
|
2002
2057
|
}, {
|
|
2003
2058
|
purposeText: string;
|
|
@@ -2025,6 +2080,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
2025
2080
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2026
2081
|
nativeWrapped?: string | undefined;
|
|
2027
2082
|
poolReference?: string | undefined;
|
|
2083
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
2084
|
+
usePermit2Approvals?: unknown;
|
|
2028
2085
|
keyGenId?: string | undefined;
|
|
2029
2086
|
}>, {
|
|
2030
2087
|
purposeText: string;
|
|
@@ -2052,6 +2109,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
2052
2109
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2053
2110
|
nativeWrapped?: string | undefined;
|
|
2054
2111
|
poolReference?: string | undefined;
|
|
2112
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
2113
|
+
usePermit2Approvals?: boolean | undefined;
|
|
2055
2114
|
keyGenId?: string | undefined;
|
|
2056
2115
|
}, unknown>, {
|
|
2057
2116
|
purposeText: string;
|
|
@@ -2079,6 +2138,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
|
|
|
2079
2138
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2080
2139
|
nativeWrapped?: string | undefined;
|
|
2081
2140
|
poolReference?: string | undefined;
|
|
2141
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
2142
|
+
usePermit2Approvals?: boolean | undefined;
|
|
2082
2143
|
keyGenId?: string | undefined;
|
|
2083
2144
|
}, unknown>;
|
|
2084
2145
|
declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
@@ -2133,6 +2194,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
|
|
|
2133
2194
|
lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2134
2195
|
nativeWrapped: z.ZodOptional<z.ZodString>;
|
|
2135
2196
|
poolReference: z.ZodOptional<z.ZodString>;
|
|
2197
|
+
positionManagerKind: z.ZodOptional<z.ZodEnum<["standard", "permissioned"]>>;
|
|
2198
|
+
usePermit2Approvals: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2136
2199
|
}, "strip", z.ZodTypeAny, {
|
|
2137
2200
|
purposeText: string;
|
|
2138
2201
|
useCustomGas: boolean;
|
|
@@ -2159,6 +2222,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
|
|
|
2159
2222
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2160
2223
|
nativeWrapped?: string | undefined;
|
|
2161
2224
|
poolReference?: string | undefined;
|
|
2225
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
2226
|
+
usePermit2Approvals?: boolean | undefined;
|
|
2162
2227
|
keyGenId?: string | undefined;
|
|
2163
2228
|
}, {
|
|
2164
2229
|
purposeText: string;
|
|
@@ -2186,6 +2251,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
|
|
|
2186
2251
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2187
2252
|
nativeWrapped?: string | undefined;
|
|
2188
2253
|
poolReference?: string | undefined;
|
|
2254
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
2255
|
+
usePermit2Approvals?: unknown;
|
|
2189
2256
|
keyGenId?: string | undefined;
|
|
2190
2257
|
}>, {
|
|
2191
2258
|
purposeText: string;
|
|
@@ -2213,6 +2280,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
|
|
|
2213
2280
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2214
2281
|
nativeWrapped?: string | undefined;
|
|
2215
2282
|
poolReference?: string | undefined;
|
|
2283
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
2284
|
+
usePermit2Approvals?: boolean | undefined;
|
|
2216
2285
|
keyGenId?: string | undefined;
|
|
2217
2286
|
}, unknown>, {
|
|
2218
2287
|
purposeText: string;
|
|
@@ -2240,6 +2309,8 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
|
|
|
2240
2309
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2241
2310
|
nativeWrapped?: string | undefined;
|
|
2242
2311
|
poolReference?: string | undefined;
|
|
2312
|
+
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
2313
|
+
usePermit2Approvals?: boolean | undefined;
|
|
2243
2314
|
keyGenId?: string | undefined;
|
|
2244
2315
|
}, unknown>;
|
|
2245
2316
|
type McpUniswapV4LpCreatePositionInput = z.infer<typeof mcpUniswapV4LpCreatePositionInputSchema>;
|
|
@@ -2401,6 +2472,309 @@ declare const mcpUniswapV4FetchOhlcvOutputSchema: z.ZodObject<{
|
|
|
2401
2472
|
}>;
|
|
2402
2473
|
type McpUniswapV4FetchOhlcvInput = z.infer<typeof mcpUniswapV4FetchOhlcvInputSchema>;
|
|
2403
2474
|
type McpUniswapV4FetchOhlcvOutput = z.infer<typeof mcpUniswapV4FetchOhlcvOutputSchema>;
|
|
2475
|
+
/** MCP: POST /v1/permissions */
|
|
2476
|
+
declare const mcpUniswapV4CheckPermissionsInputSchema: z.ZodObject<{
|
|
2477
|
+
walletAddress: z.ZodOptional<z.ZodString>;
|
|
2478
|
+
keyGen: z.ZodOptional<z.ZodString>;
|
|
2479
|
+
managementNodeUrl: z.ZodOptional<z.ZodString>;
|
|
2480
|
+
tokens: z.ZodArray<z.ZodString, "many">;
|
|
2481
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
2482
|
+
uniswapApiKey: z.ZodString;
|
|
2483
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
2484
|
+
}, "strip", z.ZodTypeAny, {
|
|
2485
|
+
chainId: number;
|
|
2486
|
+
uniswapApiKey: string;
|
|
2487
|
+
tokens: string[];
|
|
2488
|
+
keyGen?: string | undefined;
|
|
2489
|
+
managementNodeUrl?: string | undefined;
|
|
2490
|
+
baseUrl?: string | undefined;
|
|
2491
|
+
walletAddress?: string | undefined;
|
|
2492
|
+
}, {
|
|
2493
|
+
uniswapApiKey: string;
|
|
2494
|
+
tokens: string[];
|
|
2495
|
+
keyGen?: string | undefined;
|
|
2496
|
+
chainId?: unknown;
|
|
2497
|
+
managementNodeUrl?: string | undefined;
|
|
2498
|
+
baseUrl?: string | undefined;
|
|
2499
|
+
walletAddress?: string | undefined;
|
|
2500
|
+
}>;
|
|
2501
|
+
declare const mcpUniswapV4CheckPermissionsOutputSchema: z.ZodObject<{
|
|
2502
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
2503
|
+
results: z.ZodArray<z.ZodObject<{
|
|
2504
|
+
token: z.ZodString;
|
|
2505
|
+
isPermissioned: z.ZodBoolean;
|
|
2506
|
+
isAllowlisted: z.ZodBoolean;
|
|
2507
|
+
adapterTokenAddress: z.ZodOptional<z.ZodString>;
|
|
2508
|
+
kycUrl: z.ZodOptional<z.ZodString>;
|
|
2509
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
2510
|
+
}, "strip", z.ZodTypeAny, {
|
|
2511
|
+
token: string;
|
|
2512
|
+
isPermissioned: boolean;
|
|
2513
|
+
isAllowlisted: boolean;
|
|
2514
|
+
adapterTokenAddress?: string | undefined;
|
|
2515
|
+
kycUrl?: string | undefined;
|
|
2516
|
+
issuer?: string | undefined;
|
|
2517
|
+
}, {
|
|
2518
|
+
token: string;
|
|
2519
|
+
isPermissioned: boolean;
|
|
2520
|
+
isAllowlisted: boolean;
|
|
2521
|
+
adapterTokenAddress?: string | undefined;
|
|
2522
|
+
kycUrl?: string | undefined;
|
|
2523
|
+
issuer?: string | undefined;
|
|
2524
|
+
}>, "many">;
|
|
2525
|
+
anyPermissioned: z.ZodBoolean;
|
|
2526
|
+
allAllowlisted: z.ZodBoolean;
|
|
2527
|
+
requiresUniversalRouterV22: z.ZodBoolean;
|
|
2528
|
+
}, "strip", z.ZodTypeAny, {
|
|
2529
|
+
anyPermissioned: boolean;
|
|
2530
|
+
allAllowlisted: boolean;
|
|
2531
|
+
requiresUniversalRouterV22: boolean;
|
|
2532
|
+
results: {
|
|
2533
|
+
token: string;
|
|
2534
|
+
isPermissioned: boolean;
|
|
2535
|
+
isAllowlisted: boolean;
|
|
2536
|
+
adapterTokenAddress?: string | undefined;
|
|
2537
|
+
kycUrl?: string | undefined;
|
|
2538
|
+
issuer?: string | undefined;
|
|
2539
|
+
}[];
|
|
2540
|
+
requestId?: string | undefined;
|
|
2541
|
+
}, {
|
|
2542
|
+
anyPermissioned: boolean;
|
|
2543
|
+
allAllowlisted: boolean;
|
|
2544
|
+
requiresUniversalRouterV22: boolean;
|
|
2545
|
+
results: {
|
|
2546
|
+
token: string;
|
|
2547
|
+
isPermissioned: boolean;
|
|
2548
|
+
isAllowlisted: boolean;
|
|
2549
|
+
adapterTokenAddress?: string | undefined;
|
|
2550
|
+
kycUrl?: string | undefined;
|
|
2551
|
+
issuer?: string | undefined;
|
|
2552
|
+
}[];
|
|
2553
|
+
requestId?: string | undefined;
|
|
2554
|
+
}>;
|
|
2555
|
+
/** MCP: build KYC apply URL (no sign request). */
|
|
2556
|
+
declare const mcpUniswapV4KycApplyLinkInputSchema: z.ZodObject<{
|
|
2557
|
+
walletAddress: z.ZodString;
|
|
2558
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
2559
|
+
kycUrl: z.ZodString;
|
|
2560
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
2561
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2562
|
+
adapterTokenAddress: z.ZodOptional<z.ZodString>;
|
|
2563
|
+
}, "strip", z.ZodTypeAny, {
|
|
2564
|
+
kycUrl: string;
|
|
2565
|
+
chainId: number;
|
|
2566
|
+
walletAddress: string;
|
|
2567
|
+
token?: string | undefined;
|
|
2568
|
+
adapterTokenAddress?: string | undefined;
|
|
2569
|
+
issuer?: string | undefined;
|
|
2570
|
+
}, {
|
|
2571
|
+
kycUrl: string;
|
|
2572
|
+
walletAddress: string;
|
|
2573
|
+
token?: string | undefined;
|
|
2574
|
+
adapterTokenAddress?: string | undefined;
|
|
2575
|
+
issuer?: string | undefined;
|
|
2576
|
+
chainId?: unknown;
|
|
2577
|
+
}>;
|
|
2578
|
+
declare const mcpUniswapV4KycApplyLinkOutputSchema: z.ZodObject<{
|
|
2579
|
+
walletAddress: z.ZodString;
|
|
2580
|
+
chainId: z.ZodNumber;
|
|
2581
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
2582
|
+
kycUrl: z.ZodString;
|
|
2583
|
+
applyUrl: z.ZodString;
|
|
2584
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2585
|
+
adapterTokenAddress: z.ZodOptional<z.ZodString>;
|
|
2586
|
+
}, "strip", z.ZodTypeAny, {
|
|
2587
|
+
kycUrl: string;
|
|
2588
|
+
chainId: number;
|
|
2589
|
+
walletAddress: string;
|
|
2590
|
+
applyUrl: string;
|
|
2591
|
+
token?: string | undefined;
|
|
2592
|
+
adapterTokenAddress?: string | undefined;
|
|
2593
|
+
issuer?: string | undefined;
|
|
2594
|
+
}, {
|
|
2595
|
+
kycUrl: string;
|
|
2596
|
+
chainId: number;
|
|
2597
|
+
walletAddress: string;
|
|
2598
|
+
applyUrl: string;
|
|
2599
|
+
token?: string | undefined;
|
|
2600
|
+
adapterTokenAddress?: string | undefined;
|
|
2601
|
+
issuer?: string | undefined;
|
|
2602
|
+
}>;
|
|
2603
|
+
/** MCP: build allowlist-finalize EVM multiSignRequest from issuer `{to,data}`. */
|
|
2604
|
+
declare const mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
2605
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
2606
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
2607
|
+
pubkeyhex: z.ZodString;
|
|
2608
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2609
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2610
|
+
}, "strip", z.ZodTypeAny, {
|
|
2611
|
+
pubkeyhex: string;
|
|
2612
|
+
keylist?: string[] | undefined;
|
|
2613
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
2614
|
+
}, {
|
|
2615
|
+
pubkeyhex: string;
|
|
2616
|
+
keylist?: string[] | undefined;
|
|
2617
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
2618
|
+
}>>;
|
|
2619
|
+
purposeText: z.ZodString;
|
|
2620
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
2621
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
2622
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
2623
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
2624
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
2625
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
2626
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2627
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2628
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2629
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2630
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2631
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2632
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2633
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
2634
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2635
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2636
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2637
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2638
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2639
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2640
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2641
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
2642
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2643
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2644
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2645
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2646
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2647
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2648
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2649
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2650
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
2651
|
+
} & {
|
|
2652
|
+
to: z.ZodString;
|
|
2653
|
+
data: z.ZodString;
|
|
2654
|
+
valueWei: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2655
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
2656
|
+
entityId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2657
|
+
tokenAddress: z.ZodOptional<z.ZodString>;
|
|
2658
|
+
}, "strip", z.ZodTypeAny, {
|
|
2659
|
+
purposeText: string;
|
|
2660
|
+
useCustomGas: boolean;
|
|
2661
|
+
to: string;
|
|
2662
|
+
data: string;
|
|
2663
|
+
chainId: number;
|
|
2664
|
+
keyGen?: {
|
|
2665
|
+
pubkeyhex: string;
|
|
2666
|
+
keylist?: string[] | undefined;
|
|
2667
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
2668
|
+
} | undefined;
|
|
2669
|
+
issuer?: string | undefined;
|
|
2670
|
+
expiryDate?: number | undefined;
|
|
2671
|
+
rpcUrl?: string | undefined;
|
|
2672
|
+
executorAddress?: string | undefined;
|
|
2673
|
+
chainDetail?: z.objectOutputType<{
|
|
2674
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
2675
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2676
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2677
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2678
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2679
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2680
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2681
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2682
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2683
|
+
tokenAddress?: string | undefined;
|
|
2684
|
+
keyGenId?: string | undefined;
|
|
2685
|
+
valueWei?: string | number | undefined;
|
|
2686
|
+
entityId?: string | number | undefined;
|
|
2687
|
+
}, {
|
|
2688
|
+
purposeText: string;
|
|
2689
|
+
to: string;
|
|
2690
|
+
data: string;
|
|
2691
|
+
keyGen?: {
|
|
2692
|
+
pubkeyhex: string;
|
|
2693
|
+
keylist?: string[] | undefined;
|
|
2694
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
2695
|
+
} | undefined;
|
|
2696
|
+
useCustomGas?: unknown;
|
|
2697
|
+
issuer?: string | undefined;
|
|
2698
|
+
chainId?: unknown;
|
|
2699
|
+
expiryDate?: number | undefined;
|
|
2700
|
+
rpcUrl?: string | undefined;
|
|
2701
|
+
executorAddress?: string | undefined;
|
|
2702
|
+
chainDetail?: z.objectInputType<{
|
|
2703
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
2704
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2705
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2706
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2707
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2708
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2709
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2710
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2711
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2712
|
+
tokenAddress?: string | undefined;
|
|
2713
|
+
keyGenId?: string | undefined;
|
|
2714
|
+
valueWei?: string | number | undefined;
|
|
2715
|
+
entityId?: string | number | undefined;
|
|
2716
|
+
}>, {
|
|
2717
|
+
purposeText: string;
|
|
2718
|
+
useCustomGas: boolean;
|
|
2719
|
+
to: string;
|
|
2720
|
+
data: string;
|
|
2721
|
+
chainId: number;
|
|
2722
|
+
keyGen?: {
|
|
2723
|
+
pubkeyhex: string;
|
|
2724
|
+
keylist?: string[] | undefined;
|
|
2725
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
2726
|
+
} | undefined;
|
|
2727
|
+
issuer?: string | undefined;
|
|
2728
|
+
expiryDate?: number | undefined;
|
|
2729
|
+
rpcUrl?: string | undefined;
|
|
2730
|
+
executorAddress?: string | undefined;
|
|
2731
|
+
chainDetail?: z.objectOutputType<{
|
|
2732
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
2733
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2734
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2735
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2736
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2737
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2738
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2739
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2740
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2741
|
+
tokenAddress?: string | undefined;
|
|
2742
|
+
keyGenId?: string | undefined;
|
|
2743
|
+
valueWei?: string | number | undefined;
|
|
2744
|
+
entityId?: string | number | undefined;
|
|
2745
|
+
}, unknown>, {
|
|
2746
|
+
purposeText: string;
|
|
2747
|
+
useCustomGas: boolean;
|
|
2748
|
+
to: string;
|
|
2749
|
+
data: string;
|
|
2750
|
+
chainId: number;
|
|
2751
|
+
keyGen?: {
|
|
2752
|
+
pubkeyhex: string;
|
|
2753
|
+
keylist?: string[] | undefined;
|
|
2754
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
2755
|
+
} | undefined;
|
|
2756
|
+
issuer?: string | undefined;
|
|
2757
|
+
expiryDate?: number | undefined;
|
|
2758
|
+
rpcUrl?: string | undefined;
|
|
2759
|
+
executorAddress?: string | undefined;
|
|
2760
|
+
chainDetail?: z.objectOutputType<{
|
|
2761
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
2762
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2763
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2764
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2765
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2766
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2767
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
2768
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2769
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
2770
|
+
tokenAddress?: string | undefined;
|
|
2771
|
+
keyGenId?: string | undefined;
|
|
2772
|
+
valueWei?: string | number | undefined;
|
|
2773
|
+
entityId?: string | number | undefined;
|
|
2774
|
+
}, unknown>;
|
|
2775
|
+
type McpUniswapV4CheckPermissionsInput = z.infer<typeof mcpUniswapV4CheckPermissionsInputSchema>;
|
|
2776
|
+
type McpUniswapV4KycApplyLinkInput = z.infer<typeof mcpUniswapV4KycApplyLinkInputSchema>;
|
|
2777
|
+
type McpUniswapV4BuildAllowlistFinalizeMultisignInput = z.infer<typeof mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema>;
|
|
2404
2778
|
|
|
2405
2779
|
/** Input for MCP tool `ctm_curve_dao_quote` → handler `curveDaoQuote`. */
|
|
2406
2780
|
declare const mcpCurveDaoQuoteInputSchema: z.ZodObject<{
|
|
@@ -4175,20 +4549,543 @@ declare const mcpMorphoMerklClaimInputSchema: z.ZodEffects<z.ZodObject<{} & {
|
|
|
4175
4549
|
}, {
|
|
4176
4550
|
[x: string]: any;
|
|
4177
4551
|
}>;
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4552
|
+
declare const mcpMorphoMidnightLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
4553
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
4554
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
4555
|
+
pubkeyhex: z.ZodString;
|
|
4556
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4557
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4558
|
+
}, "strip", z.ZodTypeAny, {
|
|
4559
|
+
pubkeyhex: string;
|
|
4560
|
+
keylist?: string[] | undefined;
|
|
4561
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4562
|
+
}, {
|
|
4563
|
+
pubkeyhex: string;
|
|
4564
|
+
keylist?: string[] | undefined;
|
|
4565
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4566
|
+
}>>;
|
|
4567
|
+
purposeText: z.ZodString;
|
|
4568
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
4181
4569
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4570
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
4571
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
4572
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
4573
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4574
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4575
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4576
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4577
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4578
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4579
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4580
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4581
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4582
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4583
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4584
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4585
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4586
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4587
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4588
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4589
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4590
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4591
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4592
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4593
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4594
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4595
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4596
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
4597
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4598
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
4599
|
+
} & {
|
|
4600
|
+
marketId: z.ZodString;
|
|
4601
|
+
amountHuman: z.ZodString;
|
|
4602
|
+
loanToken: z.ZodOptional<z.ZodString>;
|
|
4603
|
+
slippagePct: z.ZodOptional<z.ZodString>;
|
|
4604
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
4605
|
+
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
4185
4606
|
}, "strip", z.ZodTypeAny, {
|
|
4607
|
+
purposeText: string;
|
|
4608
|
+
useCustomGas: boolean;
|
|
4186
4609
|
chainId: number;
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4610
|
+
amountHuman: string;
|
|
4611
|
+
marketId: string;
|
|
4612
|
+
keyGen?: {
|
|
4613
|
+
pubkeyhex: string;
|
|
4614
|
+
keylist?: string[] | undefined;
|
|
4615
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4616
|
+
} | undefined;
|
|
4617
|
+
expiryDate?: number | undefined;
|
|
4618
|
+
rpcUrl?: string | undefined;
|
|
4619
|
+
executorAddress?: string | undefined;
|
|
4620
|
+
chainDetail?: z.objectOutputType<{
|
|
4621
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4622
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4623
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4624
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4625
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4626
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4627
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4628
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4629
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4630
|
+
keyGenId?: string | undefined;
|
|
4631
|
+
marketLabel?: string | undefined;
|
|
4632
|
+
loanToken?: string | undefined;
|
|
4633
|
+
slippagePct?: string | undefined;
|
|
4634
|
+
isNativeIn?: boolean | undefined;
|
|
4635
|
+
}, {
|
|
4636
|
+
purposeText: string;
|
|
4637
|
+
amountHuman: string;
|
|
4638
|
+
marketId: string;
|
|
4639
|
+
keyGen?: {
|
|
4640
|
+
pubkeyhex: string;
|
|
4641
|
+
keylist?: string[] | undefined;
|
|
4642
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4643
|
+
} | undefined;
|
|
4644
|
+
useCustomGas?: unknown;
|
|
4645
|
+
chainId?: unknown;
|
|
4646
|
+
expiryDate?: number | undefined;
|
|
4647
|
+
rpcUrl?: string | undefined;
|
|
4648
|
+
executorAddress?: string | undefined;
|
|
4649
|
+
chainDetail?: z.objectInputType<{
|
|
4650
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4651
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4652
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4653
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4654
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4655
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4656
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4657
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4658
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4659
|
+
keyGenId?: string | undefined;
|
|
4660
|
+
marketLabel?: string | undefined;
|
|
4661
|
+
loanToken?: string | undefined;
|
|
4662
|
+
slippagePct?: string | undefined;
|
|
4663
|
+
isNativeIn?: unknown;
|
|
4664
|
+
}>, {
|
|
4665
|
+
purposeText: string;
|
|
4666
|
+
useCustomGas: boolean;
|
|
4667
|
+
chainId: number;
|
|
4668
|
+
amountHuman: string;
|
|
4669
|
+
marketId: string;
|
|
4670
|
+
keyGen?: {
|
|
4671
|
+
pubkeyhex: string;
|
|
4672
|
+
keylist?: string[] | undefined;
|
|
4673
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4674
|
+
} | undefined;
|
|
4675
|
+
expiryDate?: number | undefined;
|
|
4676
|
+
rpcUrl?: string | undefined;
|
|
4677
|
+
executorAddress?: string | undefined;
|
|
4678
|
+
chainDetail?: z.objectOutputType<{
|
|
4679
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4680
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4681
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4682
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4683
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4684
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4685
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4686
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4687
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4688
|
+
keyGenId?: string | undefined;
|
|
4689
|
+
marketLabel?: string | undefined;
|
|
4690
|
+
loanToken?: string | undefined;
|
|
4691
|
+
slippagePct?: string | undefined;
|
|
4692
|
+
isNativeIn?: boolean | undefined;
|
|
4693
|
+
}, unknown>, {
|
|
4694
|
+
purposeText: string;
|
|
4695
|
+
useCustomGas: boolean;
|
|
4696
|
+
chainId: number;
|
|
4697
|
+
amountHuman: string;
|
|
4698
|
+
marketId: string;
|
|
4699
|
+
keyGen?: {
|
|
4700
|
+
pubkeyhex: string;
|
|
4701
|
+
keylist?: string[] | undefined;
|
|
4702
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4703
|
+
} | undefined;
|
|
4704
|
+
expiryDate?: number | undefined;
|
|
4705
|
+
rpcUrl?: string | undefined;
|
|
4706
|
+
executorAddress?: string | undefined;
|
|
4707
|
+
chainDetail?: z.objectOutputType<{
|
|
4708
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4709
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4710
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4711
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4712
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4713
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4714
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4715
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4716
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4717
|
+
keyGenId?: string | undefined;
|
|
4718
|
+
marketLabel?: string | undefined;
|
|
4719
|
+
loanToken?: string | undefined;
|
|
4720
|
+
slippagePct?: string | undefined;
|
|
4721
|
+
isNativeIn?: boolean | undefined;
|
|
4722
|
+
}, unknown>;
|
|
4723
|
+
declare const mcpMorphoMidnightBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
4724
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
4725
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
4726
|
+
pubkeyhex: z.ZodString;
|
|
4727
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4728
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4729
|
+
}, "strip", z.ZodTypeAny, {
|
|
4730
|
+
pubkeyhex: string;
|
|
4731
|
+
keylist?: string[] | undefined;
|
|
4732
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4733
|
+
}, {
|
|
4734
|
+
pubkeyhex: string;
|
|
4735
|
+
keylist?: string[] | undefined;
|
|
4736
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4737
|
+
}>>;
|
|
4738
|
+
purposeText: z.ZodString;
|
|
4739
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
4740
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
4741
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
4742
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
4743
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
4744
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4745
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4746
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4747
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4748
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4749
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4750
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4751
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4752
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4753
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4754
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4755
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4756
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4757
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4758
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4759
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4760
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4761
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4762
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4763
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4764
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4765
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4766
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4767
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
4768
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4769
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
4770
|
+
} & {
|
|
4771
|
+
marketId: z.ZodString;
|
|
4772
|
+
borrowAmountHuman: z.ZodString;
|
|
4773
|
+
collateralAmountHuman: z.ZodString;
|
|
4774
|
+
collateralToken: z.ZodString;
|
|
4775
|
+
loanToken: z.ZodOptional<z.ZodString>;
|
|
4776
|
+
collateralIndex: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4777
|
+
slippagePct: z.ZodOptional<z.ZodString>;
|
|
4778
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
4779
|
+
isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
4780
|
+
}, "strip", z.ZodTypeAny, {
|
|
4781
|
+
purposeText: string;
|
|
4782
|
+
useCustomGas: boolean;
|
|
4783
|
+
chainId: number;
|
|
4784
|
+
collateralAmountHuman: string;
|
|
4785
|
+
collateralToken: string;
|
|
4786
|
+
marketId: string;
|
|
4787
|
+
borrowAmountHuman: string;
|
|
4788
|
+
keyGen?: {
|
|
4789
|
+
pubkeyhex: string;
|
|
4790
|
+
keylist?: string[] | undefined;
|
|
4791
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4792
|
+
} | undefined;
|
|
4793
|
+
expiryDate?: number | undefined;
|
|
4794
|
+
rpcUrl?: string | undefined;
|
|
4795
|
+
executorAddress?: string | undefined;
|
|
4796
|
+
chainDetail?: z.objectOutputType<{
|
|
4797
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4798
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4799
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4800
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4801
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4802
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4803
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4804
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4805
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4806
|
+
keyGenId?: string | undefined;
|
|
4807
|
+
marketLabel?: string | undefined;
|
|
4808
|
+
loanToken?: string | undefined;
|
|
4809
|
+
slippagePct?: string | undefined;
|
|
4810
|
+
isNativeIn?: boolean | undefined;
|
|
4811
|
+
collateralIndex?: number | undefined;
|
|
4812
|
+
}, {
|
|
4813
|
+
purposeText: string;
|
|
4814
|
+
collateralAmountHuman: string;
|
|
4815
|
+
collateralToken: string;
|
|
4816
|
+
marketId: string;
|
|
4817
|
+
borrowAmountHuman: string;
|
|
4818
|
+
keyGen?: {
|
|
4819
|
+
pubkeyhex: string;
|
|
4820
|
+
keylist?: string[] | undefined;
|
|
4821
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4822
|
+
} | undefined;
|
|
4823
|
+
useCustomGas?: unknown;
|
|
4824
|
+
chainId?: unknown;
|
|
4825
|
+
expiryDate?: number | undefined;
|
|
4826
|
+
rpcUrl?: string | undefined;
|
|
4827
|
+
executorAddress?: string | undefined;
|
|
4828
|
+
chainDetail?: z.objectInputType<{
|
|
4829
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4830
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4831
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4832
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4833
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4834
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4835
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4836
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4837
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4838
|
+
keyGenId?: string | undefined;
|
|
4839
|
+
marketLabel?: string | undefined;
|
|
4840
|
+
loanToken?: string | undefined;
|
|
4841
|
+
slippagePct?: string | undefined;
|
|
4842
|
+
isNativeIn?: unknown;
|
|
4843
|
+
collateralIndex?: unknown;
|
|
4844
|
+
}>, {
|
|
4845
|
+
purposeText: string;
|
|
4846
|
+
useCustomGas: boolean;
|
|
4847
|
+
chainId: number;
|
|
4848
|
+
collateralAmountHuman: string;
|
|
4849
|
+
collateralToken: string;
|
|
4850
|
+
marketId: string;
|
|
4851
|
+
borrowAmountHuman: string;
|
|
4852
|
+
keyGen?: {
|
|
4853
|
+
pubkeyhex: string;
|
|
4854
|
+
keylist?: string[] | undefined;
|
|
4855
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4856
|
+
} | undefined;
|
|
4857
|
+
expiryDate?: number | undefined;
|
|
4858
|
+
rpcUrl?: string | undefined;
|
|
4859
|
+
executorAddress?: string | undefined;
|
|
4860
|
+
chainDetail?: z.objectOutputType<{
|
|
4861
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4862
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4863
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4864
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4865
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4866
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4867
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4868
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4869
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4870
|
+
keyGenId?: string | undefined;
|
|
4871
|
+
marketLabel?: string | undefined;
|
|
4872
|
+
loanToken?: string | undefined;
|
|
4873
|
+
slippagePct?: string | undefined;
|
|
4874
|
+
isNativeIn?: boolean | undefined;
|
|
4875
|
+
collateralIndex?: number | undefined;
|
|
4876
|
+
}, unknown>, {
|
|
4877
|
+
purposeText: string;
|
|
4878
|
+
useCustomGas: boolean;
|
|
4879
|
+
chainId: number;
|
|
4880
|
+
collateralAmountHuman: string;
|
|
4881
|
+
collateralToken: string;
|
|
4882
|
+
marketId: string;
|
|
4883
|
+
borrowAmountHuman: string;
|
|
4884
|
+
keyGen?: {
|
|
4885
|
+
pubkeyhex: string;
|
|
4886
|
+
keylist?: string[] | undefined;
|
|
4887
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4888
|
+
} | undefined;
|
|
4889
|
+
expiryDate?: number | undefined;
|
|
4890
|
+
rpcUrl?: string | undefined;
|
|
4891
|
+
executorAddress?: string | undefined;
|
|
4892
|
+
chainDetail?: z.objectOutputType<{
|
|
4893
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4894
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4895
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4896
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4897
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4898
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4899
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4900
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4901
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4902
|
+
keyGenId?: string | undefined;
|
|
4903
|
+
marketLabel?: string | undefined;
|
|
4904
|
+
loanToken?: string | undefined;
|
|
4905
|
+
slippagePct?: string | undefined;
|
|
4906
|
+
isNativeIn?: boolean | undefined;
|
|
4907
|
+
collateralIndex?: number | undefined;
|
|
4908
|
+
}, unknown>;
|
|
4909
|
+
declare const mcpMorphoMidnightRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
4910
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
4911
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
4912
|
+
pubkeyhex: z.ZodString;
|
|
4913
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4914
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4915
|
+
}, "strip", z.ZodTypeAny, {
|
|
4916
|
+
pubkeyhex: string;
|
|
4917
|
+
keylist?: string[] | undefined;
|
|
4918
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4919
|
+
}, {
|
|
4920
|
+
pubkeyhex: string;
|
|
4921
|
+
keylist?: string[] | undefined;
|
|
4922
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4923
|
+
}>>;
|
|
4924
|
+
purposeText: z.ZodString;
|
|
4925
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
4926
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
4927
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
4928
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
4929
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
4930
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4931
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4932
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4933
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4934
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4935
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4936
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4937
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4938
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4939
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4940
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4941
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4942
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4943
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4944
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4945
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4946
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4947
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4948
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4949
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4950
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4951
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4952
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4953
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
4954
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4955
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
4956
|
+
} & {
|
|
4957
|
+
marketId: z.ZodString;
|
|
4958
|
+
repayAmountHuman: z.ZodOptional<z.ZodString>;
|
|
4959
|
+
loanToken: z.ZodOptional<z.ZodString>;
|
|
4960
|
+
withdrawAllCollateral: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
4961
|
+
marketLabel: z.ZodOptional<z.ZodString>;
|
|
4962
|
+
}, "strip", z.ZodTypeAny, {
|
|
4963
|
+
purposeText: string;
|
|
4964
|
+
useCustomGas: boolean;
|
|
4965
|
+
chainId: number;
|
|
4966
|
+
marketId: string;
|
|
4967
|
+
keyGen?: {
|
|
4968
|
+
pubkeyhex: string;
|
|
4969
|
+
keylist?: string[] | undefined;
|
|
4970
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4971
|
+
} | undefined;
|
|
4972
|
+
expiryDate?: number | undefined;
|
|
4973
|
+
rpcUrl?: string | undefined;
|
|
4974
|
+
executorAddress?: string | undefined;
|
|
4975
|
+
chainDetail?: z.objectOutputType<{
|
|
4976
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4977
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4978
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4979
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4980
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4981
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4982
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4983
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4984
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4985
|
+
keyGenId?: string | undefined;
|
|
4986
|
+
marketLabel?: string | undefined;
|
|
4987
|
+
loanToken?: string | undefined;
|
|
4988
|
+
repayAmountHuman?: string | undefined;
|
|
4989
|
+
withdrawAllCollateral?: boolean | undefined;
|
|
4990
|
+
}, {
|
|
4991
|
+
purposeText: string;
|
|
4992
|
+
marketId: string;
|
|
4993
|
+
keyGen?: {
|
|
4994
|
+
pubkeyhex: string;
|
|
4995
|
+
keylist?: string[] | undefined;
|
|
4996
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4997
|
+
} | undefined;
|
|
4998
|
+
useCustomGas?: unknown;
|
|
4999
|
+
chainId?: unknown;
|
|
5000
|
+
expiryDate?: number | undefined;
|
|
5001
|
+
rpcUrl?: string | undefined;
|
|
5002
|
+
executorAddress?: string | undefined;
|
|
5003
|
+
chainDetail?: z.objectInputType<{
|
|
5004
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
5005
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5006
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5007
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5008
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5009
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5010
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5011
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5012
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
5013
|
+
keyGenId?: string | undefined;
|
|
5014
|
+
marketLabel?: string | undefined;
|
|
5015
|
+
loanToken?: string | undefined;
|
|
5016
|
+
repayAmountHuman?: string | undefined;
|
|
5017
|
+
withdrawAllCollateral?: unknown;
|
|
5018
|
+
}>, {
|
|
5019
|
+
purposeText: string;
|
|
5020
|
+
useCustomGas: boolean;
|
|
5021
|
+
chainId: number;
|
|
5022
|
+
marketId: string;
|
|
5023
|
+
keyGen?: {
|
|
5024
|
+
pubkeyhex: string;
|
|
5025
|
+
keylist?: string[] | undefined;
|
|
5026
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
5027
|
+
} | undefined;
|
|
5028
|
+
expiryDate?: number | undefined;
|
|
5029
|
+
rpcUrl?: string | undefined;
|
|
5030
|
+
executorAddress?: string | undefined;
|
|
5031
|
+
chainDetail?: z.objectOutputType<{
|
|
5032
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
5033
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5034
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5035
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5036
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5037
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5038
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5039
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5040
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
5041
|
+
keyGenId?: string | undefined;
|
|
5042
|
+
marketLabel?: string | undefined;
|
|
5043
|
+
loanToken?: string | undefined;
|
|
5044
|
+
repayAmountHuman?: string | undefined;
|
|
5045
|
+
withdrawAllCollateral?: boolean | undefined;
|
|
5046
|
+
}, unknown>, {
|
|
5047
|
+
purposeText: string;
|
|
5048
|
+
useCustomGas: boolean;
|
|
5049
|
+
chainId: number;
|
|
5050
|
+
marketId: string;
|
|
5051
|
+
keyGen?: {
|
|
5052
|
+
pubkeyhex: string;
|
|
5053
|
+
keylist?: string[] | undefined;
|
|
5054
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
5055
|
+
} | undefined;
|
|
5056
|
+
expiryDate?: number | undefined;
|
|
5057
|
+
rpcUrl?: string | undefined;
|
|
5058
|
+
executorAddress?: string | undefined;
|
|
5059
|
+
chainDetail?: z.objectOutputType<{
|
|
5060
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
5061
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5062
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5063
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5064
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5065
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5066
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5067
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5068
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
5069
|
+
keyGenId?: string | undefined;
|
|
5070
|
+
marketLabel?: string | undefined;
|
|
5071
|
+
loanToken?: string | undefined;
|
|
5072
|
+
repayAmountHuman?: string | undefined;
|
|
5073
|
+
withdrawAllCollateral?: boolean | undefined;
|
|
5074
|
+
}, unknown>;
|
|
5075
|
+
type McpMorphoVaultDepositInput = z.infer<typeof mcpMorphoVaultDepositInputSchema>;
|
|
5076
|
+
|
|
5077
|
+
declare const mcpMorphoFetchEarnVaultsInputSchema: z.ZodObject<{
|
|
5078
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
5079
|
+
underlying: z.ZodOptional<z.ZodString>;
|
|
5080
|
+
query: z.ZodOptional<z.ZodString>;
|
|
5081
|
+
limit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5082
|
+
}, "strip", z.ZodTypeAny, {
|
|
5083
|
+
chainId: number;
|
|
5084
|
+
limit?: number | undefined;
|
|
5085
|
+
underlying?: string | undefined;
|
|
5086
|
+
query?: string | undefined;
|
|
5087
|
+
}, {
|
|
5088
|
+
chainId?: unknown;
|
|
4192
5089
|
limit?: unknown;
|
|
4193
5090
|
underlying?: string | undefined;
|
|
4194
5091
|
query?: string | undefined;
|
|
@@ -4398,6 +5295,297 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
4398
5295
|
}>;
|
|
4399
5296
|
type McpMorphoFetchBlueMarketsInput = z.infer<typeof mcpMorphoFetchBlueMarketsInputSchema>;
|
|
4400
5297
|
type McpMorphoFetchBlueMarketsOutput = z.infer<typeof mcpMorphoFetchBlueMarketsOutputSchema>;
|
|
5298
|
+
declare const mcpMorphoFetchMidnightBooksInputSchema: z.ZodObject<{
|
|
5299
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
5300
|
+
loan: z.ZodOptional<z.ZodString>;
|
|
5301
|
+
collateral: z.ZodOptional<z.ZodString>;
|
|
5302
|
+
query: z.ZodOptional<z.ZodString>;
|
|
5303
|
+
side: z.ZodOptional<z.ZodEnum<["bids", "asks", "either"]>>;
|
|
5304
|
+
limit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
5305
|
+
}, "strip", z.ZodTypeAny, {
|
|
5306
|
+
chainId: number;
|
|
5307
|
+
limit?: number | undefined;
|
|
5308
|
+
query?: string | undefined;
|
|
5309
|
+
collateral?: string | undefined;
|
|
5310
|
+
loan?: string | undefined;
|
|
5311
|
+
side?: "bids" | "asks" | "either" | undefined;
|
|
5312
|
+
}, {
|
|
5313
|
+
chainId?: unknown;
|
|
5314
|
+
limit?: unknown;
|
|
5315
|
+
query?: string | undefined;
|
|
5316
|
+
collateral?: string | undefined;
|
|
5317
|
+
loan?: string | undefined;
|
|
5318
|
+
side?: "bids" | "asks" | "either" | undefined;
|
|
5319
|
+
}>;
|
|
5320
|
+
declare const mcpMorphoFetchMidnightBooksOutputSchema: z.ZodObject<{
|
|
5321
|
+
books: z.ZodArray<z.ZodObject<{
|
|
5322
|
+
marketId: z.ZodString;
|
|
5323
|
+
chainId: z.ZodNumber;
|
|
5324
|
+
midnightAddress: z.ZodString;
|
|
5325
|
+
loanTokenAddress: z.ZodString;
|
|
5326
|
+
maturity: z.ZodNumber;
|
|
5327
|
+
maturityIso: z.ZodString;
|
|
5328
|
+
collateralTokenAddresses: z.ZodArray<z.ZodString, "many">;
|
|
5329
|
+
primaryCollateralTokenAddress: z.ZodNullable<z.ZodString>;
|
|
5330
|
+
primaryCollateralLltv: z.ZodNullable<z.ZodString>;
|
|
5331
|
+
bestAskPriceWad: z.ZodNullable<z.ZodString>;
|
|
5332
|
+
bestBidPriceWad: z.ZodNullable<z.ZodString>;
|
|
5333
|
+
bestAskAssets: z.ZodNullable<z.ZodString>;
|
|
5334
|
+
bestBidAssets: z.ZodNullable<z.ZodString>;
|
|
5335
|
+
lendApr: z.ZodString;
|
|
5336
|
+
borrowApr: z.ZodString;
|
|
5337
|
+
lendAprNumeric: z.ZodNullable<z.ZodNumber>;
|
|
5338
|
+
borrowAprNumeric: z.ZodNullable<z.ZodNumber>;
|
|
5339
|
+
marketLabel: z.ZodString;
|
|
5340
|
+
}, "strip", z.ZodTypeAny, {
|
|
5341
|
+
chainId: number;
|
|
5342
|
+
marketId: string;
|
|
5343
|
+
marketLabel: string;
|
|
5344
|
+
loanTokenAddress: string;
|
|
5345
|
+
midnightAddress: string;
|
|
5346
|
+
maturity: number;
|
|
5347
|
+
maturityIso: string;
|
|
5348
|
+
collateralTokenAddresses: string[];
|
|
5349
|
+
primaryCollateralTokenAddress: string | null;
|
|
5350
|
+
primaryCollateralLltv: string | null;
|
|
5351
|
+
bestAskPriceWad: string | null;
|
|
5352
|
+
bestBidPriceWad: string | null;
|
|
5353
|
+
bestAskAssets: string | null;
|
|
5354
|
+
bestBidAssets: string | null;
|
|
5355
|
+
lendApr: string;
|
|
5356
|
+
borrowApr: string;
|
|
5357
|
+
lendAprNumeric: number | null;
|
|
5358
|
+
borrowAprNumeric: number | null;
|
|
5359
|
+
}, {
|
|
5360
|
+
chainId: number;
|
|
5361
|
+
marketId: string;
|
|
5362
|
+
marketLabel: string;
|
|
5363
|
+
loanTokenAddress: string;
|
|
5364
|
+
midnightAddress: string;
|
|
5365
|
+
maturity: number;
|
|
5366
|
+
maturityIso: string;
|
|
5367
|
+
collateralTokenAddresses: string[];
|
|
5368
|
+
primaryCollateralTokenAddress: string | null;
|
|
5369
|
+
primaryCollateralLltv: string | null;
|
|
5370
|
+
bestAskPriceWad: string | null;
|
|
5371
|
+
bestBidPriceWad: string | null;
|
|
5372
|
+
bestAskAssets: string | null;
|
|
5373
|
+
bestBidAssets: string | null;
|
|
5374
|
+
lendApr: string;
|
|
5375
|
+
borrowApr: string;
|
|
5376
|
+
lendAprNumeric: number | null;
|
|
5377
|
+
borrowAprNumeric: number | null;
|
|
5378
|
+
}>, "many">;
|
|
5379
|
+
}, "strip", z.ZodTypeAny, {
|
|
5380
|
+
books: {
|
|
5381
|
+
chainId: number;
|
|
5382
|
+
marketId: string;
|
|
5383
|
+
marketLabel: string;
|
|
5384
|
+
loanTokenAddress: string;
|
|
5385
|
+
midnightAddress: string;
|
|
5386
|
+
maturity: number;
|
|
5387
|
+
maturityIso: string;
|
|
5388
|
+
collateralTokenAddresses: string[];
|
|
5389
|
+
primaryCollateralTokenAddress: string | null;
|
|
5390
|
+
primaryCollateralLltv: string | null;
|
|
5391
|
+
bestAskPriceWad: string | null;
|
|
5392
|
+
bestBidPriceWad: string | null;
|
|
5393
|
+
bestAskAssets: string | null;
|
|
5394
|
+
bestBidAssets: string | null;
|
|
5395
|
+
lendApr: string;
|
|
5396
|
+
borrowApr: string;
|
|
5397
|
+
lendAprNumeric: number | null;
|
|
5398
|
+
borrowAprNumeric: number | null;
|
|
5399
|
+
}[];
|
|
5400
|
+
}, {
|
|
5401
|
+
books: {
|
|
5402
|
+
chainId: number;
|
|
5403
|
+
marketId: string;
|
|
5404
|
+
marketLabel: string;
|
|
5405
|
+
loanTokenAddress: string;
|
|
5406
|
+
midnightAddress: string;
|
|
5407
|
+
maturity: number;
|
|
5408
|
+
maturityIso: string;
|
|
5409
|
+
collateralTokenAddresses: string[];
|
|
5410
|
+
primaryCollateralTokenAddress: string | null;
|
|
5411
|
+
primaryCollateralLltv: string | null;
|
|
5412
|
+
bestAskPriceWad: string | null;
|
|
5413
|
+
bestBidPriceWad: string | null;
|
|
5414
|
+
bestAskAssets: string | null;
|
|
5415
|
+
bestBidAssets: string | null;
|
|
5416
|
+
lendApr: string;
|
|
5417
|
+
borrowApr: string;
|
|
5418
|
+
lendAprNumeric: number | null;
|
|
5419
|
+
borrowAprNumeric: number | null;
|
|
5420
|
+
}[];
|
|
5421
|
+
}>;
|
|
5422
|
+
type McpMorphoFetchMidnightBooksInput = z.infer<typeof mcpMorphoFetchMidnightBooksInputSchema>;
|
|
5423
|
+
type McpMorphoFetchMidnightBooksOutput = z.infer<typeof mcpMorphoFetchMidnightBooksOutputSchema>;
|
|
5424
|
+
declare const mcpMorphoFetchMidnightQuoteInputSchema: z.ZodObject<{
|
|
5425
|
+
marketId: z.ZodString;
|
|
5426
|
+
side: z.ZodEnum<["asks", "bids"]>;
|
|
5427
|
+
assets: z.ZodString;
|
|
5428
|
+
slippagePct: z.ZodOptional<z.ZodString>;
|
|
5429
|
+
}, "strip", z.ZodTypeAny, {
|
|
5430
|
+
marketId: string;
|
|
5431
|
+
side: "bids" | "asks";
|
|
5432
|
+
assets: string;
|
|
5433
|
+
slippagePct?: string | undefined;
|
|
5434
|
+
}, {
|
|
5435
|
+
marketId: string;
|
|
5436
|
+
side: "bids" | "asks";
|
|
5437
|
+
assets: string;
|
|
5438
|
+
slippagePct?: string | undefined;
|
|
5439
|
+
}>;
|
|
5440
|
+
declare const mcpMorphoFetchMidnightQuoteOutputSchema: z.ZodObject<{
|
|
5441
|
+
marketId: z.ZodString;
|
|
5442
|
+
side: z.ZodEnum<["asks", "bids"]>;
|
|
5443
|
+
averageBestPriceWad: z.ZodString;
|
|
5444
|
+
averageWorstPriceWad: z.ZodString;
|
|
5445
|
+
availableAssets: z.ZodString;
|
|
5446
|
+
availableUnits: z.ZodString;
|
|
5447
|
+
impliedApr: z.ZodString;
|
|
5448
|
+
impliedAprNumeric: z.ZodNullable<z.ZodNumber>;
|
|
5449
|
+
maturity: z.ZodNullable<z.ZodNumber>;
|
|
5450
|
+
takeableOfferCount: z.ZodNumber;
|
|
5451
|
+
}, "strip", z.ZodTypeAny, {
|
|
5452
|
+
marketId: string;
|
|
5453
|
+
side: "bids" | "asks";
|
|
5454
|
+
maturity: number | null;
|
|
5455
|
+
averageBestPriceWad: string;
|
|
5456
|
+
averageWorstPriceWad: string;
|
|
5457
|
+
availableAssets: string;
|
|
5458
|
+
availableUnits: string;
|
|
5459
|
+
impliedApr: string;
|
|
5460
|
+
impliedAprNumeric: number | null;
|
|
5461
|
+
takeableOfferCount: number;
|
|
5462
|
+
}, {
|
|
5463
|
+
marketId: string;
|
|
5464
|
+
side: "bids" | "asks";
|
|
5465
|
+
maturity: number | null;
|
|
5466
|
+
averageBestPriceWad: string;
|
|
5467
|
+
averageWorstPriceWad: string;
|
|
5468
|
+
availableAssets: string;
|
|
5469
|
+
availableUnits: string;
|
|
5470
|
+
impliedApr: string;
|
|
5471
|
+
impliedAprNumeric: number | null;
|
|
5472
|
+
takeableOfferCount: number;
|
|
5473
|
+
}>;
|
|
5474
|
+
type McpMorphoFetchMidnightQuoteInput = z.infer<typeof mcpMorphoFetchMidnightQuoteInputSchema>;
|
|
5475
|
+
type McpMorphoFetchMidnightQuoteOutput = z.infer<typeof mcpMorphoFetchMidnightQuoteOutputSchema>;
|
|
5476
|
+
declare const mcpMorphoFetchMidnightPositionsInputSchema: z.ZodObject<{
|
|
5477
|
+
user: z.ZodString;
|
|
5478
|
+
types: z.ZodOptional<z.ZodEnum<["lend", "borrow", "collateral_only"]>>;
|
|
5479
|
+
activeOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5480
|
+
}, "strip", z.ZodTypeAny, {
|
|
5481
|
+
user: string;
|
|
5482
|
+
types?: "lend" | "borrow" | "collateral_only" | undefined;
|
|
5483
|
+
activeOnly?: boolean | undefined;
|
|
5484
|
+
}, {
|
|
5485
|
+
user: string;
|
|
5486
|
+
types?: "lend" | "borrow" | "collateral_only" | undefined;
|
|
5487
|
+
activeOnly?: boolean | undefined;
|
|
5488
|
+
}>;
|
|
5489
|
+
declare const mcpMorphoFetchMidnightPositionsOutputSchema: z.ZodObject<{
|
|
5490
|
+
positions: z.ZodArray<z.ZodObject<{
|
|
5491
|
+
marketId: z.ZodString;
|
|
5492
|
+
type: z.ZodString;
|
|
5493
|
+
credit: z.ZodString;
|
|
5494
|
+
debt: z.ZodString;
|
|
5495
|
+
pendingFee: z.ZodString;
|
|
5496
|
+
repayAssets: z.ZodString;
|
|
5497
|
+
maturity: z.ZodNullable<z.ZodNumber>;
|
|
5498
|
+
maturityIso: z.ZodString;
|
|
5499
|
+
loanTokenAddress: z.ZodNullable<z.ZodString>;
|
|
5500
|
+
collateralTokenAddresses: z.ZodArray<z.ZodString, "many">;
|
|
5501
|
+
collateralAmounts: z.ZodArray<z.ZodObject<{
|
|
5502
|
+
token: z.ZodString;
|
|
5503
|
+
amount: z.ZodString;
|
|
5504
|
+
}, "strip", z.ZodTypeAny, {
|
|
5505
|
+
token: string;
|
|
5506
|
+
amount: string;
|
|
5507
|
+
}, {
|
|
5508
|
+
token: string;
|
|
5509
|
+
amount: string;
|
|
5510
|
+
}>, "many">;
|
|
5511
|
+
effectiveRate: z.ZodString;
|
|
5512
|
+
costBasis: z.ZodNullable<z.ZodString>;
|
|
5513
|
+
}, "strip", z.ZodTypeAny, {
|
|
5514
|
+
type: string;
|
|
5515
|
+
marketId: string;
|
|
5516
|
+
loanTokenAddress: string | null;
|
|
5517
|
+
maturity: number | null;
|
|
5518
|
+
maturityIso: string;
|
|
5519
|
+
collateralTokenAddresses: string[];
|
|
5520
|
+
credit: string;
|
|
5521
|
+
debt: string;
|
|
5522
|
+
pendingFee: string;
|
|
5523
|
+
repayAssets: string;
|
|
5524
|
+
collateralAmounts: {
|
|
5525
|
+
token: string;
|
|
5526
|
+
amount: string;
|
|
5527
|
+
}[];
|
|
5528
|
+
effectiveRate: string;
|
|
5529
|
+
costBasis: string | null;
|
|
5530
|
+
}, {
|
|
5531
|
+
type: string;
|
|
5532
|
+
marketId: string;
|
|
5533
|
+
loanTokenAddress: string | null;
|
|
5534
|
+
maturity: number | null;
|
|
5535
|
+
maturityIso: string;
|
|
5536
|
+
collateralTokenAddresses: string[];
|
|
5537
|
+
credit: string;
|
|
5538
|
+
debt: string;
|
|
5539
|
+
pendingFee: string;
|
|
5540
|
+
repayAssets: string;
|
|
5541
|
+
collateralAmounts: {
|
|
5542
|
+
token: string;
|
|
5543
|
+
amount: string;
|
|
5544
|
+
}[];
|
|
5545
|
+
effectiveRate: string;
|
|
5546
|
+
costBasis: string | null;
|
|
5547
|
+
}>, "many">;
|
|
5548
|
+
}, "strip", z.ZodTypeAny, {
|
|
5549
|
+
positions: {
|
|
5550
|
+
type: string;
|
|
5551
|
+
marketId: string;
|
|
5552
|
+
loanTokenAddress: string | null;
|
|
5553
|
+
maturity: number | null;
|
|
5554
|
+
maturityIso: string;
|
|
5555
|
+
collateralTokenAddresses: string[];
|
|
5556
|
+
credit: string;
|
|
5557
|
+
debt: string;
|
|
5558
|
+
pendingFee: string;
|
|
5559
|
+
repayAssets: string;
|
|
5560
|
+
collateralAmounts: {
|
|
5561
|
+
token: string;
|
|
5562
|
+
amount: string;
|
|
5563
|
+
}[];
|
|
5564
|
+
effectiveRate: string;
|
|
5565
|
+
costBasis: string | null;
|
|
5566
|
+
}[];
|
|
5567
|
+
}, {
|
|
5568
|
+
positions: {
|
|
5569
|
+
type: string;
|
|
5570
|
+
marketId: string;
|
|
5571
|
+
loanTokenAddress: string | null;
|
|
5572
|
+
maturity: number | null;
|
|
5573
|
+
maturityIso: string;
|
|
5574
|
+
collateralTokenAddresses: string[];
|
|
5575
|
+
credit: string;
|
|
5576
|
+
debt: string;
|
|
5577
|
+
pendingFee: string;
|
|
5578
|
+
repayAssets: string;
|
|
5579
|
+
collateralAmounts: {
|
|
5580
|
+
token: string;
|
|
5581
|
+
amount: string;
|
|
5582
|
+
}[];
|
|
5583
|
+
effectiveRate: string;
|
|
5584
|
+
costBasis: string | null;
|
|
5585
|
+
}[];
|
|
5586
|
+
}>;
|
|
5587
|
+
type McpMorphoFetchMidnightPositionsInput = z.infer<typeof mcpMorphoFetchMidnightPositionsInputSchema>;
|
|
5588
|
+
type McpMorphoFetchMidnightPositionsOutput = z.infer<typeof mcpMorphoFetchMidnightPositionsOutputSchema>;
|
|
4401
5589
|
|
|
4402
5590
|
declare const mcpEulerV2FetchLendVaultsInputSchema: z.ZodObject<{
|
|
4403
5591
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
@@ -4942,8 +6130,8 @@ declare const mcpGmxFetchOhlcvInputSchema: z.ZodObject<{
|
|
|
4942
6130
|
limit?: number | undefined;
|
|
4943
6131
|
}, {
|
|
4944
6132
|
symbol: string;
|
|
4945
|
-
chainId?: unknown;
|
|
4946
6133
|
sort?: "asc" | "desc" | undefined;
|
|
6134
|
+
chainId?: unknown;
|
|
4947
6135
|
timeframe?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | undefined;
|
|
4948
6136
|
limit?: unknown;
|
|
4949
6137
|
}>;
|
|
@@ -6569,7 +7757,6 @@ declare const mcpArcusSpotFetchMarketsOutputSchema: z.ZodObject<{
|
|
|
6569
7757
|
}>, "many">;
|
|
6570
7758
|
marketKind: z.ZodLiteral<"spot">;
|
|
6571
7759
|
}, "strip", z.ZodTypeAny, {
|
|
6572
|
-
marketKind: "spot";
|
|
6573
7760
|
tokens: {
|
|
6574
7761
|
name: string;
|
|
6575
7762
|
contractAddress: string;
|
|
@@ -6577,8 +7764,8 @@ declare const mcpArcusSpotFetchMarketsOutputSchema: z.ZodObject<{
|
|
|
6577
7764
|
logoUrl?: string | null | undefined;
|
|
6578
7765
|
price?: string | null | undefined;
|
|
6579
7766
|
}[];
|
|
6580
|
-
}, {
|
|
6581
7767
|
marketKind: "spot";
|
|
7768
|
+
}, {
|
|
6582
7769
|
tokens: {
|
|
6583
7770
|
name: string;
|
|
6584
7771
|
contractAddress: string;
|
|
@@ -6586,6 +7773,7 @@ declare const mcpArcusSpotFetchMarketsOutputSchema: z.ZodObject<{
|
|
|
6586
7773
|
logoUrl?: string | null | undefined;
|
|
6587
7774
|
price?: string | null | undefined;
|
|
6588
7775
|
}[];
|
|
7776
|
+
marketKind: "spot";
|
|
6589
7777
|
}>;
|
|
6590
7778
|
declare const mcpArcusSpotFetchOhlcvInputSchema: z.ZodObject<{
|
|
6591
7779
|
chainId: z.ZodDefault<z.ZodNumber>;
|
|
@@ -8469,4 +9657,4 @@ declare function getAgentCatalog(): {
|
|
|
8469
9657
|
};
|
|
8470
9658
|
};
|
|
8471
9659
|
|
|
8472
|
-
export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
|
|
9660
|
+
export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoFetchMidnightBooksInput, type McpMorphoFetchMidnightBooksOutput, type McpMorphoFetchMidnightPositionsInput, type McpMorphoFetchMidnightPositionsOutput, type McpMorphoFetchMidnightQuoteInput, type McpMorphoFetchMidnightQuoteOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildAllowlistFinalizeMultisignInput, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CheckPermissionsInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4KycApplyLinkInput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightRepayInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CheckPermissionsInputSchema, mcpUniswapV4CheckPermissionsOutputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4KycApplyLinkInputSchema, mcpUniswapV4KycApplyLinkOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
|