@continuumdao/ctm-mpc-defi 0.2.34 → 0.2.35
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 +712 -44
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +1630 -244
- package/dist/agent/catalog.js +678 -45
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/aave-v4/SKILL.md +19 -4
- package/dist/agent/skills/aerodrome/SKILL.md +2 -2
- package/dist/agent/skills/compound-v3/SKILL.md +2 -2
- package/dist/agent/skills/curve-dao/SKILL.md +14 -0
- package/dist/agent/skills/ethena/SKILL.md +3 -1
- package/dist/agent/skills/euler-v2/SKILL.md +1 -1
- package/dist/agent/skills/gmx/SKILL.md +1 -1
- package/dist/agent/skills/hyperliquid/SKILL.md +7 -5
- package/dist/agent/skills/lido/SKILL.md +3 -0
- package/dist/agent/skills/maple-syrup/SKILL.md +35 -3
- package/dist/agent/skills/morpho/SKILL.md +1 -1
- package/dist/agent/skills/sky/SKILL.md +2 -0
- package/dist/agent/skills/yield-compare/SKILL.md +78 -0
- package/dist/index.cjs +129 -29
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +129 -27
- package/dist/index.js.map +1 -1
- package/dist/protocols/evm/aave-v4/index.cjs +170 -0
- package/dist/protocols/evm/aave-v4/index.cjs.map +1 -1
- package/dist/protocols/evm/aave-v4/index.d.ts +59 -1
- package/dist/protocols/evm/aave-v4/index.js +164 -1
- package/dist/protocols/evm/aave-v4/index.js.map +1 -1
- package/dist/protocols/evm/aerodrome/index.cjs +1308 -901
- package/dist/protocols/evm/aerodrome/index.cjs.map +1 -1
- package/dist/protocols/evm/aerodrome/index.d.ts +69 -2
- package/dist/protocols/evm/aerodrome/index.js +1217 -807
- package/dist/protocols/evm/aerodrome/index.js.map +1 -1
- package/dist/protocols/evm/compound-v3/index.cjs +82 -6
- package/dist/protocols/evm/compound-v3/index.cjs.map +1 -1
- package/dist/protocols/evm/compound-v3/index.d.ts +89 -1
- package/dist/protocols/evm/compound-v3/index.js +80 -7
- package/dist/protocols/evm/compound-v3/index.js.map +1 -1
- package/dist/protocols/evm/curve-dao/index.cjs +447 -18
- package/dist/protocols/evm/curve-dao/index.cjs.map +1 -1
- package/dist/protocols/evm/curve-dao/index.d.ts +108 -1
- package/dist/protocols/evm/curve-dao/index.js +440 -19
- package/dist/protocols/evm/curve-dao/index.js.map +1 -1
- package/dist/protocols/evm/ethena/index.cjs +89 -0
- package/dist/protocols/evm/ethena/index.cjs.map +1 -1
- package/dist/protocols/evm/ethena/index.d.ts +17 -1
- package/dist/protocols/evm/ethena/index.js +89 -2
- package/dist/protocols/evm/ethena/index.js.map +1 -1
- package/dist/protocols/evm/euler-v2/index.cjs +29 -0
- package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
- package/dist/protocols/evm/euler-v2/index.d.ts +21 -1
- package/dist/protocols/evm/euler-v2/index.js +29 -1
- package/dist/protocols/evm/euler-v2/index.js.map +1 -1
- package/dist/protocols/evm/gmx/index.cjs +83 -1
- package/dist/protocols/evm/gmx/index.cjs.map +1 -1
- package/dist/protocols/evm/gmx/index.d.ts +22 -2
- package/dist/protocols/evm/gmx/index.js +80 -2
- package/dist/protocols/evm/gmx/index.js.map +1 -1
- package/dist/protocols/evm/hyperliquid/index.cjs +67 -11
- package/dist/protocols/evm/hyperliquid/index.cjs.map +1 -1
- package/dist/protocols/evm/hyperliquid/index.d.ts +39 -2
- package/dist/protocols/evm/hyperliquid/index.js +64 -12
- package/dist/protocols/evm/hyperliquid/index.js.map +1 -1
- package/dist/protocols/evm/lido/index.cjs +13 -0
- package/dist/protocols/evm/lido/index.cjs.map +1 -1
- package/dist/protocols/evm/lido/index.d.ts +9 -1
- package/dist/protocols/evm/lido/index.js +13 -1
- package/dist/protocols/evm/lido/index.js.map +1 -1
- package/dist/protocols/evm/maple/index.cjs +129 -1
- package/dist/protocols/evm/maple/index.cjs.map +1 -1
- package/dist/protocols/evm/maple/index.d.ts +45 -1
- package/dist/protocols/evm/maple/index.js +124 -3
- package/dist/protocols/evm/maple/index.js.map +1 -1
- package/dist/protocols/evm/morpho/index.cjs +34 -7
- package/dist/protocols/evm/morpho/index.cjs.map +1 -1
- package/dist/protocols/evm/morpho/index.d.ts +23 -1
- package/dist/protocols/evm/morpho/index.js +34 -8
- package/dist/protocols/evm/morpho/index.js.map +1 -1
- package/dist/protocols/evm/sky/index.cjs +52 -0
- package/dist/protocols/evm/sky/index.cjs.map +1 -1
- package/dist/protocols/evm/sky/index.d.ts +16 -1
- package/dist/protocols/evm/sky/index.js +50 -1
- package/dist/protocols/evm/sky/index.js.map +1 -1
- package/package.json +1 -1
package/dist/agent/catalog.d.ts
CHANGED
|
@@ -1274,7 +1274,7 @@ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
|
|
|
1274
1274
|
notes: z.ZodString;
|
|
1275
1275
|
}, "strip", z.ZodTypeAny, {
|
|
1276
1276
|
chainId: number;
|
|
1277
|
-
|
|
1277
|
+
notes: string;
|
|
1278
1278
|
pools: {
|
|
1279
1279
|
hooks: string;
|
|
1280
1280
|
fee: number;
|
|
@@ -1296,11 +1296,11 @@ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
|
|
|
1296
1296
|
underlyingPermissionedToken?: string | undefined;
|
|
1297
1297
|
adapterAddress?: string | undefined;
|
|
1298
1298
|
}[];
|
|
1299
|
-
|
|
1299
|
+
chainLabel: string;
|
|
1300
1300
|
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1301
1301
|
}, {
|
|
1302
1302
|
chainId: number;
|
|
1303
|
-
|
|
1303
|
+
notes: string;
|
|
1304
1304
|
pools: {
|
|
1305
1305
|
hooks: string;
|
|
1306
1306
|
fee: number;
|
|
@@ -1322,7 +1322,7 @@ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
|
|
|
1322
1322
|
underlyingPermissionedToken?: string | undefined;
|
|
1323
1323
|
adapterAddress?: string | undefined;
|
|
1324
1324
|
}[];
|
|
1325
|
-
|
|
1325
|
+
chainLabel: string;
|
|
1326
1326
|
positionManagerKind?: "standard" | "permissioned" | undefined;
|
|
1327
1327
|
}>;
|
|
1328
1328
|
declare const mcpUniswapV4LpCreatePositionOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -2968,85 +2968,70 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffect
|
|
|
2968
2968
|
keyGenId?: string | undefined;
|
|
2969
2969
|
quoteSnapshot?: Record<string, unknown> | undefined;
|
|
2970
2970
|
}, unknown>;
|
|
2971
|
-
|
|
2972
|
-
type McpCurveDaoQuoteOutput = z.infer<typeof mcpCurveDaoQuoteOutputSchema>;
|
|
2973
|
-
type McpCurveDaoBuildSwapMultisignInput = z.infer<typeof mcpCurveDaoBuildSwapMultisignInputSchema>;
|
|
2974
|
-
|
|
2975
|
-
declare const mcpAerodromeDiscoverPoolsInputSchema: z.ZodObject<{
|
|
2971
|
+
declare const mcpCurveDaoFetchImportantPoolsInputSchema: z.ZodObject<{
|
|
2976
2972
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
2977
|
-
|
|
2978
|
-
token: z.ZodString;
|
|
2979
|
-
tokenOut: z.ZodOptional<z.ZodString>;
|
|
2973
|
+
query: z.ZodOptional<z.ZodString>;
|
|
2980
2974
|
}, "strip", z.ZodTypeAny, {
|
|
2981
|
-
token: string;
|
|
2982
2975
|
chainId: number;
|
|
2983
|
-
|
|
2984
|
-
rpcUrl?: string | undefined;
|
|
2976
|
+
query?: string | undefined;
|
|
2985
2977
|
}, {
|
|
2986
|
-
token: string;
|
|
2987
2978
|
chainId?: unknown;
|
|
2988
|
-
|
|
2989
|
-
rpcUrl?: string | undefined;
|
|
2979
|
+
query?: string | undefined;
|
|
2990
2980
|
}>;
|
|
2991
|
-
declare const
|
|
2992
|
-
declare const
|
|
2981
|
+
declare const mcpCurveDaoFetchImportantPoolsOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2982
|
+
declare const mcpCurveDaoFetchLpYieldsInputSchema: z.ZodObject<{
|
|
2993
2983
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2984
|
+
query: z.ZodOptional<z.ZodString>;
|
|
2985
|
+
} & {
|
|
2986
|
+
pool: z.ZodOptional<z.ZodString>;
|
|
2997
2987
|
}, "strip", z.ZodTypeAny, {
|
|
2998
2988
|
chainId: number;
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
offset?: number | undefined;
|
|
2989
|
+
pool?: string | undefined;
|
|
2990
|
+
query?: string | undefined;
|
|
3002
2991
|
}, {
|
|
3003
2992
|
chainId?: unknown;
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
offset?: number | undefined;
|
|
2993
|
+
pool?: string | undefined;
|
|
2994
|
+
query?: string | undefined;
|
|
3007
2995
|
}>;
|
|
3008
|
-
declare const
|
|
3009
|
-
declare const
|
|
2996
|
+
declare const mcpCurveDaoFetchLpYieldsOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2997
|
+
declare const mcpCurveDaoQuoteAddLiquidityInputSchema: z.ZodObject<{
|
|
3010
2998
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3011
2999
|
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3012
|
-
|
|
3013
|
-
|
|
3000
|
+
pool: z.ZodString;
|
|
3001
|
+
amountsHuman: z.ZodArray<z.ZodString, "many">;
|
|
3002
|
+
stakeInGauge: z.ZodOptional<z.ZodBoolean>;
|
|
3014
3003
|
}, "strip", z.ZodTypeAny, {
|
|
3015
3004
|
chainId: number;
|
|
3016
|
-
|
|
3005
|
+
pool: string;
|
|
3006
|
+
amountsHuman: string[];
|
|
3017
3007
|
rpcUrl?: string | undefined;
|
|
3018
|
-
|
|
3008
|
+
stakeInGauge?: boolean | undefined;
|
|
3019
3009
|
}, {
|
|
3020
|
-
|
|
3010
|
+
pool: string;
|
|
3011
|
+
amountsHuman: string[];
|
|
3021
3012
|
chainId?: unknown;
|
|
3022
3013
|
rpcUrl?: string | undefined;
|
|
3023
|
-
|
|
3014
|
+
stakeInGauge?: boolean | undefined;
|
|
3024
3015
|
}>;
|
|
3025
|
-
declare const
|
|
3026
|
-
declare const
|
|
3016
|
+
declare const mcpCurveDaoQuoteAddLiquidityOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3017
|
+
declare const mcpCurveDaoQuoteRemoveLiquidityInputSchema: z.ZodObject<{
|
|
3027
3018
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3028
3019
|
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
amountHuman: z.ZodString;
|
|
3032
|
-
tokenInDecimals: z.ZodOptional<z.ZodNumber>;
|
|
3020
|
+
pool: z.ZodString;
|
|
3021
|
+
lpAmountHuman: z.ZodString;
|
|
3033
3022
|
}, "strip", z.ZodTypeAny, {
|
|
3034
3023
|
chainId: number;
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
amountHuman: string;
|
|
3038
|
-
tokenInDecimals?: number | undefined;
|
|
3024
|
+
pool: string;
|
|
3025
|
+
lpAmountHuman: string;
|
|
3039
3026
|
rpcUrl?: string | undefined;
|
|
3040
3027
|
}, {
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
amountHuman: string;
|
|
3028
|
+
pool: string;
|
|
3029
|
+
lpAmountHuman: string;
|
|
3044
3030
|
chainId?: unknown;
|
|
3045
|
-
tokenInDecimals?: number | undefined;
|
|
3046
3031
|
rpcUrl?: string | undefined;
|
|
3047
3032
|
}>;
|
|
3048
|
-
declare const
|
|
3049
|
-
declare const
|
|
3033
|
+
declare const mcpCurveDaoQuoteRemoveLiquidityOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3034
|
+
declare const mcpCurveDaoBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
3050
3035
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
3051
3036
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
3052
3037
|
pubkeyhex: z.ZodString;
|
|
@@ -3094,19 +3079,17 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
3094
3079
|
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3095
3080
|
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
3096
3081
|
} & {
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
amountHuman: z.ZodString;
|
|
3082
|
+
pool: z.ZodString;
|
|
3083
|
+
amountsHuman: z.ZodArray<z.ZodString, "many">;
|
|
3100
3084
|
slippagePercent: z.ZodNumber;
|
|
3101
|
-
|
|
3085
|
+
stakeInGauge: z.ZodOptional<z.ZodBoolean>;
|
|
3102
3086
|
}, "strip", z.ZodTypeAny, {
|
|
3103
3087
|
purposeText: string;
|
|
3104
3088
|
useCustomGas: boolean;
|
|
3105
3089
|
chainId: number;
|
|
3106
|
-
|
|
3107
|
-
tokenOut: string;
|
|
3090
|
+
pool: string;
|
|
3108
3091
|
slippagePercent: number;
|
|
3109
|
-
|
|
3092
|
+
amountsHuman: string[];
|
|
3110
3093
|
keyGen?: {
|
|
3111
3094
|
pubkeyhex: string;
|
|
3112
3095
|
keylist?: string[] | undefined;
|
|
@@ -3126,13 +3109,12 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
3126
3109
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3127
3110
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3128
3111
|
keyGenId?: string | undefined;
|
|
3129
|
-
|
|
3112
|
+
stakeInGauge?: boolean | undefined;
|
|
3130
3113
|
}, {
|
|
3131
3114
|
purposeText: string;
|
|
3132
|
-
|
|
3133
|
-
tokenOut: string;
|
|
3115
|
+
pool: string;
|
|
3134
3116
|
slippagePercent: number;
|
|
3135
|
-
|
|
3117
|
+
amountsHuman: string[];
|
|
3136
3118
|
keyGen?: {
|
|
3137
3119
|
pubkeyhex: string;
|
|
3138
3120
|
keylist?: string[] | undefined;
|
|
@@ -3154,15 +3136,14 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
3154
3136
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3155
3137
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3156
3138
|
keyGenId?: string | undefined;
|
|
3157
|
-
|
|
3139
|
+
stakeInGauge?: boolean | undefined;
|
|
3158
3140
|
}>, {
|
|
3159
3141
|
purposeText: string;
|
|
3160
3142
|
useCustomGas: boolean;
|
|
3161
3143
|
chainId: number;
|
|
3162
|
-
|
|
3163
|
-
tokenOut: string;
|
|
3144
|
+
pool: string;
|
|
3164
3145
|
slippagePercent: number;
|
|
3165
|
-
|
|
3146
|
+
amountsHuman: string[];
|
|
3166
3147
|
keyGen?: {
|
|
3167
3148
|
pubkeyhex: string;
|
|
3168
3149
|
keylist?: string[] | undefined;
|
|
@@ -3182,13 +3163,12 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
3182
3163
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3183
3164
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3184
3165
|
keyGenId?: string | undefined;
|
|
3185
|
-
|
|
3166
|
+
stakeInGauge?: boolean | undefined;
|
|
3186
3167
|
}, {
|
|
3187
3168
|
purposeText: string;
|
|
3188
|
-
|
|
3189
|
-
tokenOut: string;
|
|
3169
|
+
pool: string;
|
|
3190
3170
|
slippagePercent: number;
|
|
3191
|
-
|
|
3171
|
+
amountsHuman: string[];
|
|
3192
3172
|
keyGen?: {
|
|
3193
3173
|
pubkeyhex: string;
|
|
3194
3174
|
keylist?: string[] | undefined;
|
|
@@ -3210,96 +3190,9 @@ declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
|
|
|
3210
3190
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3211
3191
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3212
3192
|
keyGenId?: string | undefined;
|
|
3213
|
-
|
|
3214
|
-
}>;
|
|
3215
|
-
declare const mcpAerodromeQuoteAddLiquidityInputSchema: z.ZodEffects<z.ZodObject<{
|
|
3216
|
-
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3217
|
-
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3218
|
-
tokenA: z.ZodString;
|
|
3219
|
-
tokenB: z.ZodString;
|
|
3220
|
-
stable: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
3221
|
-
amountAHuman: z.ZodOptional<z.ZodString>;
|
|
3222
|
-
amountBHuman: z.ZodOptional<z.ZodString>;
|
|
3223
|
-
tokenADecimals: z.ZodOptional<z.ZodNumber>;
|
|
3224
|
-
tokenBDecimals: z.ZodOptional<z.ZodNumber>;
|
|
3225
|
-
}, "strip", z.ZodTypeAny, {
|
|
3226
|
-
chainId: number;
|
|
3227
|
-
tokenA: string;
|
|
3228
|
-
tokenB: string;
|
|
3229
|
-
stable: boolean;
|
|
3230
|
-
rpcUrl?: string | undefined;
|
|
3231
|
-
amountAHuman?: string | undefined;
|
|
3232
|
-
amountBHuman?: string | undefined;
|
|
3233
|
-
tokenADecimals?: number | undefined;
|
|
3234
|
-
tokenBDecimals?: number | undefined;
|
|
3235
|
-
}, {
|
|
3236
|
-
tokenA: string;
|
|
3237
|
-
tokenB: string;
|
|
3238
|
-
chainId?: unknown;
|
|
3239
|
-
rpcUrl?: string | undefined;
|
|
3240
|
-
stable?: unknown;
|
|
3241
|
-
amountAHuman?: string | undefined;
|
|
3242
|
-
amountBHuman?: string | undefined;
|
|
3243
|
-
tokenADecimals?: number | undefined;
|
|
3244
|
-
tokenBDecimals?: number | undefined;
|
|
3245
|
-
}>, {
|
|
3246
|
-
chainId: number;
|
|
3247
|
-
tokenA: string;
|
|
3248
|
-
tokenB: string;
|
|
3249
|
-
stable: boolean;
|
|
3250
|
-
rpcUrl?: string | undefined;
|
|
3251
|
-
amountAHuman?: string | undefined;
|
|
3252
|
-
amountBHuman?: string | undefined;
|
|
3253
|
-
tokenADecimals?: number | undefined;
|
|
3254
|
-
tokenBDecimals?: number | undefined;
|
|
3255
|
-
}, {
|
|
3256
|
-
tokenA: string;
|
|
3257
|
-
tokenB: string;
|
|
3258
|
-
chainId?: unknown;
|
|
3259
|
-
rpcUrl?: string | undefined;
|
|
3260
|
-
stable?: unknown;
|
|
3261
|
-
amountAHuman?: string | undefined;
|
|
3262
|
-
amountBHuman?: string | undefined;
|
|
3263
|
-
tokenADecimals?: number | undefined;
|
|
3264
|
-
tokenBDecimals?: number | undefined;
|
|
3265
|
-
}>;
|
|
3266
|
-
declare const mcpAerodromeQuoteAddLiquidityOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3267
|
-
declare const mcpAerodromeQuoteClDepositInputSchema: z.ZodObject<{
|
|
3268
|
-
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3269
|
-
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3270
|
-
token0: z.ZodString;
|
|
3271
|
-
token1: z.ZodString;
|
|
3272
|
-
amount0Human: z.ZodOptional<z.ZodString>;
|
|
3273
|
-
amount1Human: z.ZodOptional<z.ZodString>;
|
|
3274
|
-
tickSpacing: z.ZodNumber;
|
|
3275
|
-
tickLower: z.ZodNumber;
|
|
3276
|
-
tickUpper: z.ZodNumber;
|
|
3277
|
-
sqrtPriceX96: z.ZodString;
|
|
3278
|
-
}, "strip", z.ZodTypeAny, {
|
|
3279
|
-
chainId: number;
|
|
3280
|
-
tickSpacing: number;
|
|
3281
|
-
token0: string;
|
|
3282
|
-
token1: string;
|
|
3283
|
-
tickLower: number;
|
|
3284
|
-
tickUpper: number;
|
|
3285
|
-
sqrtPriceX96: string;
|
|
3286
|
-
rpcUrl?: string | undefined;
|
|
3287
|
-
amount0Human?: string | undefined;
|
|
3288
|
-
amount1Human?: string | undefined;
|
|
3289
|
-
}, {
|
|
3290
|
-
tickSpacing: number;
|
|
3291
|
-
token0: string;
|
|
3292
|
-
token1: string;
|
|
3293
|
-
tickLower: number;
|
|
3294
|
-
tickUpper: number;
|
|
3295
|
-
sqrtPriceX96: string;
|
|
3296
|
-
chainId?: unknown;
|
|
3297
|
-
rpcUrl?: string | undefined;
|
|
3298
|
-
amount0Human?: string | undefined;
|
|
3299
|
-
amount1Human?: string | undefined;
|
|
3193
|
+
stakeInGauge?: boolean | undefined;
|
|
3300
3194
|
}>;
|
|
3301
|
-
declare const
|
|
3302
|
-
declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
3195
|
+
declare const mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
3303
3196
|
keyGenId: z.ZodOptional<z.ZodString>;
|
|
3304
3197
|
keyGen: z.ZodOptional<z.ZodObject<{
|
|
3305
3198
|
pubkeyhex: z.ZodString;
|
|
@@ -3347,20 +3240,16 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
3347
3240
|
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3348
3241
|
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
3349
3242
|
} & {
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
stable: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
3353
|
-
amountAHuman: z.ZodOptional<z.ZodString>;
|
|
3354
|
-
amountBHuman: z.ZodOptional<z.ZodString>;
|
|
3243
|
+
pool: z.ZodString;
|
|
3244
|
+
lpAmountHuman: z.ZodString;
|
|
3355
3245
|
slippagePercent: z.ZodNumber;
|
|
3356
3246
|
}, "strip", z.ZodTypeAny, {
|
|
3357
3247
|
purposeText: string;
|
|
3358
3248
|
useCustomGas: boolean;
|
|
3359
3249
|
chainId: number;
|
|
3250
|
+
pool: string;
|
|
3360
3251
|
slippagePercent: number;
|
|
3361
|
-
|
|
3362
|
-
tokenB: string;
|
|
3363
|
-
stable: boolean;
|
|
3252
|
+
lpAmountHuman: string;
|
|
3364
3253
|
keyGen?: {
|
|
3365
3254
|
pubkeyhex: string;
|
|
3366
3255
|
keylist?: string[] | undefined;
|
|
@@ -3380,13 +3269,11 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
3380
3269
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3381
3270
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3382
3271
|
keyGenId?: string | undefined;
|
|
3383
|
-
amountAHuman?: string | undefined;
|
|
3384
|
-
amountBHuman?: string | undefined;
|
|
3385
3272
|
}, {
|
|
3386
3273
|
purposeText: string;
|
|
3274
|
+
pool: string;
|
|
3387
3275
|
slippagePercent: number;
|
|
3388
|
-
|
|
3389
|
-
tokenB: string;
|
|
3276
|
+
lpAmountHuman: string;
|
|
3390
3277
|
keyGen?: {
|
|
3391
3278
|
pubkeyhex: string;
|
|
3392
3279
|
keylist?: string[] | undefined;
|
|
@@ -3408,17 +3295,13 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
3408
3295
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3409
3296
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3410
3297
|
keyGenId?: string | undefined;
|
|
3411
|
-
stable?: unknown;
|
|
3412
|
-
amountAHuman?: string | undefined;
|
|
3413
|
-
amountBHuman?: string | undefined;
|
|
3414
3298
|
}>, {
|
|
3415
3299
|
purposeText: string;
|
|
3416
3300
|
useCustomGas: boolean;
|
|
3417
3301
|
chainId: number;
|
|
3302
|
+
pool: string;
|
|
3418
3303
|
slippagePercent: number;
|
|
3419
|
-
|
|
3420
|
-
tokenB: string;
|
|
3421
|
-
stable: boolean;
|
|
3304
|
+
lpAmountHuman: string;
|
|
3422
3305
|
keyGen?: {
|
|
3423
3306
|
pubkeyhex: string;
|
|
3424
3307
|
keylist?: string[] | undefined;
|
|
@@ -3438,13 +3321,11 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
3438
3321
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3439
3322
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3440
3323
|
keyGenId?: string | undefined;
|
|
3441
|
-
amountAHuman?: string | undefined;
|
|
3442
|
-
amountBHuman?: string | undefined;
|
|
3443
3324
|
}, {
|
|
3444
3325
|
purposeText: string;
|
|
3326
|
+
pool: string;
|
|
3445
3327
|
slippagePercent: number;
|
|
3446
|
-
|
|
3447
|
-
tokenB: string;
|
|
3328
|
+
lpAmountHuman: string;
|
|
3448
3329
|
keyGen?: {
|
|
3449
3330
|
pubkeyhex: string;
|
|
3450
3331
|
keylist?: string[] | undefined;
|
|
@@ -3466,26 +3347,28 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
3466
3347
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3467
3348
|
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3468
3349
|
keyGenId?: string | undefined;
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
tokenA: string;
|
|
3478
|
-
tokenB: string;
|
|
3479
|
-
stable: boolean;
|
|
3480
|
-
keyGen?: {
|
|
3350
|
+
}>;
|
|
3351
|
+
declare const mcpCurveDaoBuildGaugeDepositMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
3352
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
3353
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
3354
|
+
pubkeyhex: z.ZodString;
|
|
3355
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3356
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3357
|
+
}, "strip", z.ZodTypeAny, {
|
|
3481
3358
|
pubkeyhex: string;
|
|
3482
3359
|
keylist?: string[] | undefined;
|
|
3483
3360
|
ClientKeys?: Record<string, string> | undefined;
|
|
3484
|
-
}
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3361
|
+
}, {
|
|
3362
|
+
pubkeyhex: string;
|
|
3363
|
+
keylist?: string[] | undefined;
|
|
3364
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3365
|
+
}>>;
|
|
3366
|
+
purposeText: z.ZodString;
|
|
3367
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
3368
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3369
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3370
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
3371
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
3489
3372
|
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3490
3373
|
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3491
3374
|
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
@@ -3493,17 +3376,701 @@ declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.
|
|
|
3493
3376
|
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3494
3377
|
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3495
3378
|
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3496
|
-
}, z.ZodTypeAny,
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3379
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3380
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3381
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3382
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3383
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3384
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3385
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3386
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3387
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3388
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3389
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3390
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3391
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3392
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3393
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3394
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3395
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3396
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3397
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
3398
|
+
} & {
|
|
3399
|
+
pool: z.ZodString;
|
|
3400
|
+
lpAmountHuman: z.ZodString;
|
|
3401
|
+
withdraw: z.ZodOptional<z.ZodBoolean>;
|
|
3402
|
+
}, "strip", z.ZodTypeAny, {
|
|
3403
|
+
purposeText: string;
|
|
3404
|
+
useCustomGas: boolean;
|
|
3405
|
+
chainId: number;
|
|
3406
|
+
pool: string;
|
|
3407
|
+
lpAmountHuman: string;
|
|
3408
|
+
keyGen?: {
|
|
3409
|
+
pubkeyhex: string;
|
|
3410
|
+
keylist?: string[] | undefined;
|
|
3411
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3412
|
+
} | undefined;
|
|
3413
|
+
expiryDate?: number | undefined;
|
|
3414
|
+
rpcUrl?: string | undefined;
|
|
3415
|
+
executorAddress?: string | undefined;
|
|
3416
|
+
chainDetail?: z.objectOutputType<{
|
|
3417
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3418
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3419
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3420
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3421
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3422
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3423
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3424
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3425
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3426
|
+
withdraw?: boolean | undefined;
|
|
3427
|
+
keyGenId?: string | undefined;
|
|
3428
|
+
}, {
|
|
3429
|
+
purposeText: string;
|
|
3430
|
+
pool: string;
|
|
3431
|
+
lpAmountHuman: string;
|
|
3432
|
+
keyGen?: {
|
|
3433
|
+
pubkeyhex: string;
|
|
3434
|
+
keylist?: string[] | undefined;
|
|
3435
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3436
|
+
} | undefined;
|
|
3437
|
+
useCustomGas?: unknown;
|
|
3438
|
+
chainId?: unknown;
|
|
3439
|
+
expiryDate?: number | undefined;
|
|
3440
|
+
rpcUrl?: string | undefined;
|
|
3441
|
+
executorAddress?: string | undefined;
|
|
3442
|
+
chainDetail?: z.objectInputType<{
|
|
3443
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3444
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3445
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3446
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3447
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3448
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3449
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3450
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3451
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3452
|
+
withdraw?: boolean | undefined;
|
|
3453
|
+
keyGenId?: string | undefined;
|
|
3454
|
+
}>, {
|
|
3455
|
+
purposeText: string;
|
|
3456
|
+
useCustomGas: boolean;
|
|
3457
|
+
chainId: number;
|
|
3458
|
+
pool: string;
|
|
3459
|
+
lpAmountHuman: string;
|
|
3460
|
+
keyGen?: {
|
|
3461
|
+
pubkeyhex: string;
|
|
3462
|
+
keylist?: string[] | undefined;
|
|
3463
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3464
|
+
} | undefined;
|
|
3465
|
+
expiryDate?: number | undefined;
|
|
3466
|
+
rpcUrl?: string | undefined;
|
|
3467
|
+
executorAddress?: string | undefined;
|
|
3468
|
+
chainDetail?: z.objectOutputType<{
|
|
3469
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3470
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3471
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3472
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3473
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3474
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3475
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3476
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3477
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3478
|
+
withdraw?: boolean | undefined;
|
|
3479
|
+
keyGenId?: string | undefined;
|
|
3480
|
+
}, {
|
|
3481
|
+
purposeText: string;
|
|
3482
|
+
pool: string;
|
|
3483
|
+
lpAmountHuman: string;
|
|
3484
|
+
keyGen?: {
|
|
3485
|
+
pubkeyhex: string;
|
|
3486
|
+
keylist?: string[] | undefined;
|
|
3487
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3488
|
+
} | undefined;
|
|
3489
|
+
useCustomGas?: unknown;
|
|
3490
|
+
chainId?: unknown;
|
|
3491
|
+
expiryDate?: number | undefined;
|
|
3492
|
+
rpcUrl?: string | undefined;
|
|
3493
|
+
executorAddress?: string | undefined;
|
|
3494
|
+
chainDetail?: z.objectInputType<{
|
|
3495
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3496
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3497
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3498
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3499
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3500
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3501
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3502
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3503
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3504
|
+
withdraw?: boolean | undefined;
|
|
3505
|
+
keyGenId?: string | undefined;
|
|
3506
|
+
}>;
|
|
3507
|
+
type McpCurveDaoQuoteInput = z.infer<typeof mcpCurveDaoQuoteInputSchema>;
|
|
3508
|
+
type McpCurveDaoQuoteOutput = z.infer<typeof mcpCurveDaoQuoteOutputSchema>;
|
|
3509
|
+
type McpCurveDaoBuildSwapMultisignInput = z.infer<typeof mcpCurveDaoBuildSwapMultisignInputSchema>;
|
|
3510
|
+
|
|
3511
|
+
declare const mcpAerodromeDiscoverPoolsInputSchema: z.ZodObject<{
|
|
3512
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3513
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3514
|
+
token: z.ZodString;
|
|
3515
|
+
tokenOut: z.ZodOptional<z.ZodString>;
|
|
3516
|
+
}, "strip", z.ZodTypeAny, {
|
|
3517
|
+
token: string;
|
|
3518
|
+
chainId: number;
|
|
3519
|
+
tokenOut?: string | undefined;
|
|
3520
|
+
rpcUrl?: string | undefined;
|
|
3521
|
+
}, {
|
|
3522
|
+
token: string;
|
|
3523
|
+
chainId?: unknown;
|
|
3524
|
+
tokenOut?: string | undefined;
|
|
3525
|
+
rpcUrl?: string | undefined;
|
|
3526
|
+
}>;
|
|
3527
|
+
declare const mcpAerodromeDiscoverPoolsOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3528
|
+
declare const mcpAerodromeFetchPoolsInputSchema: z.ZodObject<{
|
|
3529
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3530
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3531
|
+
query: z.ZodOptional<z.ZodString>;
|
|
3532
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
3533
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
3534
|
+
}, "strip", z.ZodTypeAny, {
|
|
3535
|
+
chainId: number;
|
|
3536
|
+
rpcUrl?: string | undefined;
|
|
3537
|
+
limit?: number | undefined;
|
|
3538
|
+
query?: string | undefined;
|
|
3539
|
+
offset?: number | undefined;
|
|
3540
|
+
}, {
|
|
3541
|
+
chainId?: unknown;
|
|
3542
|
+
rpcUrl?: string | undefined;
|
|
3543
|
+
limit?: number | undefined;
|
|
3544
|
+
query?: string | undefined;
|
|
3545
|
+
offset?: number | undefined;
|
|
3546
|
+
}>;
|
|
3547
|
+
declare const mcpAerodromeFetchPoolsOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3548
|
+
declare const mcpAerodromeFetchLpYieldsInputSchema: z.ZodObject<{
|
|
3549
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3550
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3551
|
+
query: z.ZodOptional<z.ZodString>;
|
|
3552
|
+
}, "strip", z.ZodTypeAny, {
|
|
3553
|
+
chainId: number;
|
|
3554
|
+
rpcUrl?: string | undefined;
|
|
3555
|
+
query?: string | undefined;
|
|
3556
|
+
}, {
|
|
3557
|
+
chainId?: unknown;
|
|
3558
|
+
rpcUrl?: string | undefined;
|
|
3559
|
+
query?: string | undefined;
|
|
3560
|
+
}>;
|
|
3561
|
+
declare const mcpAerodromeFetchLpYieldsOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3562
|
+
declare const mcpAerodromeFetchStockLpYieldsInputSchema: z.ZodObject<{
|
|
3563
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3564
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3565
|
+
query: z.ZodOptional<z.ZodString>;
|
|
3566
|
+
}, "strip", z.ZodTypeAny, {
|
|
3567
|
+
chainId: number;
|
|
3568
|
+
rpcUrl?: string | undefined;
|
|
3569
|
+
query?: string | undefined;
|
|
3570
|
+
}, {
|
|
3571
|
+
chainId?: unknown;
|
|
3572
|
+
rpcUrl?: string | undefined;
|
|
3573
|
+
query?: string | undefined;
|
|
3574
|
+
}>;
|
|
3575
|
+
declare const mcpAerodromeFetchStockLpYieldsOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3576
|
+
declare const mcpAerodromeFetchPositionsInputSchema: z.ZodObject<{
|
|
3577
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3578
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3579
|
+
account: z.ZodOptional<z.ZodString>;
|
|
3580
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
3581
|
+
}, "strip", z.ZodTypeAny, {
|
|
3582
|
+
chainId: number;
|
|
3583
|
+
account?: string | undefined;
|
|
3584
|
+
rpcUrl?: string | undefined;
|
|
3585
|
+
executorAddress?: string | undefined;
|
|
3586
|
+
}, {
|
|
3587
|
+
account?: string | undefined;
|
|
3588
|
+
chainId?: unknown;
|
|
3589
|
+
rpcUrl?: string | undefined;
|
|
3590
|
+
executorAddress?: string | undefined;
|
|
3591
|
+
}>;
|
|
3592
|
+
declare const mcpAerodromeFetchPositionsOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3593
|
+
declare const mcpAerodromeQuoteInputSchema: z.ZodObject<{
|
|
3594
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3595
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3596
|
+
tokenIn: z.ZodString;
|
|
3597
|
+
tokenOut: z.ZodString;
|
|
3598
|
+
amountHuman: z.ZodString;
|
|
3599
|
+
tokenInDecimals: z.ZodOptional<z.ZodNumber>;
|
|
3600
|
+
}, "strip", z.ZodTypeAny, {
|
|
3601
|
+
chainId: number;
|
|
3602
|
+
tokenIn: string;
|
|
3603
|
+
tokenOut: string;
|
|
3604
|
+
amountHuman: string;
|
|
3605
|
+
tokenInDecimals?: number | undefined;
|
|
3606
|
+
rpcUrl?: string | undefined;
|
|
3607
|
+
}, {
|
|
3608
|
+
tokenIn: string;
|
|
3609
|
+
tokenOut: string;
|
|
3610
|
+
amountHuman: string;
|
|
3611
|
+
chainId?: unknown;
|
|
3612
|
+
tokenInDecimals?: number | undefined;
|
|
3613
|
+
rpcUrl?: string | undefined;
|
|
3614
|
+
}>;
|
|
3615
|
+
declare const mcpAerodromeQuoteOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3616
|
+
declare const mcpAerodromeBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
|
|
3617
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
3618
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
3619
|
+
pubkeyhex: z.ZodString;
|
|
3620
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3621
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3622
|
+
}, "strip", z.ZodTypeAny, {
|
|
3623
|
+
pubkeyhex: string;
|
|
3624
|
+
keylist?: string[] | undefined;
|
|
3625
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3626
|
+
}, {
|
|
3627
|
+
pubkeyhex: string;
|
|
3628
|
+
keylist?: string[] | undefined;
|
|
3629
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3630
|
+
}>>;
|
|
3631
|
+
purposeText: z.ZodString;
|
|
3632
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
3633
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3634
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3635
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
3636
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
3637
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3638
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3639
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3640
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3641
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3642
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3643
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3644
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3645
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3646
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3647
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3648
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3649
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3650
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3651
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3652
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3653
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3654
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3655
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3656
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3657
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3658
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3659
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3660
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3661
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3662
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
3663
|
+
} & {
|
|
3664
|
+
tokenIn: z.ZodString;
|
|
3665
|
+
tokenOut: z.ZodString;
|
|
3666
|
+
amountHuman: z.ZodString;
|
|
3667
|
+
slippagePercent: z.ZodNumber;
|
|
3668
|
+
quoteSnapshot: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3669
|
+
}, "strip", z.ZodTypeAny, {
|
|
3670
|
+
purposeText: string;
|
|
3671
|
+
useCustomGas: boolean;
|
|
3672
|
+
chainId: number;
|
|
3673
|
+
tokenIn: string;
|
|
3674
|
+
tokenOut: string;
|
|
3675
|
+
slippagePercent: number;
|
|
3676
|
+
amountHuman: string;
|
|
3677
|
+
keyGen?: {
|
|
3678
|
+
pubkeyhex: string;
|
|
3679
|
+
keylist?: string[] | undefined;
|
|
3680
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3681
|
+
} | undefined;
|
|
3682
|
+
expiryDate?: number | undefined;
|
|
3683
|
+
rpcUrl?: string | undefined;
|
|
3684
|
+
executorAddress?: string | undefined;
|
|
3685
|
+
chainDetail?: z.objectOutputType<{
|
|
3686
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3687
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3688
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3689
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3690
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3691
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3692
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3693
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3694
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3695
|
+
keyGenId?: string | undefined;
|
|
3696
|
+
quoteSnapshot?: Record<string, unknown> | undefined;
|
|
3697
|
+
}, {
|
|
3698
|
+
purposeText: string;
|
|
3699
|
+
tokenIn: string;
|
|
3700
|
+
tokenOut: string;
|
|
3701
|
+
slippagePercent: number;
|
|
3702
|
+
amountHuman: string;
|
|
3703
|
+
keyGen?: {
|
|
3704
|
+
pubkeyhex: string;
|
|
3705
|
+
keylist?: string[] | undefined;
|
|
3706
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3707
|
+
} | undefined;
|
|
3708
|
+
useCustomGas?: unknown;
|
|
3709
|
+
chainId?: unknown;
|
|
3710
|
+
expiryDate?: number | undefined;
|
|
3711
|
+
rpcUrl?: string | undefined;
|
|
3712
|
+
executorAddress?: string | undefined;
|
|
3713
|
+
chainDetail?: z.objectInputType<{
|
|
3714
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3715
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3716
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3717
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3718
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3719
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3720
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3721
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3722
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3723
|
+
keyGenId?: string | undefined;
|
|
3724
|
+
quoteSnapshot?: Record<string, unknown> | undefined;
|
|
3725
|
+
}>, {
|
|
3726
|
+
purposeText: string;
|
|
3727
|
+
useCustomGas: boolean;
|
|
3728
|
+
chainId: number;
|
|
3729
|
+
tokenIn: string;
|
|
3730
|
+
tokenOut: string;
|
|
3731
|
+
slippagePercent: number;
|
|
3732
|
+
amountHuman: string;
|
|
3733
|
+
keyGen?: {
|
|
3734
|
+
pubkeyhex: string;
|
|
3735
|
+
keylist?: string[] | undefined;
|
|
3736
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3737
|
+
} | undefined;
|
|
3738
|
+
expiryDate?: number | undefined;
|
|
3739
|
+
rpcUrl?: string | undefined;
|
|
3740
|
+
executorAddress?: string | undefined;
|
|
3741
|
+
chainDetail?: z.objectOutputType<{
|
|
3742
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3743
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3744
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3745
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3746
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3747
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3748
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3749
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3750
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3751
|
+
keyGenId?: string | undefined;
|
|
3752
|
+
quoteSnapshot?: Record<string, unknown> | undefined;
|
|
3753
|
+
}, {
|
|
3754
|
+
purposeText: string;
|
|
3755
|
+
tokenIn: string;
|
|
3756
|
+
tokenOut: string;
|
|
3757
|
+
slippagePercent: number;
|
|
3758
|
+
amountHuman: string;
|
|
3759
|
+
keyGen?: {
|
|
3760
|
+
pubkeyhex: string;
|
|
3761
|
+
keylist?: string[] | undefined;
|
|
3762
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3763
|
+
} | undefined;
|
|
3764
|
+
useCustomGas?: unknown;
|
|
3765
|
+
chainId?: unknown;
|
|
3766
|
+
expiryDate?: number | undefined;
|
|
3767
|
+
rpcUrl?: string | undefined;
|
|
3768
|
+
executorAddress?: string | undefined;
|
|
3769
|
+
chainDetail?: z.objectInputType<{
|
|
3770
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3771
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3772
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3773
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3774
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3775
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3776
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3777
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3778
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3779
|
+
keyGenId?: string | undefined;
|
|
3780
|
+
quoteSnapshot?: Record<string, unknown> | undefined;
|
|
3781
|
+
}>;
|
|
3782
|
+
declare const mcpAerodromeQuoteAddLiquidityInputSchema: z.ZodEffects<z.ZodObject<{
|
|
3783
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3784
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3785
|
+
tokenA: z.ZodString;
|
|
3786
|
+
tokenB: z.ZodString;
|
|
3787
|
+
stable: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
3788
|
+
amountAHuman: z.ZodOptional<z.ZodString>;
|
|
3789
|
+
amountBHuman: z.ZodOptional<z.ZodString>;
|
|
3790
|
+
tokenADecimals: z.ZodOptional<z.ZodNumber>;
|
|
3791
|
+
tokenBDecimals: z.ZodOptional<z.ZodNumber>;
|
|
3792
|
+
}, "strip", z.ZodTypeAny, {
|
|
3793
|
+
chainId: number;
|
|
3794
|
+
tokenA: string;
|
|
3795
|
+
tokenB: string;
|
|
3796
|
+
stable: boolean;
|
|
3797
|
+
rpcUrl?: string | undefined;
|
|
3798
|
+
amountAHuman?: string | undefined;
|
|
3799
|
+
amountBHuman?: string | undefined;
|
|
3800
|
+
tokenADecimals?: number | undefined;
|
|
3801
|
+
tokenBDecimals?: number | undefined;
|
|
3802
|
+
}, {
|
|
3803
|
+
tokenA: string;
|
|
3804
|
+
tokenB: string;
|
|
3805
|
+
chainId?: unknown;
|
|
3806
|
+
rpcUrl?: string | undefined;
|
|
3807
|
+
stable?: unknown;
|
|
3808
|
+
amountAHuman?: string | undefined;
|
|
3809
|
+
amountBHuman?: string | undefined;
|
|
3810
|
+
tokenADecimals?: number | undefined;
|
|
3811
|
+
tokenBDecimals?: number | undefined;
|
|
3812
|
+
}>, {
|
|
3813
|
+
chainId: number;
|
|
3814
|
+
tokenA: string;
|
|
3815
|
+
tokenB: string;
|
|
3816
|
+
stable: boolean;
|
|
3817
|
+
rpcUrl?: string | undefined;
|
|
3818
|
+
amountAHuman?: string | undefined;
|
|
3819
|
+
amountBHuman?: string | undefined;
|
|
3820
|
+
tokenADecimals?: number | undefined;
|
|
3821
|
+
tokenBDecimals?: number | undefined;
|
|
3822
|
+
}, {
|
|
3823
|
+
tokenA: string;
|
|
3824
|
+
tokenB: string;
|
|
3825
|
+
chainId?: unknown;
|
|
3826
|
+
rpcUrl?: string | undefined;
|
|
3827
|
+
stable?: unknown;
|
|
3828
|
+
amountAHuman?: string | undefined;
|
|
3829
|
+
amountBHuman?: string | undefined;
|
|
3830
|
+
tokenADecimals?: number | undefined;
|
|
3831
|
+
tokenBDecimals?: number | undefined;
|
|
3832
|
+
}>;
|
|
3833
|
+
declare const mcpAerodromeQuoteAddLiquidityOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3834
|
+
declare const mcpAerodromeQuoteClDepositInputSchema: z.ZodObject<{
|
|
3835
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3836
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3837
|
+
token0: z.ZodString;
|
|
3838
|
+
token1: z.ZodString;
|
|
3839
|
+
amount0Human: z.ZodOptional<z.ZodString>;
|
|
3840
|
+
amount1Human: z.ZodOptional<z.ZodString>;
|
|
3841
|
+
tickSpacing: z.ZodNumber;
|
|
3842
|
+
tickLower: z.ZodNumber;
|
|
3843
|
+
tickUpper: z.ZodNumber;
|
|
3844
|
+
sqrtPriceX96: z.ZodString;
|
|
3845
|
+
}, "strip", z.ZodTypeAny, {
|
|
3846
|
+
chainId: number;
|
|
3847
|
+
tickSpacing: number;
|
|
3848
|
+
token0: string;
|
|
3849
|
+
token1: string;
|
|
3850
|
+
tickLower: number;
|
|
3851
|
+
tickUpper: number;
|
|
3852
|
+
sqrtPriceX96: string;
|
|
3853
|
+
rpcUrl?: string | undefined;
|
|
3854
|
+
amount0Human?: string | undefined;
|
|
3855
|
+
amount1Human?: string | undefined;
|
|
3856
|
+
}, {
|
|
3857
|
+
tickSpacing: number;
|
|
3858
|
+
token0: string;
|
|
3859
|
+
token1: string;
|
|
3860
|
+
tickLower: number;
|
|
3861
|
+
tickUpper: number;
|
|
3862
|
+
sqrtPriceX96: string;
|
|
3863
|
+
chainId?: unknown;
|
|
3864
|
+
rpcUrl?: string | undefined;
|
|
3865
|
+
amount0Human?: string | undefined;
|
|
3866
|
+
amount1Human?: string | undefined;
|
|
3867
|
+
}>;
|
|
3868
|
+
declare const mcpAerodromeQuoteClDepositOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3869
|
+
declare const mcpAerodromeBuildAddLiquidityMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
3870
|
+
keyGenId: z.ZodOptional<z.ZodString>;
|
|
3871
|
+
keyGen: z.ZodOptional<z.ZodObject<{
|
|
3872
|
+
pubkeyhex: z.ZodString;
|
|
3873
|
+
keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3874
|
+
ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3875
|
+
}, "strip", z.ZodTypeAny, {
|
|
3876
|
+
pubkeyhex: string;
|
|
3877
|
+
keylist?: string[] | undefined;
|
|
3878
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3879
|
+
}, {
|
|
3880
|
+
pubkeyhex: string;
|
|
3881
|
+
keylist?: string[] | undefined;
|
|
3882
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3883
|
+
}>>;
|
|
3884
|
+
purposeText: z.ZodString;
|
|
3885
|
+
useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
3886
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
3887
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
3888
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
3889
|
+
chainDetail: z.ZodOptional<z.ZodObject<{
|
|
3890
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3891
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3892
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3893
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3894
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3895
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3896
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3897
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3898
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3899
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3900
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3901
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3902
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3903
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3904
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3905
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3906
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3907
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3908
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3909
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3910
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3911
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3912
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3913
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
3914
|
+
customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3915
|
+
expiryDate: z.ZodOptional<z.ZodNumber>;
|
|
3916
|
+
} & {
|
|
3917
|
+
tokenA: z.ZodString;
|
|
3918
|
+
tokenB: z.ZodString;
|
|
3919
|
+
stable: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
|
|
3920
|
+
amountAHuman: z.ZodOptional<z.ZodString>;
|
|
3921
|
+
amountBHuman: z.ZodOptional<z.ZodString>;
|
|
3922
|
+
slippagePercent: z.ZodNumber;
|
|
3923
|
+
}, "strip", z.ZodTypeAny, {
|
|
3924
|
+
purposeText: string;
|
|
3925
|
+
useCustomGas: boolean;
|
|
3926
|
+
chainId: number;
|
|
3927
|
+
slippagePercent: number;
|
|
3928
|
+
tokenA: string;
|
|
3929
|
+
tokenB: string;
|
|
3930
|
+
stable: boolean;
|
|
3931
|
+
keyGen?: {
|
|
3932
|
+
pubkeyhex: string;
|
|
3933
|
+
keylist?: string[] | undefined;
|
|
3934
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3935
|
+
} | undefined;
|
|
3936
|
+
expiryDate?: number | undefined;
|
|
3937
|
+
rpcUrl?: string | undefined;
|
|
3938
|
+
executorAddress?: string | undefined;
|
|
3939
|
+
chainDetail?: z.objectOutputType<{
|
|
3940
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3941
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3942
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3943
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3944
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3945
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3946
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3947
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3948
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3949
|
+
keyGenId?: string | undefined;
|
|
3950
|
+
amountAHuman?: string | undefined;
|
|
3951
|
+
amountBHuman?: string | undefined;
|
|
3952
|
+
}, {
|
|
3953
|
+
purposeText: string;
|
|
3954
|
+
slippagePercent: number;
|
|
3955
|
+
tokenA: string;
|
|
3956
|
+
tokenB: string;
|
|
3957
|
+
keyGen?: {
|
|
3958
|
+
pubkeyhex: string;
|
|
3959
|
+
keylist?: string[] | undefined;
|
|
3960
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3961
|
+
} | undefined;
|
|
3962
|
+
useCustomGas?: unknown;
|
|
3963
|
+
chainId?: unknown;
|
|
3964
|
+
expiryDate?: number | undefined;
|
|
3965
|
+
rpcUrl?: string | undefined;
|
|
3966
|
+
executorAddress?: string | undefined;
|
|
3967
|
+
chainDetail?: z.objectInputType<{
|
|
3968
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3969
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3970
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3971
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3972
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3973
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3974
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
3975
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3976
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
3977
|
+
keyGenId?: string | undefined;
|
|
3978
|
+
stable?: unknown;
|
|
3979
|
+
amountAHuman?: string | undefined;
|
|
3980
|
+
amountBHuman?: string | undefined;
|
|
3981
|
+
}>, {
|
|
3982
|
+
purposeText: string;
|
|
3983
|
+
useCustomGas: boolean;
|
|
3984
|
+
chainId: number;
|
|
3985
|
+
slippagePercent: number;
|
|
3986
|
+
tokenA: string;
|
|
3987
|
+
tokenB: string;
|
|
3988
|
+
stable: boolean;
|
|
3989
|
+
keyGen?: {
|
|
3990
|
+
pubkeyhex: string;
|
|
3991
|
+
keylist?: string[] | undefined;
|
|
3992
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
3993
|
+
} | undefined;
|
|
3994
|
+
expiryDate?: number | undefined;
|
|
3995
|
+
rpcUrl?: string | undefined;
|
|
3996
|
+
executorAddress?: string | undefined;
|
|
3997
|
+
chainDetail?: z.objectOutputType<{
|
|
3998
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
3999
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4000
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4001
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4002
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4003
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4004
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4005
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4006
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4007
|
+
keyGenId?: string | undefined;
|
|
4008
|
+
amountAHuman?: string | undefined;
|
|
4009
|
+
amountBHuman?: string | undefined;
|
|
4010
|
+
}, {
|
|
4011
|
+
purposeText: string;
|
|
4012
|
+
slippagePercent: number;
|
|
4013
|
+
tokenA: string;
|
|
4014
|
+
tokenB: string;
|
|
4015
|
+
keyGen?: {
|
|
4016
|
+
pubkeyhex: string;
|
|
4017
|
+
keylist?: string[] | undefined;
|
|
4018
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4019
|
+
} | undefined;
|
|
4020
|
+
useCustomGas?: unknown;
|
|
4021
|
+
chainId?: unknown;
|
|
4022
|
+
expiryDate?: number | undefined;
|
|
4023
|
+
rpcUrl?: string | undefined;
|
|
4024
|
+
executorAddress?: string | undefined;
|
|
4025
|
+
chainDetail?: z.objectInputType<{
|
|
4026
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4027
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4028
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4029
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4030
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4031
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4032
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4033
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4034
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4035
|
+
keyGenId?: string | undefined;
|
|
4036
|
+
stable?: unknown;
|
|
4037
|
+
amountAHuman?: string | undefined;
|
|
4038
|
+
amountBHuman?: string | undefined;
|
|
4039
|
+
}>, {
|
|
4040
|
+
purposeText: string;
|
|
4041
|
+
useCustomGas: boolean;
|
|
4042
|
+
chainId: number;
|
|
4043
|
+
slippagePercent: number;
|
|
4044
|
+
tokenA: string;
|
|
4045
|
+
tokenB: string;
|
|
4046
|
+
stable: boolean;
|
|
4047
|
+
keyGen?: {
|
|
4048
|
+
pubkeyhex: string;
|
|
4049
|
+
keylist?: string[] | undefined;
|
|
4050
|
+
ClientKeys?: Record<string, string> | undefined;
|
|
4051
|
+
} | undefined;
|
|
4052
|
+
expiryDate?: number | undefined;
|
|
4053
|
+
rpcUrl?: string | undefined;
|
|
4054
|
+
executorAddress?: string | undefined;
|
|
4055
|
+
chainDetail?: z.objectOutputType<{
|
|
4056
|
+
legacy: z.ZodOptional<z.ZodBoolean>;
|
|
4057
|
+
gasLimit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4058
|
+
gasMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4059
|
+
gasPrice: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4060
|
+
baseFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4061
|
+
priorityFee: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4062
|
+
baseFeeMultiplier: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
4063
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4064
|
+
customGasChainDetails?: Record<string, unknown> | undefined;
|
|
4065
|
+
keyGenId?: string | undefined;
|
|
4066
|
+
amountAHuman?: string | undefined;
|
|
4067
|
+
amountBHuman?: string | undefined;
|
|
4068
|
+
}, {
|
|
4069
|
+
purposeText: string;
|
|
4070
|
+
slippagePercent: number;
|
|
4071
|
+
tokenA: string;
|
|
4072
|
+
tokenB: string;
|
|
4073
|
+
keyGen?: {
|
|
3507
4074
|
pubkeyhex: string;
|
|
3508
4075
|
keylist?: string[] | undefined;
|
|
3509
4076
|
ClientKeys?: Record<string, string> | undefined;
|
|
@@ -9130,13 +9697,23 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
|
|
|
9130
9697
|
allocatedUsdLabel: string;
|
|
9131
9698
|
allocationPercentLabel: string;
|
|
9132
9699
|
}>, "many">;
|
|
9700
|
+
rewards: z.ZodArray<z.ZodObject<{
|
|
9701
|
+
symbol: z.ZodString;
|
|
9702
|
+
supplyAprLabel: z.ZodString;
|
|
9703
|
+
}, "strip", z.ZodTypeAny, {
|
|
9704
|
+
symbol: string;
|
|
9705
|
+
supplyAprLabel: string;
|
|
9706
|
+
}, {
|
|
9707
|
+
symbol: string;
|
|
9708
|
+
supplyAprLabel: string;
|
|
9709
|
+
}>, "many">;
|
|
9133
9710
|
}, "strip", z.ZodTypeAny, {
|
|
9711
|
+
apy: string;
|
|
9134
9712
|
vaultName: string;
|
|
9135
9713
|
underlyingAddress: string;
|
|
9136
9714
|
vaultAddress: string;
|
|
9137
9715
|
vaultSymbol: string;
|
|
9138
9716
|
underlyingSymbol: string;
|
|
9139
|
-
apy: string;
|
|
9140
9717
|
netApy: string;
|
|
9141
9718
|
netApy7d: string;
|
|
9142
9719
|
netApy30d: string;
|
|
@@ -9150,13 +9727,17 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
|
|
|
9150
9727
|
allocatedUsdLabel: string;
|
|
9151
9728
|
allocationPercentLabel: string;
|
|
9152
9729
|
}[];
|
|
9730
|
+
rewards: {
|
|
9731
|
+
symbol: string;
|
|
9732
|
+
supplyAprLabel: string;
|
|
9733
|
+
}[];
|
|
9153
9734
|
}, {
|
|
9735
|
+
apy: string;
|
|
9154
9736
|
vaultName: string;
|
|
9155
9737
|
underlyingAddress: string;
|
|
9156
9738
|
vaultAddress: string;
|
|
9157
9739
|
vaultSymbol: string;
|
|
9158
9740
|
underlyingSymbol: string;
|
|
9159
|
-
apy: string;
|
|
9160
9741
|
netApy: string;
|
|
9161
9742
|
netApy7d: string;
|
|
9162
9743
|
netApy30d: string;
|
|
@@ -9170,15 +9751,19 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
|
|
|
9170
9751
|
allocatedUsdLabel: string;
|
|
9171
9752
|
allocationPercentLabel: string;
|
|
9172
9753
|
}[];
|
|
9754
|
+
rewards: {
|
|
9755
|
+
symbol: string;
|
|
9756
|
+
supplyAprLabel: string;
|
|
9757
|
+
}[];
|
|
9173
9758
|
}>, "many">;
|
|
9174
9759
|
}, "strip", z.ZodTypeAny, {
|
|
9175
9760
|
vaults: {
|
|
9761
|
+
apy: string;
|
|
9176
9762
|
vaultName: string;
|
|
9177
9763
|
underlyingAddress: string;
|
|
9178
9764
|
vaultAddress: string;
|
|
9179
9765
|
vaultSymbol: string;
|
|
9180
9766
|
underlyingSymbol: string;
|
|
9181
|
-
apy: string;
|
|
9182
9767
|
netApy: string;
|
|
9183
9768
|
netApy7d: string;
|
|
9184
9769
|
netApy30d: string;
|
|
@@ -9192,15 +9777,19 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
|
|
|
9192
9777
|
allocatedUsdLabel: string;
|
|
9193
9778
|
allocationPercentLabel: string;
|
|
9194
9779
|
}[];
|
|
9780
|
+
rewards: {
|
|
9781
|
+
symbol: string;
|
|
9782
|
+
supplyAprLabel: string;
|
|
9783
|
+
}[];
|
|
9195
9784
|
}[];
|
|
9196
9785
|
}, {
|
|
9197
9786
|
vaults: {
|
|
9787
|
+
apy: string;
|
|
9198
9788
|
vaultName: string;
|
|
9199
9789
|
underlyingAddress: string;
|
|
9200
9790
|
vaultAddress: string;
|
|
9201
9791
|
vaultSymbol: string;
|
|
9202
9792
|
underlyingSymbol: string;
|
|
9203
|
-
apy: string;
|
|
9204
9793
|
netApy: string;
|
|
9205
9794
|
netApy7d: string;
|
|
9206
9795
|
netApy30d: string;
|
|
@@ -9214,6 +9803,10 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
|
|
|
9214
9803
|
allocatedUsdLabel: string;
|
|
9215
9804
|
allocationPercentLabel: string;
|
|
9216
9805
|
}[];
|
|
9806
|
+
rewards: {
|
|
9807
|
+
symbol: string;
|
|
9808
|
+
supplyAprLabel: string;
|
|
9809
|
+
}[];
|
|
9217
9810
|
}[];
|
|
9218
9811
|
}>;
|
|
9219
9812
|
type McpMorphoFetchEarnVaultsInput = z.infer<typeof mcpMorphoFetchEarnVaultsInputSchema>;
|
|
@@ -9250,11 +9843,26 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
9250
9843
|
loanTokenDecimals: z.ZodNumber;
|
|
9251
9844
|
borrowApyLabel: z.ZodString;
|
|
9252
9845
|
supplyApyLabel: z.ZodString;
|
|
9846
|
+
netSupplyApyLabel: z.ZodString;
|
|
9847
|
+
rewards: z.ZodArray<z.ZodObject<{
|
|
9848
|
+
symbol: z.ZodString;
|
|
9849
|
+
supplyAprLabel: z.ZodString;
|
|
9850
|
+
}, "strip", z.ZodTypeAny, {
|
|
9851
|
+
symbol: string;
|
|
9852
|
+
supplyAprLabel: string;
|
|
9853
|
+
}, {
|
|
9854
|
+
symbol: string;
|
|
9855
|
+
supplyAprLabel: string;
|
|
9856
|
+
}>, "many">;
|
|
9253
9857
|
}, "strip", z.ZodTypeAny, {
|
|
9254
9858
|
collateralTokenAddress: string;
|
|
9255
9859
|
marketId: string;
|
|
9256
9860
|
marketLabel: string;
|
|
9257
9861
|
loanTokenAddress: string;
|
|
9862
|
+
rewards: {
|
|
9863
|
+
symbol: string;
|
|
9864
|
+
supplyAprLabel: string;
|
|
9865
|
+
}[];
|
|
9258
9866
|
morphoBlueAddress: string;
|
|
9259
9867
|
collateralTokenSymbol: string;
|
|
9260
9868
|
collateralTokenDecimals: number;
|
|
@@ -9262,11 +9870,16 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
9262
9870
|
loanTokenDecimals: number;
|
|
9263
9871
|
borrowApyLabel: string;
|
|
9264
9872
|
supplyApyLabel: string;
|
|
9873
|
+
netSupplyApyLabel: string;
|
|
9265
9874
|
}, {
|
|
9266
9875
|
collateralTokenAddress: string;
|
|
9267
9876
|
marketId: string;
|
|
9268
9877
|
marketLabel: string;
|
|
9269
9878
|
loanTokenAddress: string;
|
|
9879
|
+
rewards: {
|
|
9880
|
+
symbol: string;
|
|
9881
|
+
supplyAprLabel: string;
|
|
9882
|
+
}[];
|
|
9270
9883
|
morphoBlueAddress: string;
|
|
9271
9884
|
collateralTokenSymbol: string;
|
|
9272
9885
|
collateralTokenDecimals: number;
|
|
@@ -9274,6 +9887,7 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
9274
9887
|
loanTokenDecimals: number;
|
|
9275
9888
|
borrowApyLabel: string;
|
|
9276
9889
|
supplyApyLabel: string;
|
|
9890
|
+
netSupplyApyLabel: string;
|
|
9277
9891
|
}>, "many">;
|
|
9278
9892
|
}, "strip", z.ZodTypeAny, {
|
|
9279
9893
|
markets: {
|
|
@@ -9281,6 +9895,10 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
9281
9895
|
marketId: string;
|
|
9282
9896
|
marketLabel: string;
|
|
9283
9897
|
loanTokenAddress: string;
|
|
9898
|
+
rewards: {
|
|
9899
|
+
symbol: string;
|
|
9900
|
+
supplyAprLabel: string;
|
|
9901
|
+
}[];
|
|
9284
9902
|
morphoBlueAddress: string;
|
|
9285
9903
|
collateralTokenSymbol: string;
|
|
9286
9904
|
collateralTokenDecimals: number;
|
|
@@ -9288,6 +9906,7 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
9288
9906
|
loanTokenDecimals: number;
|
|
9289
9907
|
borrowApyLabel: string;
|
|
9290
9908
|
supplyApyLabel: string;
|
|
9909
|
+
netSupplyApyLabel: string;
|
|
9291
9910
|
}[];
|
|
9292
9911
|
}, {
|
|
9293
9912
|
markets: {
|
|
@@ -9295,6 +9914,10 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
9295
9914
|
marketId: string;
|
|
9296
9915
|
marketLabel: string;
|
|
9297
9916
|
loanTokenAddress: string;
|
|
9917
|
+
rewards: {
|
|
9918
|
+
symbol: string;
|
|
9919
|
+
supplyAprLabel: string;
|
|
9920
|
+
}[];
|
|
9298
9921
|
morphoBlueAddress: string;
|
|
9299
9922
|
collateralTokenSymbol: string;
|
|
9300
9923
|
collateralTokenDecimals: number;
|
|
@@ -9302,6 +9925,7 @@ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
|
|
|
9302
9925
|
loanTokenDecimals: number;
|
|
9303
9926
|
borrowApyLabel: string;
|
|
9304
9927
|
supplyApyLabel: string;
|
|
9928
|
+
netSupplyApyLabel: string;
|
|
9305
9929
|
}[];
|
|
9306
9930
|
}>;
|
|
9307
9931
|
type McpMorphoFetchBlueMarketsInput = z.infer<typeof mcpMorphoFetchBlueMarketsInputSchema>;
|
|
@@ -9709,8 +10333,419 @@ declare const mcpMorphoFetchMidnightOffersOutputSchema: z.ZodObject<{
|
|
|
9709
10333
|
expiryIso: string;
|
|
9710
10334
|
}[];
|
|
9711
10335
|
}>;
|
|
9712
|
-
type McpMorphoFetchMidnightOffersInput = z.infer<typeof mcpMorphoFetchMidnightOffersInputSchema>;
|
|
9713
|
-
type McpMorphoFetchMidnightOffersOutput = z.infer<typeof mcpMorphoFetchMidnightOffersOutputSchema>;
|
|
10336
|
+
type McpMorphoFetchMidnightOffersInput = z.infer<typeof mcpMorphoFetchMidnightOffersInputSchema>;
|
|
10337
|
+
type McpMorphoFetchMidnightOffersOutput = z.infer<typeof mcpMorphoFetchMidnightOffersOutputSchema>;
|
|
10338
|
+
|
|
10339
|
+
declare const mcpMapleFetchMarketsInputSchema: z.ZodObject<{
|
|
10340
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
10341
|
+
underlying: z.ZodOptional<z.ZodString>;
|
|
10342
|
+
}, "strip", z.ZodTypeAny, {
|
|
10343
|
+
chainId: number;
|
|
10344
|
+
underlying?: string | undefined;
|
|
10345
|
+
}, {
|
|
10346
|
+
chainId?: unknown;
|
|
10347
|
+
underlying?: string | undefined;
|
|
10348
|
+
}>;
|
|
10349
|
+
declare const mcpMapleFetchMarketsOutputSchema: z.ZodObject<{
|
|
10350
|
+
chainId: z.ZodNumber;
|
|
10351
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
10352
|
+
chainId: z.ZodNumber;
|
|
10353
|
+
name: z.ZodString;
|
|
10354
|
+
pool: z.ZodString;
|
|
10355
|
+
syrupRouter: z.ZodString;
|
|
10356
|
+
asset: z.ZodString;
|
|
10357
|
+
assetSymbol: z.ZodString;
|
|
10358
|
+
assetDecimals: z.ZodNumber;
|
|
10359
|
+
weeklyApyPercent: z.ZodString;
|
|
10360
|
+
monthlyApyPercent: z.ZodString;
|
|
10361
|
+
totalAssets: z.ZodString;
|
|
10362
|
+
}, "strip", z.ZodTypeAny, {
|
|
10363
|
+
name: string;
|
|
10364
|
+
chainId: number;
|
|
10365
|
+
pool: string;
|
|
10366
|
+
syrupRouter: string;
|
|
10367
|
+
asset: string;
|
|
10368
|
+
assetSymbol: string;
|
|
10369
|
+
assetDecimals: number;
|
|
10370
|
+
weeklyApyPercent: string;
|
|
10371
|
+
monthlyApyPercent: string;
|
|
10372
|
+
totalAssets: string;
|
|
10373
|
+
}, {
|
|
10374
|
+
name: string;
|
|
10375
|
+
chainId: number;
|
|
10376
|
+
pool: string;
|
|
10377
|
+
syrupRouter: string;
|
|
10378
|
+
asset: string;
|
|
10379
|
+
assetSymbol: string;
|
|
10380
|
+
assetDecimals: number;
|
|
10381
|
+
weeklyApyPercent: string;
|
|
10382
|
+
monthlyApyPercent: string;
|
|
10383
|
+
totalAssets: string;
|
|
10384
|
+
}>, "many">;
|
|
10385
|
+
notes: z.ZodString;
|
|
10386
|
+
}, "strip", z.ZodTypeAny, {
|
|
10387
|
+
chainId: number;
|
|
10388
|
+
notes: string;
|
|
10389
|
+
markets: {
|
|
10390
|
+
name: string;
|
|
10391
|
+
chainId: number;
|
|
10392
|
+
pool: string;
|
|
10393
|
+
syrupRouter: string;
|
|
10394
|
+
asset: string;
|
|
10395
|
+
assetSymbol: string;
|
|
10396
|
+
assetDecimals: number;
|
|
10397
|
+
weeklyApyPercent: string;
|
|
10398
|
+
monthlyApyPercent: string;
|
|
10399
|
+
totalAssets: string;
|
|
10400
|
+
}[];
|
|
10401
|
+
}, {
|
|
10402
|
+
chainId: number;
|
|
10403
|
+
notes: string;
|
|
10404
|
+
markets: {
|
|
10405
|
+
name: string;
|
|
10406
|
+
chainId: number;
|
|
10407
|
+
pool: string;
|
|
10408
|
+
syrupRouter: string;
|
|
10409
|
+
asset: string;
|
|
10410
|
+
assetSymbol: string;
|
|
10411
|
+
assetDecimals: number;
|
|
10412
|
+
weeklyApyPercent: string;
|
|
10413
|
+
monthlyApyPercent: string;
|
|
10414
|
+
totalAssets: string;
|
|
10415
|
+
}[];
|
|
10416
|
+
}>;
|
|
10417
|
+
declare const mcpMapleFetchMarketInputSchema: z.ZodObject<{
|
|
10418
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
10419
|
+
pool: z.ZodOptional<z.ZodString>;
|
|
10420
|
+
underlying: z.ZodOptional<z.ZodString>;
|
|
10421
|
+
}, "strip", z.ZodTypeAny, {
|
|
10422
|
+
chainId: number;
|
|
10423
|
+
pool?: string | undefined;
|
|
10424
|
+
underlying?: string | undefined;
|
|
10425
|
+
}, {
|
|
10426
|
+
chainId?: unknown;
|
|
10427
|
+
pool?: string | undefined;
|
|
10428
|
+
underlying?: string | undefined;
|
|
10429
|
+
}>;
|
|
10430
|
+
declare const mcpMapleFetchMarketOutputSchema: z.ZodObject<{
|
|
10431
|
+
chainId: z.ZodNumber;
|
|
10432
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
10433
|
+
chainId: z.ZodNumber;
|
|
10434
|
+
name: z.ZodString;
|
|
10435
|
+
pool: z.ZodString;
|
|
10436
|
+
syrupRouter: z.ZodString;
|
|
10437
|
+
asset: z.ZodString;
|
|
10438
|
+
assetSymbol: z.ZodString;
|
|
10439
|
+
assetDecimals: z.ZodNumber;
|
|
10440
|
+
weeklyApyPercent: z.ZodString;
|
|
10441
|
+
monthlyApyPercent: z.ZodString;
|
|
10442
|
+
totalAssets: z.ZodString;
|
|
10443
|
+
}, "strip", z.ZodTypeAny, {
|
|
10444
|
+
name: string;
|
|
10445
|
+
chainId: number;
|
|
10446
|
+
pool: string;
|
|
10447
|
+
syrupRouter: string;
|
|
10448
|
+
asset: string;
|
|
10449
|
+
assetSymbol: string;
|
|
10450
|
+
assetDecimals: number;
|
|
10451
|
+
weeklyApyPercent: string;
|
|
10452
|
+
monthlyApyPercent: string;
|
|
10453
|
+
totalAssets: string;
|
|
10454
|
+
}, {
|
|
10455
|
+
name: string;
|
|
10456
|
+
chainId: number;
|
|
10457
|
+
pool: string;
|
|
10458
|
+
syrupRouter: string;
|
|
10459
|
+
asset: string;
|
|
10460
|
+
assetSymbol: string;
|
|
10461
|
+
assetDecimals: number;
|
|
10462
|
+
weeklyApyPercent: string;
|
|
10463
|
+
monthlyApyPercent: string;
|
|
10464
|
+
totalAssets: string;
|
|
10465
|
+
}>, "many">;
|
|
10466
|
+
notes: z.ZodString;
|
|
10467
|
+
}, "strip", z.ZodTypeAny, {
|
|
10468
|
+
chainId: number;
|
|
10469
|
+
notes: string;
|
|
10470
|
+
markets: {
|
|
10471
|
+
name: string;
|
|
10472
|
+
chainId: number;
|
|
10473
|
+
pool: string;
|
|
10474
|
+
syrupRouter: string;
|
|
10475
|
+
asset: string;
|
|
10476
|
+
assetSymbol: string;
|
|
10477
|
+
assetDecimals: number;
|
|
10478
|
+
weeklyApyPercent: string;
|
|
10479
|
+
monthlyApyPercent: string;
|
|
10480
|
+
totalAssets: string;
|
|
10481
|
+
}[];
|
|
10482
|
+
}, {
|
|
10483
|
+
chainId: number;
|
|
10484
|
+
notes: string;
|
|
10485
|
+
markets: {
|
|
10486
|
+
name: string;
|
|
10487
|
+
chainId: number;
|
|
10488
|
+
pool: string;
|
|
10489
|
+
syrupRouter: string;
|
|
10490
|
+
asset: string;
|
|
10491
|
+
assetSymbol: string;
|
|
10492
|
+
assetDecimals: number;
|
|
10493
|
+
weeklyApyPercent: string;
|
|
10494
|
+
monthlyApyPercent: string;
|
|
10495
|
+
totalAssets: string;
|
|
10496
|
+
}[];
|
|
10497
|
+
}>;
|
|
10498
|
+
type McpMapleFetchMarketsInput = z.infer<typeof mcpMapleFetchMarketsInputSchema>;
|
|
10499
|
+
type McpMapleFetchMarketsOutput = z.infer<typeof mcpMapleFetchMarketsOutputSchema>;
|
|
10500
|
+
type McpMapleFetchMarketInput = z.infer<typeof mcpMapleFetchMarketInputSchema>;
|
|
10501
|
+
type McpMapleFetchMarketOutput = z.infer<typeof mcpMapleFetchMarketOutputSchema>;
|
|
10502
|
+
|
|
10503
|
+
declare const mcpAaveV4FetchMarketsInputSchema: z.ZodObject<{
|
|
10504
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
10505
|
+
marketId: z.ZodOptional<z.ZodEnum<["main", "core", "bluechip"]>>;
|
|
10506
|
+
underlying: z.ZodOptional<z.ZodString>;
|
|
10507
|
+
}, "strip", z.ZodTypeAny, {
|
|
10508
|
+
chainId: number;
|
|
10509
|
+
marketId?: "main" | "core" | "bluechip" | undefined;
|
|
10510
|
+
underlying?: string | undefined;
|
|
10511
|
+
}, {
|
|
10512
|
+
chainId?: unknown;
|
|
10513
|
+
marketId?: "main" | "core" | "bluechip" | undefined;
|
|
10514
|
+
underlying?: string | undefined;
|
|
10515
|
+
}>;
|
|
10516
|
+
declare const mcpAaveV4FetchMarketsOutputSchema: z.ZodObject<{
|
|
10517
|
+
chainId: z.ZodNumber;
|
|
10518
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
10519
|
+
chainId: z.ZodNumber;
|
|
10520
|
+
hubName: z.ZodString;
|
|
10521
|
+
marketId: z.ZodEnum<["main", "core", "bluechip"]>;
|
|
10522
|
+
hubAddress: z.ZodString;
|
|
10523
|
+
symbol: z.ZodString;
|
|
10524
|
+
name: z.ZodString;
|
|
10525
|
+
underlying: z.ZodString;
|
|
10526
|
+
spoke: z.ZodNullable<z.ZodString>;
|
|
10527
|
+
canSupply: z.ZodBoolean;
|
|
10528
|
+
canBorrow: z.ZodBoolean;
|
|
10529
|
+
canUseAsCollateral: z.ZodBoolean;
|
|
10530
|
+
supplyApyPercent: z.ZodString;
|
|
10531
|
+
borrowApyPercent: z.ZodString;
|
|
10532
|
+
supplied: z.ZodString;
|
|
10533
|
+
borrowed: z.ZodString;
|
|
10534
|
+
availableLiquidity: z.ZodString;
|
|
10535
|
+
utilizationPercent: z.ZodNullable<z.ZodString>;
|
|
10536
|
+
collateralFactorPercent: z.ZodString;
|
|
10537
|
+
}, "strip", z.ZodTypeAny, {
|
|
10538
|
+
symbol: string;
|
|
10539
|
+
name: string;
|
|
10540
|
+
chainId: number;
|
|
10541
|
+
marketId: "main" | "core" | "bluechip";
|
|
10542
|
+
underlying: string;
|
|
10543
|
+
spoke: string | null;
|
|
10544
|
+
hubName: string;
|
|
10545
|
+
hubAddress: string;
|
|
10546
|
+
canSupply: boolean;
|
|
10547
|
+
canBorrow: boolean;
|
|
10548
|
+
canUseAsCollateral: boolean;
|
|
10549
|
+
supplyApyPercent: string;
|
|
10550
|
+
borrowApyPercent: string;
|
|
10551
|
+
supplied: string;
|
|
10552
|
+
borrowed: string;
|
|
10553
|
+
availableLiquidity: string;
|
|
10554
|
+
utilizationPercent: string | null;
|
|
10555
|
+
collateralFactorPercent: string;
|
|
10556
|
+
}, {
|
|
10557
|
+
symbol: string;
|
|
10558
|
+
name: string;
|
|
10559
|
+
chainId: number;
|
|
10560
|
+
marketId: "main" | "core" | "bluechip";
|
|
10561
|
+
underlying: string;
|
|
10562
|
+
spoke: string | null;
|
|
10563
|
+
hubName: string;
|
|
10564
|
+
hubAddress: string;
|
|
10565
|
+
canSupply: boolean;
|
|
10566
|
+
canBorrow: boolean;
|
|
10567
|
+
canUseAsCollateral: boolean;
|
|
10568
|
+
supplyApyPercent: string;
|
|
10569
|
+
borrowApyPercent: string;
|
|
10570
|
+
supplied: string;
|
|
10571
|
+
borrowed: string;
|
|
10572
|
+
availableLiquidity: string;
|
|
10573
|
+
utilizationPercent: string | null;
|
|
10574
|
+
collateralFactorPercent: string;
|
|
10575
|
+
}>, "many">;
|
|
10576
|
+
notes: z.ZodString;
|
|
10577
|
+
}, "strip", z.ZodTypeAny, {
|
|
10578
|
+
chainId: number;
|
|
10579
|
+
notes: string;
|
|
10580
|
+
markets: {
|
|
10581
|
+
symbol: string;
|
|
10582
|
+
name: string;
|
|
10583
|
+
chainId: number;
|
|
10584
|
+
marketId: "main" | "core" | "bluechip";
|
|
10585
|
+
underlying: string;
|
|
10586
|
+
spoke: string | null;
|
|
10587
|
+
hubName: string;
|
|
10588
|
+
hubAddress: string;
|
|
10589
|
+
canSupply: boolean;
|
|
10590
|
+
canBorrow: boolean;
|
|
10591
|
+
canUseAsCollateral: boolean;
|
|
10592
|
+
supplyApyPercent: string;
|
|
10593
|
+
borrowApyPercent: string;
|
|
10594
|
+
supplied: string;
|
|
10595
|
+
borrowed: string;
|
|
10596
|
+
availableLiquidity: string;
|
|
10597
|
+
utilizationPercent: string | null;
|
|
10598
|
+
collateralFactorPercent: string;
|
|
10599
|
+
}[];
|
|
10600
|
+
}, {
|
|
10601
|
+
chainId: number;
|
|
10602
|
+
notes: string;
|
|
10603
|
+
markets: {
|
|
10604
|
+
symbol: string;
|
|
10605
|
+
name: string;
|
|
10606
|
+
chainId: number;
|
|
10607
|
+
marketId: "main" | "core" | "bluechip";
|
|
10608
|
+
underlying: string;
|
|
10609
|
+
spoke: string | null;
|
|
10610
|
+
hubName: string;
|
|
10611
|
+
hubAddress: string;
|
|
10612
|
+
canSupply: boolean;
|
|
10613
|
+
canBorrow: boolean;
|
|
10614
|
+
canUseAsCollateral: boolean;
|
|
10615
|
+
supplyApyPercent: string;
|
|
10616
|
+
borrowApyPercent: string;
|
|
10617
|
+
supplied: string;
|
|
10618
|
+
borrowed: string;
|
|
10619
|
+
availableLiquidity: string;
|
|
10620
|
+
utilizationPercent: string | null;
|
|
10621
|
+
collateralFactorPercent: string;
|
|
10622
|
+
}[];
|
|
10623
|
+
}>;
|
|
10624
|
+
declare const mcpAaveV4FetchMarketInputSchema: z.ZodObject<{
|
|
10625
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
10626
|
+
underlying: z.ZodString;
|
|
10627
|
+
marketId: z.ZodOptional<z.ZodEnum<["main", "core", "bluechip"]>>;
|
|
10628
|
+
}, "strip", z.ZodTypeAny, {
|
|
10629
|
+
chainId: number;
|
|
10630
|
+
underlying: string;
|
|
10631
|
+
marketId?: "main" | "core" | "bluechip" | undefined;
|
|
10632
|
+
}, {
|
|
10633
|
+
underlying: string;
|
|
10634
|
+
chainId?: unknown;
|
|
10635
|
+
marketId?: "main" | "core" | "bluechip" | undefined;
|
|
10636
|
+
}>;
|
|
10637
|
+
declare const mcpAaveV4FetchMarketOutputSchema: z.ZodObject<{
|
|
10638
|
+
chainId: z.ZodNumber;
|
|
10639
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
10640
|
+
chainId: z.ZodNumber;
|
|
10641
|
+
hubName: z.ZodString;
|
|
10642
|
+
marketId: z.ZodEnum<["main", "core", "bluechip"]>;
|
|
10643
|
+
hubAddress: z.ZodString;
|
|
10644
|
+
symbol: z.ZodString;
|
|
10645
|
+
name: z.ZodString;
|
|
10646
|
+
underlying: z.ZodString;
|
|
10647
|
+
spoke: z.ZodNullable<z.ZodString>;
|
|
10648
|
+
canSupply: z.ZodBoolean;
|
|
10649
|
+
canBorrow: z.ZodBoolean;
|
|
10650
|
+
canUseAsCollateral: z.ZodBoolean;
|
|
10651
|
+
supplyApyPercent: z.ZodString;
|
|
10652
|
+
borrowApyPercent: z.ZodString;
|
|
10653
|
+
supplied: z.ZodString;
|
|
10654
|
+
borrowed: z.ZodString;
|
|
10655
|
+
availableLiquidity: z.ZodString;
|
|
10656
|
+
utilizationPercent: z.ZodNullable<z.ZodString>;
|
|
10657
|
+
collateralFactorPercent: z.ZodString;
|
|
10658
|
+
}, "strip", z.ZodTypeAny, {
|
|
10659
|
+
symbol: string;
|
|
10660
|
+
name: string;
|
|
10661
|
+
chainId: number;
|
|
10662
|
+
marketId: "main" | "core" | "bluechip";
|
|
10663
|
+
underlying: string;
|
|
10664
|
+
spoke: string | null;
|
|
10665
|
+
hubName: string;
|
|
10666
|
+
hubAddress: string;
|
|
10667
|
+
canSupply: boolean;
|
|
10668
|
+
canBorrow: boolean;
|
|
10669
|
+
canUseAsCollateral: boolean;
|
|
10670
|
+
supplyApyPercent: string;
|
|
10671
|
+
borrowApyPercent: string;
|
|
10672
|
+
supplied: string;
|
|
10673
|
+
borrowed: string;
|
|
10674
|
+
availableLiquidity: string;
|
|
10675
|
+
utilizationPercent: string | null;
|
|
10676
|
+
collateralFactorPercent: string;
|
|
10677
|
+
}, {
|
|
10678
|
+
symbol: string;
|
|
10679
|
+
name: string;
|
|
10680
|
+
chainId: number;
|
|
10681
|
+
marketId: "main" | "core" | "bluechip";
|
|
10682
|
+
underlying: string;
|
|
10683
|
+
spoke: string | null;
|
|
10684
|
+
hubName: string;
|
|
10685
|
+
hubAddress: string;
|
|
10686
|
+
canSupply: boolean;
|
|
10687
|
+
canBorrow: boolean;
|
|
10688
|
+
canUseAsCollateral: boolean;
|
|
10689
|
+
supplyApyPercent: string;
|
|
10690
|
+
borrowApyPercent: string;
|
|
10691
|
+
supplied: string;
|
|
10692
|
+
borrowed: string;
|
|
10693
|
+
availableLiquidity: string;
|
|
10694
|
+
utilizationPercent: string | null;
|
|
10695
|
+
collateralFactorPercent: string;
|
|
10696
|
+
}>, "many">;
|
|
10697
|
+
notes: z.ZodString;
|
|
10698
|
+
}, "strip", z.ZodTypeAny, {
|
|
10699
|
+
chainId: number;
|
|
10700
|
+
notes: string;
|
|
10701
|
+
markets: {
|
|
10702
|
+
symbol: string;
|
|
10703
|
+
name: string;
|
|
10704
|
+
chainId: number;
|
|
10705
|
+
marketId: "main" | "core" | "bluechip";
|
|
10706
|
+
underlying: string;
|
|
10707
|
+
spoke: string | null;
|
|
10708
|
+
hubName: string;
|
|
10709
|
+
hubAddress: string;
|
|
10710
|
+
canSupply: boolean;
|
|
10711
|
+
canBorrow: boolean;
|
|
10712
|
+
canUseAsCollateral: boolean;
|
|
10713
|
+
supplyApyPercent: string;
|
|
10714
|
+
borrowApyPercent: string;
|
|
10715
|
+
supplied: string;
|
|
10716
|
+
borrowed: string;
|
|
10717
|
+
availableLiquidity: string;
|
|
10718
|
+
utilizationPercent: string | null;
|
|
10719
|
+
collateralFactorPercent: string;
|
|
10720
|
+
}[];
|
|
10721
|
+
}, {
|
|
10722
|
+
chainId: number;
|
|
10723
|
+
notes: string;
|
|
10724
|
+
markets: {
|
|
10725
|
+
symbol: string;
|
|
10726
|
+
name: string;
|
|
10727
|
+
chainId: number;
|
|
10728
|
+
marketId: "main" | "core" | "bluechip";
|
|
10729
|
+
underlying: string;
|
|
10730
|
+
spoke: string | null;
|
|
10731
|
+
hubName: string;
|
|
10732
|
+
hubAddress: string;
|
|
10733
|
+
canSupply: boolean;
|
|
10734
|
+
canBorrow: boolean;
|
|
10735
|
+
canUseAsCollateral: boolean;
|
|
10736
|
+
supplyApyPercent: string;
|
|
10737
|
+
borrowApyPercent: string;
|
|
10738
|
+
supplied: string;
|
|
10739
|
+
borrowed: string;
|
|
10740
|
+
availableLiquidity: string;
|
|
10741
|
+
utilizationPercent: string | null;
|
|
10742
|
+
collateralFactorPercent: string;
|
|
10743
|
+
}[];
|
|
10744
|
+
}>;
|
|
10745
|
+
type McpAaveV4FetchMarketsInput = z.infer<typeof mcpAaveV4FetchMarketsInputSchema>;
|
|
10746
|
+
type McpAaveV4FetchMarketsOutput = z.infer<typeof mcpAaveV4FetchMarketsOutputSchema>;
|
|
10747
|
+
type McpAaveV4FetchMarketInput = z.infer<typeof mcpAaveV4FetchMarketInputSchema>;
|
|
10748
|
+
type McpAaveV4FetchMarketOutput = z.infer<typeof mcpAaveV4FetchMarketOutputSchema>;
|
|
9714
10749
|
|
|
9715
10750
|
declare const mcpEulerV2FetchLendVaultsInputSchema: z.ZodObject<{
|
|
9716
10751
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
@@ -9784,6 +10819,183 @@ declare const mcpEulerV2FetchLendVaultsOutputSchema: z.ZodObject<{
|
|
|
9784
10819
|
}>;
|
|
9785
10820
|
type McpEulerV2FetchLendVaultsInput = z.infer<typeof mcpEulerV2FetchLendVaultsInputSchema>;
|
|
9786
10821
|
type McpEulerV2FetchLendVaultsOutput = z.infer<typeof mcpEulerV2FetchLendVaultsOutputSchema>;
|
|
10822
|
+
declare const mcpEulerV2FetchEarnVaultsInputSchema: z.ZodObject<{
|
|
10823
|
+
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
10824
|
+
underlyingAddress: z.ZodString;
|
|
10825
|
+
limit: z.ZodEffects<z.ZodOptional<z.ZodPipeline<z.ZodNumber, z.ZodNumber>>, number | undefined, unknown>;
|
|
10826
|
+
}, "strip", z.ZodTypeAny, {
|
|
10827
|
+
chainId: number;
|
|
10828
|
+
underlyingAddress: string;
|
|
10829
|
+
limit?: number | undefined;
|
|
10830
|
+
}, {
|
|
10831
|
+
underlyingAddress: string;
|
|
10832
|
+
chainId?: unknown;
|
|
10833
|
+
limit?: unknown;
|
|
10834
|
+
}>;
|
|
10835
|
+
declare const mcpEulerV2FetchEarnVaultsOutputSchema: z.ZodObject<{
|
|
10836
|
+
vaults: z.ZodArray<z.ZodObject<{
|
|
10837
|
+
evaultAddress: z.ZodString;
|
|
10838
|
+
vaultName: z.ZodString;
|
|
10839
|
+
curatorDisplayName: z.ZodString;
|
|
10840
|
+
supplyApyPercentLabel: z.ZodString;
|
|
10841
|
+
totalAssetsHumanLabel: z.ZodString;
|
|
10842
|
+
availableLiquidityHumanLabel: z.ZodString;
|
|
10843
|
+
performanceFeePercentLabel: z.ZodString;
|
|
10844
|
+
underlyingAddress: z.ZodString;
|
|
10845
|
+
strategyCount: z.ZodNumber;
|
|
10846
|
+
}, "strip", z.ZodTypeAny, {
|
|
10847
|
+
vaultName: string;
|
|
10848
|
+
evaultAddress: string;
|
|
10849
|
+
underlyingAddress: string;
|
|
10850
|
+
supplyApyPercentLabel: string;
|
|
10851
|
+
curatorDisplayName: string;
|
|
10852
|
+
totalAssetsHumanLabel: string;
|
|
10853
|
+
availableLiquidityHumanLabel: string;
|
|
10854
|
+
performanceFeePercentLabel: string;
|
|
10855
|
+
strategyCount: number;
|
|
10856
|
+
}, {
|
|
10857
|
+
vaultName: string;
|
|
10858
|
+
evaultAddress: string;
|
|
10859
|
+
underlyingAddress: string;
|
|
10860
|
+
supplyApyPercentLabel: string;
|
|
10861
|
+
curatorDisplayName: string;
|
|
10862
|
+
totalAssetsHumanLabel: string;
|
|
10863
|
+
availableLiquidityHumanLabel: string;
|
|
10864
|
+
performanceFeePercentLabel: string;
|
|
10865
|
+
strategyCount: number;
|
|
10866
|
+
}>, "many">;
|
|
10867
|
+
}, "strip", z.ZodTypeAny, {
|
|
10868
|
+
vaults: {
|
|
10869
|
+
vaultName: string;
|
|
10870
|
+
evaultAddress: string;
|
|
10871
|
+
underlyingAddress: string;
|
|
10872
|
+
supplyApyPercentLabel: string;
|
|
10873
|
+
curatorDisplayName: string;
|
|
10874
|
+
totalAssetsHumanLabel: string;
|
|
10875
|
+
availableLiquidityHumanLabel: string;
|
|
10876
|
+
performanceFeePercentLabel: string;
|
|
10877
|
+
strategyCount: number;
|
|
10878
|
+
}[];
|
|
10879
|
+
}, {
|
|
10880
|
+
vaults: {
|
|
10881
|
+
vaultName: string;
|
|
10882
|
+
evaultAddress: string;
|
|
10883
|
+
underlyingAddress: string;
|
|
10884
|
+
supplyApyPercentLabel: string;
|
|
10885
|
+
curatorDisplayName: string;
|
|
10886
|
+
totalAssetsHumanLabel: string;
|
|
10887
|
+
availableLiquidityHumanLabel: string;
|
|
10888
|
+
performanceFeePercentLabel: string;
|
|
10889
|
+
strategyCount: number;
|
|
10890
|
+
}[];
|
|
10891
|
+
}>;
|
|
10892
|
+
type McpEulerV2FetchEarnVaultsInput = z.infer<typeof mcpEulerV2FetchEarnVaultsInputSchema>;
|
|
10893
|
+
type McpEulerV2FetchEarnVaultsOutput = z.infer<typeof mcpEulerV2FetchEarnVaultsOutputSchema>;
|
|
10894
|
+
|
|
10895
|
+
declare const mcpLidoFetchStethAprInputSchema: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
10896
|
+
declare const mcpLidoFetchStethAprOutputSchema: z.ZodObject<{
|
|
10897
|
+
aprPercent: z.ZodString;
|
|
10898
|
+
apr: z.ZodNullable<z.ZodNumber>;
|
|
10899
|
+
asset: z.ZodString;
|
|
10900
|
+
source: z.ZodString;
|
|
10901
|
+
notes: z.ZodString;
|
|
10902
|
+
}, "strip", z.ZodTypeAny, {
|
|
10903
|
+
source: string;
|
|
10904
|
+
notes: string;
|
|
10905
|
+
asset: string;
|
|
10906
|
+
aprPercent: string;
|
|
10907
|
+
apr: number | null;
|
|
10908
|
+
}, {
|
|
10909
|
+
source: string;
|
|
10910
|
+
notes: string;
|
|
10911
|
+
asset: string;
|
|
10912
|
+
aprPercent: string;
|
|
10913
|
+
apr: number | null;
|
|
10914
|
+
}>;
|
|
10915
|
+
type McpLidoFetchStethAprInput = z.infer<typeof mcpLidoFetchStethAprInputSchema>;
|
|
10916
|
+
type McpLidoFetchStethAprOutput = z.infer<typeof mcpLidoFetchStethAprOutputSchema>;
|
|
10917
|
+
|
|
10918
|
+
declare const mcpSkyFetchSusdsRateInputSchema: z.ZodObject<{
|
|
10919
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
10920
|
+
}, "strict", z.ZodTypeAny, {
|
|
10921
|
+
rpcUrl?: string | undefined;
|
|
10922
|
+
}, {
|
|
10923
|
+
rpcUrl?: string | undefined;
|
|
10924
|
+
}>;
|
|
10925
|
+
declare const mcpSkyFetchSusdsRateOutputSchema: z.ZodObject<{
|
|
10926
|
+
chainId: z.ZodNumber;
|
|
10927
|
+
vault: z.ZodString;
|
|
10928
|
+
asset: z.ZodString;
|
|
10929
|
+
assetSymbol: z.ZodString;
|
|
10930
|
+
apyPercent: z.ZodString;
|
|
10931
|
+
apy: z.ZodNullable<z.ZodNumber>;
|
|
10932
|
+
usdsPerSusdsShare: z.ZodString;
|
|
10933
|
+
notes: z.ZodString;
|
|
10934
|
+
}, "strip", z.ZodTypeAny, {
|
|
10935
|
+
chainId: number;
|
|
10936
|
+
apy: number | null;
|
|
10937
|
+
notes: string;
|
|
10938
|
+
vault: string;
|
|
10939
|
+
asset: string;
|
|
10940
|
+
assetSymbol: string;
|
|
10941
|
+
apyPercent: string;
|
|
10942
|
+
usdsPerSusdsShare: string;
|
|
10943
|
+
}, {
|
|
10944
|
+
chainId: number;
|
|
10945
|
+
apy: number | null;
|
|
10946
|
+
notes: string;
|
|
10947
|
+
vault: string;
|
|
10948
|
+
asset: string;
|
|
10949
|
+
assetSymbol: string;
|
|
10950
|
+
apyPercent: string;
|
|
10951
|
+
usdsPerSusdsShare: string;
|
|
10952
|
+
}>;
|
|
10953
|
+
type McpSkyFetchSusdsRateInput = z.infer<typeof mcpSkyFetchSusdsRateInputSchema>;
|
|
10954
|
+
type McpSkyFetchSusdsRateOutput = z.infer<typeof mcpSkyFetchSusdsRateOutputSchema>;
|
|
10955
|
+
|
|
10956
|
+
declare const mcpEthenaFetchSusdeApyInputSchema: z.ZodObject<{
|
|
10957
|
+
rpcUrl: z.ZodOptional<z.ZodString>;
|
|
10958
|
+
}, "strict", z.ZodTypeAny, {
|
|
10959
|
+
rpcUrl?: string | undefined;
|
|
10960
|
+
}, {
|
|
10961
|
+
rpcUrl?: string | undefined;
|
|
10962
|
+
}>;
|
|
10963
|
+
declare const mcpEthenaFetchSusdeApyOutputSchema: z.ZodObject<{
|
|
10964
|
+
chainId: z.ZodNumber;
|
|
10965
|
+
product: z.ZodString;
|
|
10966
|
+
asset: z.ZodString;
|
|
10967
|
+
assetSymbol: z.ZodString;
|
|
10968
|
+
share: z.ZodString;
|
|
10969
|
+
apyPercent: z.ZodString;
|
|
10970
|
+
apy: z.ZodNullable<z.ZodNumber>;
|
|
10971
|
+
usdePerSusde: z.ZodString;
|
|
10972
|
+
cooldownDurationSec: z.ZodNullable<z.ZodNumber>;
|
|
10973
|
+
notes: z.ZodString;
|
|
10974
|
+
}, "strip", z.ZodTypeAny, {
|
|
10975
|
+
chainId: number;
|
|
10976
|
+
apy: number | null;
|
|
10977
|
+
notes: string;
|
|
10978
|
+
product: string;
|
|
10979
|
+
asset: string;
|
|
10980
|
+
cooldownDurationSec: number | null;
|
|
10981
|
+
assetSymbol: string;
|
|
10982
|
+
apyPercent: string;
|
|
10983
|
+
share: string;
|
|
10984
|
+
usdePerSusde: string;
|
|
10985
|
+
}, {
|
|
10986
|
+
chainId: number;
|
|
10987
|
+
apy: number | null;
|
|
10988
|
+
notes: string;
|
|
10989
|
+
product: string;
|
|
10990
|
+
asset: string;
|
|
10991
|
+
cooldownDurationSec: number | null;
|
|
10992
|
+
assetSymbol: string;
|
|
10993
|
+
apyPercent: string;
|
|
10994
|
+
share: string;
|
|
10995
|
+
usdePerSusde: string;
|
|
10996
|
+
}>;
|
|
10997
|
+
type McpEthenaFetchSusdeApyInput = z.infer<typeof mcpEthenaFetchSusdeApyInputSchema>;
|
|
10998
|
+
type McpEthenaFetchSusdeApyOutput = z.infer<typeof mcpEthenaFetchSusdeApyOutputSchema>;
|
|
9787
10999
|
|
|
9788
11000
|
declare const mcpCompoundV3FetchMarketsInputSchema: z.ZodObject<{
|
|
9789
11001
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
@@ -9807,6 +11019,8 @@ declare const mcpCompoundV3FetchMarketsOutputSchema: z.ZodObject<{
|
|
|
9807
11019
|
utilization: z.ZodNullable<z.ZodNumber>;
|
|
9808
11020
|
supplyAprPercent: z.ZodNullable<z.ZodString>;
|
|
9809
11021
|
borrowAprPercent: z.ZodNullable<z.ZodString>;
|
|
11022
|
+
supplyRewardAprPercent: z.ZodNullable<z.ZodString>;
|
|
11023
|
+
borrowRewardAprPercent: z.ZodNullable<z.ZodString>;
|
|
9810
11024
|
assets: z.ZodArray<z.ZodObject<{
|
|
9811
11025
|
asset: z.ZodString;
|
|
9812
11026
|
symbol: z.ZodString;
|
|
@@ -9822,7 +11036,7 @@ declare const mcpCompoundV3FetchMarketsOutputSchema: z.ZodObject<{
|
|
|
9822
11036
|
borrowCollateralFactorPercent: number;
|
|
9823
11037
|
liquidateCollateralFactorPercent: number;
|
|
9824
11038
|
priceRaw: string;
|
|
9825
|
-
role: "
|
|
11039
|
+
role: "base" | "collateral";
|
|
9826
11040
|
}, {
|
|
9827
11041
|
symbol: string;
|
|
9828
11042
|
decimals: number;
|
|
@@ -9830,11 +11044,12 @@ declare const mcpCompoundV3FetchMarketsOutputSchema: z.ZodObject<{
|
|
|
9830
11044
|
borrowCollateralFactorPercent: number;
|
|
9831
11045
|
liquidateCollateralFactorPercent: number;
|
|
9832
11046
|
priceRaw: string;
|
|
9833
|
-
role: "
|
|
11047
|
+
role: "base" | "collateral";
|
|
9834
11048
|
}>, "many">;
|
|
9835
11049
|
}, "strip", z.ZodTypeAny, {
|
|
9836
11050
|
symbol: string;
|
|
9837
11051
|
chainId: number;
|
|
11052
|
+
rewards: string;
|
|
9838
11053
|
assets: {
|
|
9839
11054
|
symbol: string;
|
|
9840
11055
|
decimals: number;
|
|
@@ -9842,19 +11057,21 @@ declare const mcpCompoundV3FetchMarketsOutputSchema: z.ZodObject<{
|
|
|
9842
11057
|
borrowCollateralFactorPercent: number;
|
|
9843
11058
|
liquidateCollateralFactorPercent: number;
|
|
9844
11059
|
priceRaw: string;
|
|
9845
|
-
role: "
|
|
11060
|
+
role: "base" | "collateral";
|
|
9846
11061
|
}[];
|
|
9847
11062
|
slug: string;
|
|
9848
11063
|
comet: string;
|
|
9849
|
-
rewards: string;
|
|
9850
11064
|
bulker: string | null;
|
|
9851
11065
|
baseToken: string | null;
|
|
9852
11066
|
utilization: number | null;
|
|
9853
11067
|
supplyAprPercent: string | null;
|
|
9854
11068
|
borrowAprPercent: string | null;
|
|
11069
|
+
supplyRewardAprPercent: string | null;
|
|
11070
|
+
borrowRewardAprPercent: string | null;
|
|
9855
11071
|
}, {
|
|
9856
11072
|
symbol: string;
|
|
9857
11073
|
chainId: number;
|
|
11074
|
+
rewards: string;
|
|
9858
11075
|
assets: {
|
|
9859
11076
|
symbol: string;
|
|
9860
11077
|
decimals: number;
|
|
@@ -9862,16 +11079,17 @@ declare const mcpCompoundV3FetchMarketsOutputSchema: z.ZodObject<{
|
|
|
9862
11079
|
borrowCollateralFactorPercent: number;
|
|
9863
11080
|
liquidateCollateralFactorPercent: number;
|
|
9864
11081
|
priceRaw: string;
|
|
9865
|
-
role: "
|
|
11082
|
+
role: "base" | "collateral";
|
|
9866
11083
|
}[];
|
|
9867
11084
|
slug: string;
|
|
9868
11085
|
comet: string;
|
|
9869
|
-
rewards: string;
|
|
9870
11086
|
bulker: string | null;
|
|
9871
11087
|
baseToken: string | null;
|
|
9872
11088
|
utilization: number | null;
|
|
9873
11089
|
supplyAprPercent: string | null;
|
|
9874
11090
|
borrowAprPercent: string | null;
|
|
11091
|
+
supplyRewardAprPercent: string | null;
|
|
11092
|
+
borrowRewardAprPercent: string | null;
|
|
9875
11093
|
}>, "many">;
|
|
9876
11094
|
notes: z.ZodString;
|
|
9877
11095
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9879,6 +11097,7 @@ declare const mcpCompoundV3FetchMarketsOutputSchema: z.ZodObject<{
|
|
|
9879
11097
|
markets: {
|
|
9880
11098
|
symbol: string;
|
|
9881
11099
|
chainId: number;
|
|
11100
|
+
rewards: string;
|
|
9882
11101
|
assets: {
|
|
9883
11102
|
symbol: string;
|
|
9884
11103
|
decimals: number;
|
|
@@ -9886,22 +11105,24 @@ declare const mcpCompoundV3FetchMarketsOutputSchema: z.ZodObject<{
|
|
|
9886
11105
|
borrowCollateralFactorPercent: number;
|
|
9887
11106
|
liquidateCollateralFactorPercent: number;
|
|
9888
11107
|
priceRaw: string;
|
|
9889
|
-
role: "
|
|
11108
|
+
role: "base" | "collateral";
|
|
9890
11109
|
}[];
|
|
9891
11110
|
slug: string;
|
|
9892
11111
|
comet: string;
|
|
9893
|
-
rewards: string;
|
|
9894
11112
|
bulker: string | null;
|
|
9895
11113
|
baseToken: string | null;
|
|
9896
11114
|
utilization: number | null;
|
|
9897
11115
|
supplyAprPercent: string | null;
|
|
9898
11116
|
borrowAprPercent: string | null;
|
|
11117
|
+
supplyRewardAprPercent: string | null;
|
|
11118
|
+
borrowRewardAprPercent: string | null;
|
|
9899
11119
|
}[];
|
|
9900
11120
|
}, {
|
|
9901
11121
|
notes: string;
|
|
9902
11122
|
markets: {
|
|
9903
11123
|
symbol: string;
|
|
9904
11124
|
chainId: number;
|
|
11125
|
+
rewards: string;
|
|
9905
11126
|
assets: {
|
|
9906
11127
|
symbol: string;
|
|
9907
11128
|
decimals: number;
|
|
@@ -9909,16 +11130,17 @@ declare const mcpCompoundV3FetchMarketsOutputSchema: z.ZodObject<{
|
|
|
9909
11130
|
borrowCollateralFactorPercent: number;
|
|
9910
11131
|
liquidateCollateralFactorPercent: number;
|
|
9911
11132
|
priceRaw: string;
|
|
9912
|
-
role: "
|
|
11133
|
+
role: "base" | "collateral";
|
|
9913
11134
|
}[];
|
|
9914
11135
|
slug: string;
|
|
9915
11136
|
comet: string;
|
|
9916
|
-
rewards: string;
|
|
9917
11137
|
bulker: string | null;
|
|
9918
11138
|
baseToken: string | null;
|
|
9919
11139
|
utilization: number | null;
|
|
9920
11140
|
supplyAprPercent: string | null;
|
|
9921
11141
|
borrowAprPercent: string | null;
|
|
11142
|
+
supplyRewardAprPercent: string | null;
|
|
11143
|
+
borrowRewardAprPercent: string | null;
|
|
9922
11144
|
}[];
|
|
9923
11145
|
}>;
|
|
9924
11146
|
declare const mcpCompoundV3FetchMarketInputSchema: z.ZodObject<{
|
|
@@ -9945,6 +11167,8 @@ declare const mcpCompoundV3FetchMarketOutputSchema: z.ZodObject<{
|
|
|
9945
11167
|
utilization: z.ZodNullable<z.ZodNumber>;
|
|
9946
11168
|
supplyAprPercent: z.ZodNullable<z.ZodString>;
|
|
9947
11169
|
borrowAprPercent: z.ZodNullable<z.ZodString>;
|
|
11170
|
+
supplyRewardAprPercent: z.ZodNullable<z.ZodString>;
|
|
11171
|
+
borrowRewardAprPercent: z.ZodNullable<z.ZodString>;
|
|
9948
11172
|
assets: z.ZodArray<z.ZodObject<{
|
|
9949
11173
|
asset: z.ZodString;
|
|
9950
11174
|
symbol: z.ZodString;
|
|
@@ -9960,7 +11184,7 @@ declare const mcpCompoundV3FetchMarketOutputSchema: z.ZodObject<{
|
|
|
9960
11184
|
borrowCollateralFactorPercent: number;
|
|
9961
11185
|
liquidateCollateralFactorPercent: number;
|
|
9962
11186
|
priceRaw: string;
|
|
9963
|
-
role: "
|
|
11187
|
+
role: "base" | "collateral";
|
|
9964
11188
|
}, {
|
|
9965
11189
|
symbol: string;
|
|
9966
11190
|
decimals: number;
|
|
@@ -9968,11 +11192,12 @@ declare const mcpCompoundV3FetchMarketOutputSchema: z.ZodObject<{
|
|
|
9968
11192
|
borrowCollateralFactorPercent: number;
|
|
9969
11193
|
liquidateCollateralFactorPercent: number;
|
|
9970
11194
|
priceRaw: string;
|
|
9971
|
-
role: "
|
|
11195
|
+
role: "base" | "collateral";
|
|
9972
11196
|
}>, "many">;
|
|
9973
11197
|
}, "strip", z.ZodTypeAny, {
|
|
9974
11198
|
symbol: string;
|
|
9975
11199
|
chainId: number;
|
|
11200
|
+
rewards: string;
|
|
9976
11201
|
assets: {
|
|
9977
11202
|
symbol: string;
|
|
9978
11203
|
decimals: number;
|
|
@@ -9980,19 +11205,21 @@ declare const mcpCompoundV3FetchMarketOutputSchema: z.ZodObject<{
|
|
|
9980
11205
|
borrowCollateralFactorPercent: number;
|
|
9981
11206
|
liquidateCollateralFactorPercent: number;
|
|
9982
11207
|
priceRaw: string;
|
|
9983
|
-
role: "
|
|
11208
|
+
role: "base" | "collateral";
|
|
9984
11209
|
}[];
|
|
9985
11210
|
slug: string;
|
|
9986
11211
|
comet: string;
|
|
9987
|
-
rewards: string;
|
|
9988
11212
|
bulker: string | null;
|
|
9989
11213
|
baseToken: string | null;
|
|
9990
11214
|
utilization: number | null;
|
|
9991
11215
|
supplyAprPercent: string | null;
|
|
9992
11216
|
borrowAprPercent: string | null;
|
|
11217
|
+
supplyRewardAprPercent: string | null;
|
|
11218
|
+
borrowRewardAprPercent: string | null;
|
|
9993
11219
|
}, {
|
|
9994
11220
|
symbol: string;
|
|
9995
11221
|
chainId: number;
|
|
11222
|
+
rewards: string;
|
|
9996
11223
|
assets: {
|
|
9997
11224
|
symbol: string;
|
|
9998
11225
|
decimals: number;
|
|
@@ -10000,16 +11227,17 @@ declare const mcpCompoundV3FetchMarketOutputSchema: z.ZodObject<{
|
|
|
10000
11227
|
borrowCollateralFactorPercent: number;
|
|
10001
11228
|
liquidateCollateralFactorPercent: number;
|
|
10002
11229
|
priceRaw: string;
|
|
10003
|
-
role: "
|
|
11230
|
+
role: "base" | "collateral";
|
|
10004
11231
|
}[];
|
|
10005
11232
|
slug: string;
|
|
10006
11233
|
comet: string;
|
|
10007
|
-
rewards: string;
|
|
10008
11234
|
bulker: string | null;
|
|
10009
11235
|
baseToken: string | null;
|
|
10010
11236
|
utilization: number | null;
|
|
10011
11237
|
supplyAprPercent: string | null;
|
|
10012
11238
|
borrowAprPercent: string | null;
|
|
11239
|
+
supplyRewardAprPercent: string | null;
|
|
11240
|
+
borrowRewardAprPercent: string | null;
|
|
10013
11241
|
}>;
|
|
10014
11242
|
declare const mcpCompoundV3FetchAccountInputSchema: z.ZodObject<{
|
|
10015
11243
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
@@ -10436,42 +11664,42 @@ declare const mcpGmxFetchGmMarketsOutputSchema: z.ZodObject<{
|
|
|
10436
11664
|
apyPercentLabel: z.ZodNullable<z.ZodString>;
|
|
10437
11665
|
}, "strip", z.ZodTypeAny, {
|
|
10438
11666
|
symbol: string;
|
|
11667
|
+
baseApy: number | null;
|
|
10439
11668
|
apy: number | null;
|
|
10440
11669
|
marketTokenAddress: string;
|
|
10441
11670
|
longTokenSymbol: string | null;
|
|
10442
11671
|
shortTokenSymbol: string | null;
|
|
10443
|
-
baseApy: number | null;
|
|
10444
11672
|
bonusApr: number | null;
|
|
10445
11673
|
apyPercentLabel: string | null;
|
|
10446
11674
|
}, {
|
|
10447
11675
|
symbol: string;
|
|
11676
|
+
baseApy: number | null;
|
|
10448
11677
|
apy: number | null;
|
|
10449
11678
|
marketTokenAddress: string;
|
|
10450
11679
|
longTokenSymbol: string | null;
|
|
10451
11680
|
shortTokenSymbol: string | null;
|
|
10452
|
-
baseApy: number | null;
|
|
10453
11681
|
bonusApr: number | null;
|
|
10454
11682
|
apyPercentLabel: string | null;
|
|
10455
11683
|
}>, "many">;
|
|
10456
11684
|
}, "strip", z.ZodTypeAny, {
|
|
10457
11685
|
markets: {
|
|
10458
11686
|
symbol: string;
|
|
11687
|
+
baseApy: number | null;
|
|
10459
11688
|
apy: number | null;
|
|
10460
11689
|
marketTokenAddress: string;
|
|
10461
11690
|
longTokenSymbol: string | null;
|
|
10462
11691
|
shortTokenSymbol: string | null;
|
|
10463
|
-
baseApy: number | null;
|
|
10464
11692
|
bonusApr: number | null;
|
|
10465
11693
|
apyPercentLabel: string | null;
|
|
10466
11694
|
}[];
|
|
10467
11695
|
}, {
|
|
10468
11696
|
markets: {
|
|
10469
11697
|
symbol: string;
|
|
11698
|
+
baseApy: number | null;
|
|
10470
11699
|
apy: number | null;
|
|
10471
11700
|
marketTokenAddress: string;
|
|
10472
11701
|
longTokenSymbol: string | null;
|
|
10473
11702
|
shortTokenSymbol: string | null;
|
|
10474
|
-
baseApy: number | null;
|
|
10475
11703
|
bonusApr: number | null;
|
|
10476
11704
|
apyPercentLabel: string | null;
|
|
10477
11705
|
}[];
|
|
@@ -10495,42 +11723,42 @@ declare const mcpGmxFetchGmApyOutputSchema: z.ZodObject<{
|
|
|
10495
11723
|
apyPercentLabel: z.ZodNullable<z.ZodString>;
|
|
10496
11724
|
}, "strip", z.ZodTypeAny, {
|
|
10497
11725
|
symbol: string;
|
|
11726
|
+
baseApy: number | null;
|
|
10498
11727
|
apy: number | null;
|
|
10499
11728
|
marketTokenAddress: string;
|
|
10500
11729
|
longTokenSymbol: string | null;
|
|
10501
11730
|
shortTokenSymbol: string | null;
|
|
10502
|
-
baseApy: number | null;
|
|
10503
11731
|
bonusApr: number | null;
|
|
10504
11732
|
apyPercentLabel: string | null;
|
|
10505
11733
|
}, {
|
|
10506
11734
|
symbol: string;
|
|
11735
|
+
baseApy: number | null;
|
|
10507
11736
|
apy: number | null;
|
|
10508
11737
|
marketTokenAddress: string;
|
|
10509
11738
|
longTokenSymbol: string | null;
|
|
10510
11739
|
shortTokenSymbol: string | null;
|
|
10511
|
-
baseApy: number | null;
|
|
10512
11740
|
bonusApr: number | null;
|
|
10513
11741
|
apyPercentLabel: string | null;
|
|
10514
11742
|
}>, "many">;
|
|
10515
11743
|
}, "strip", z.ZodTypeAny, {
|
|
10516
11744
|
markets: {
|
|
10517
11745
|
symbol: string;
|
|
11746
|
+
baseApy: number | null;
|
|
10518
11747
|
apy: number | null;
|
|
10519
11748
|
marketTokenAddress: string;
|
|
10520
11749
|
longTokenSymbol: string | null;
|
|
10521
11750
|
shortTokenSymbol: string | null;
|
|
10522
|
-
baseApy: number | null;
|
|
10523
11751
|
bonusApr: number | null;
|
|
10524
11752
|
apyPercentLabel: string | null;
|
|
10525
11753
|
}[];
|
|
10526
11754
|
}, {
|
|
10527
11755
|
markets: {
|
|
10528
11756
|
symbol: string;
|
|
11757
|
+
baseApy: number | null;
|
|
10529
11758
|
apy: number | null;
|
|
10530
11759
|
marketTokenAddress: string;
|
|
10531
11760
|
longTokenSymbol: string | null;
|
|
10532
11761
|
shortTokenSymbol: string | null;
|
|
10533
|
-
baseApy: number | null;
|
|
10534
11762
|
bonusApr: number | null;
|
|
10535
11763
|
apyPercentLabel: string | null;
|
|
10536
11764
|
}[];
|
|
@@ -10573,6 +11801,14 @@ declare const mcpGmxFetchMarketPricesOutputSchema: z.ZodObject<{
|
|
|
10573
11801
|
collateralUsd: z.ZodNullable<z.ZodString>;
|
|
10574
11802
|
indexPerCollateral: z.ZodNullable<z.ZodString>;
|
|
10575
11803
|
fetchedAtMs: z.ZodNumber;
|
|
11804
|
+
fundingFactorPerSecond: z.ZodNullable<z.ZodString>;
|
|
11805
|
+
longsPayShorts: z.ZodNullable<z.ZodBoolean>;
|
|
11806
|
+
fundingHourlyPercentLabel: z.ZodNullable<z.ZodString>;
|
|
11807
|
+
fundingAprPercentLabel: z.ZodNullable<z.ZodString>;
|
|
11808
|
+
borrowingFactorPerSecondForLongs: z.ZodNullable<z.ZodString>;
|
|
11809
|
+
borrowingFactorPerSecondForShorts: z.ZodNullable<z.ZodString>;
|
|
11810
|
+
borrowingHourlyPercentLongLabel: z.ZodNullable<z.ZodString>;
|
|
11811
|
+
borrowingHourlyPercentShortLabel: z.ZodNullable<z.ZodString>;
|
|
10576
11812
|
}, "strip", z.ZodTypeAny, {
|
|
10577
11813
|
symbol: string;
|
|
10578
11814
|
fetchedAtMs: number;
|
|
@@ -10581,6 +11817,14 @@ declare const mcpGmxFetchMarketPricesOutputSchema: z.ZodObject<{
|
|
|
10581
11817
|
indexLabel: string;
|
|
10582
11818
|
indexMarkUsd: string | null;
|
|
10583
11819
|
indexPerCollateral: string | null;
|
|
11820
|
+
fundingFactorPerSecond: string | null;
|
|
11821
|
+
longsPayShorts: boolean | null;
|
|
11822
|
+
fundingHourlyPercentLabel: string | null;
|
|
11823
|
+
fundingAprPercentLabel: string | null;
|
|
11824
|
+
borrowingFactorPerSecondForLongs: string | null;
|
|
11825
|
+
borrowingFactorPerSecondForShorts: string | null;
|
|
11826
|
+
borrowingHourlyPercentLongLabel: string | null;
|
|
11827
|
+
borrowingHourlyPercentShortLabel: string | null;
|
|
10584
11828
|
}, {
|
|
10585
11829
|
symbol: string;
|
|
10586
11830
|
fetchedAtMs: number;
|
|
@@ -10589,6 +11833,14 @@ declare const mcpGmxFetchMarketPricesOutputSchema: z.ZodObject<{
|
|
|
10589
11833
|
indexLabel: string;
|
|
10590
11834
|
indexMarkUsd: string | null;
|
|
10591
11835
|
indexPerCollateral: string | null;
|
|
11836
|
+
fundingFactorPerSecond: string | null;
|
|
11837
|
+
longsPayShorts: boolean | null;
|
|
11838
|
+
fundingHourlyPercentLabel: string | null;
|
|
11839
|
+
fundingAprPercentLabel: string | null;
|
|
11840
|
+
borrowingFactorPerSecondForLongs: string | null;
|
|
11841
|
+
borrowingFactorPerSecondForShorts: string | null;
|
|
11842
|
+
borrowingHourlyPercentLongLabel: string | null;
|
|
11843
|
+
borrowingHourlyPercentShortLabel: string | null;
|
|
10592
11844
|
}>;
|
|
10593
11845
|
declare const mcpGmxFetchOhlcvInputSchema: z.ZodObject<{
|
|
10594
11846
|
chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
@@ -10681,6 +11933,88 @@ declare const mcpHyperliquidFetchMarketsInputSchema: z.ZodObject<{
|
|
|
10681
11933
|
chainId?: number | undefined;
|
|
10682
11934
|
dex?: string | undefined;
|
|
10683
11935
|
}>;
|
|
11936
|
+
declare const mcpHyperliquidFetchStockMarketsInputSchema: z.ZodObject<{
|
|
11937
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
11938
|
+
}, "strip", z.ZodTypeAny, {
|
|
11939
|
+
chainId: number;
|
|
11940
|
+
}, {
|
|
11941
|
+
chainId?: number | undefined;
|
|
11942
|
+
}>;
|
|
11943
|
+
declare const mcpHyperliquidFetchStockMarketsOutputSchema: z.ZodObject<{
|
|
11944
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
11945
|
+
name: z.ZodString;
|
|
11946
|
+
asset: z.ZodNumber;
|
|
11947
|
+
szDecimals: z.ZodNumber;
|
|
11948
|
+
maxLeverage: z.ZodNumber;
|
|
11949
|
+
onlyIsolated: z.ZodOptional<z.ZodBoolean>;
|
|
11950
|
+
dex: z.ZodOptional<z.ZodString>;
|
|
11951
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
11952
|
+
category: z.ZodOptional<z.ZodString>;
|
|
11953
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11954
|
+
}, "strip", z.ZodTypeAny, {
|
|
11955
|
+
name: string;
|
|
11956
|
+
asset: number;
|
|
11957
|
+
maxLeverage: number;
|
|
11958
|
+
szDecimals: number;
|
|
11959
|
+
dex?: string | undefined;
|
|
11960
|
+
onlyIsolated?: boolean | undefined;
|
|
11961
|
+
displayName?: string | undefined;
|
|
11962
|
+
category?: string | undefined;
|
|
11963
|
+
keywords?: string[] | undefined;
|
|
11964
|
+
}, {
|
|
11965
|
+
name: string;
|
|
11966
|
+
asset: number;
|
|
11967
|
+
maxLeverage: number;
|
|
11968
|
+
szDecimals: number;
|
|
11969
|
+
dex?: string | undefined;
|
|
11970
|
+
onlyIsolated?: boolean | undefined;
|
|
11971
|
+
displayName?: string | undefined;
|
|
11972
|
+
category?: string | undefined;
|
|
11973
|
+
keywords?: string[] | undefined;
|
|
11974
|
+
}>, "many">;
|
|
11975
|
+
dexes: z.ZodArray<z.ZodObject<{
|
|
11976
|
+
name: z.ZodString;
|
|
11977
|
+
fullName: z.ZodString;
|
|
11978
|
+
}, "strip", z.ZodTypeAny, {
|
|
11979
|
+
name: string;
|
|
11980
|
+
fullName: string;
|
|
11981
|
+
}, {
|
|
11982
|
+
name: string;
|
|
11983
|
+
fullName: string;
|
|
11984
|
+
}>, "many">;
|
|
11985
|
+
}, "strip", z.ZodTypeAny, {
|
|
11986
|
+
markets: {
|
|
11987
|
+
name: string;
|
|
11988
|
+
asset: number;
|
|
11989
|
+
maxLeverage: number;
|
|
11990
|
+
szDecimals: number;
|
|
11991
|
+
dex?: string | undefined;
|
|
11992
|
+
onlyIsolated?: boolean | undefined;
|
|
11993
|
+
displayName?: string | undefined;
|
|
11994
|
+
category?: string | undefined;
|
|
11995
|
+
keywords?: string[] | undefined;
|
|
11996
|
+
}[];
|
|
11997
|
+
dexes: {
|
|
11998
|
+
name: string;
|
|
11999
|
+
fullName: string;
|
|
12000
|
+
}[];
|
|
12001
|
+
}, {
|
|
12002
|
+
markets: {
|
|
12003
|
+
name: string;
|
|
12004
|
+
asset: number;
|
|
12005
|
+
maxLeverage: number;
|
|
12006
|
+
szDecimals: number;
|
|
12007
|
+
dex?: string | undefined;
|
|
12008
|
+
onlyIsolated?: boolean | undefined;
|
|
12009
|
+
displayName?: string | undefined;
|
|
12010
|
+
category?: string | undefined;
|
|
12011
|
+
keywords?: string[] | undefined;
|
|
12012
|
+
}[];
|
|
12013
|
+
dexes: {
|
|
12014
|
+
name: string;
|
|
12015
|
+
fullName: string;
|
|
12016
|
+
}[];
|
|
12017
|
+
}>;
|
|
10684
12018
|
declare const mcpHyperliquidFetchMarketsOutputSchema: z.ZodObject<{
|
|
10685
12019
|
markets: z.ZodArray<z.ZodObject<{
|
|
10686
12020
|
name: z.ZodString;
|
|
@@ -11126,6 +12460,7 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
11126
12460
|
midUsd: string;
|
|
11127
12461
|
}>;
|
|
11128
12462
|
midUsd: z.ZodString;
|
|
12463
|
+
funding: z.ZodNullable<z.ZodString>;
|
|
11129
12464
|
fetchedAtMs: z.ZodNumber;
|
|
11130
12465
|
interval: z.ZodEnum<["1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", "12h", "1d", "3d", "1w", "1M"]>;
|
|
11131
12466
|
latestCandle: z.ZodNullable<z.ZodObject<{
|
|
@@ -11196,6 +12531,7 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
11196
12531
|
prevDayPx: string | null;
|
|
11197
12532
|
midUsd: string;
|
|
11198
12533
|
};
|
|
12534
|
+
funding: string | null;
|
|
11199
12535
|
latestCandle: {
|
|
11200
12536
|
high: string;
|
|
11201
12537
|
low: string;
|
|
@@ -11227,6 +12563,7 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
11227
12563
|
prevDayPx: string | null;
|
|
11228
12564
|
midUsd: string;
|
|
11229
12565
|
};
|
|
12566
|
+
funding: string | null;
|
|
11230
12567
|
latestCandle: {
|
|
11231
12568
|
high: string;
|
|
11232
12569
|
low: string;
|
|
@@ -11264,6 +12601,7 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
11264
12601
|
prevDayPx: string | null;
|
|
11265
12602
|
midUsd: string;
|
|
11266
12603
|
};
|
|
12604
|
+
funding: string | null;
|
|
11267
12605
|
latestCandle: {
|
|
11268
12606
|
high: string;
|
|
11269
12607
|
low: string;
|
|
@@ -11299,6 +12637,7 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
|
|
|
11299
12637
|
prevDayPx: string | null;
|
|
11300
12638
|
midUsd: string;
|
|
11301
12639
|
};
|
|
12640
|
+
funding: string | null;
|
|
11302
12641
|
latestCandle: {
|
|
11303
12642
|
high: string;
|
|
11304
12643
|
low: string;
|
|
@@ -11556,28 +12895,75 @@ declare const mcpHyperliquidFetchVaultsOutputSchema: z.ZodObject<{
|
|
|
11556
12895
|
tvlUsd: z.ZodNullable<z.ZodString>;
|
|
11557
12896
|
}, "strip", z.ZodTypeAny, {
|
|
11558
12897
|
name: string;
|
|
12898
|
+
tvlUsd: string | null;
|
|
11559
12899
|
vaultAddress: string;
|
|
11560
12900
|
apr: number | null;
|
|
11561
|
-
tvlUsd: string | null;
|
|
11562
12901
|
}, {
|
|
11563
12902
|
name: string;
|
|
12903
|
+
tvlUsd: string | null;
|
|
11564
12904
|
vaultAddress: string;
|
|
11565
12905
|
apr: number | null;
|
|
11566
|
-
tvlUsd: string | null;
|
|
11567
12906
|
}>, "many">;
|
|
11568
12907
|
}, "strip", z.ZodTypeAny, {
|
|
11569
12908
|
vaults: {
|
|
11570
12909
|
name: string;
|
|
12910
|
+
tvlUsd: string | null;
|
|
11571
12911
|
vaultAddress: string;
|
|
11572
12912
|
apr: number | null;
|
|
12913
|
+
}[];
|
|
12914
|
+
}, {
|
|
12915
|
+
vaults: {
|
|
12916
|
+
name: string;
|
|
11573
12917
|
tvlUsd: string | null;
|
|
12918
|
+
vaultAddress: string;
|
|
12919
|
+
apr: number | null;
|
|
11574
12920
|
}[];
|
|
12921
|
+
}>;
|
|
12922
|
+
declare const mcpHyperliquidFetchVaultApysInputSchema: z.ZodObject<{
|
|
12923
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
12924
|
+
} & {
|
|
12925
|
+
executorAddress: z.ZodOptional<z.ZodString>;
|
|
12926
|
+
}, "strip", z.ZodTypeAny, {
|
|
12927
|
+
chainId: number;
|
|
12928
|
+
executorAddress?: string | undefined;
|
|
11575
12929
|
}, {
|
|
12930
|
+
chainId?: number | undefined;
|
|
12931
|
+
executorAddress?: string | undefined;
|
|
12932
|
+
}>;
|
|
12933
|
+
declare const mcpHyperliquidFetchVaultApysOutputSchema: z.ZodObject<{
|
|
12934
|
+
vaults: z.ZodArray<z.ZodObject<{
|
|
12935
|
+
vaultAddress: z.ZodString;
|
|
12936
|
+
name: z.ZodString;
|
|
12937
|
+
apr: z.ZodNullable<z.ZodNumber>;
|
|
12938
|
+
tvlUsd: z.ZodNullable<z.ZodString>;
|
|
12939
|
+
}, "strip", z.ZodTypeAny, {
|
|
12940
|
+
name: string;
|
|
12941
|
+
tvlUsd: string | null;
|
|
12942
|
+
vaultAddress: string;
|
|
12943
|
+
apr: number | null;
|
|
12944
|
+
}, {
|
|
12945
|
+
name: string;
|
|
12946
|
+
tvlUsd: string | null;
|
|
12947
|
+
vaultAddress: string;
|
|
12948
|
+
apr: number | null;
|
|
12949
|
+
}>, "many">;
|
|
12950
|
+
} & {
|
|
12951
|
+
notes: z.ZodString;
|
|
12952
|
+
}, "strip", z.ZodTypeAny, {
|
|
12953
|
+
notes: string;
|
|
11576
12954
|
vaults: {
|
|
11577
12955
|
name: string;
|
|
12956
|
+
tvlUsd: string | null;
|
|
11578
12957
|
vaultAddress: string;
|
|
11579
12958
|
apr: number | null;
|
|
12959
|
+
}[];
|
|
12960
|
+
}, {
|
|
12961
|
+
notes: string;
|
|
12962
|
+
vaults: {
|
|
12963
|
+
name: string;
|
|
11580
12964
|
tvlUsd: string | null;
|
|
12965
|
+
vaultAddress: string;
|
|
12966
|
+
apr: number | null;
|
|
11581
12967
|
}[];
|
|
11582
12968
|
}>;
|
|
11583
12969
|
declare const mcpHyperliquidFetchUserVaultEquitiesInputSchema: z.ZodObject<{
|
|
@@ -14134,4 +15520,4 @@ declare function getAgentCatalog(): {
|
|
|
14134
15520
|
};
|
|
14135
15521
|
};
|
|
14136
15522
|
|
|
14137
|
-
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 McpMorphoFetchMidnightOffersInput, type McpMorphoFetchMidnightOffersOutput, 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, mcpAerodromeBuildAddLiquidityMultisignInputSchema, mcpAerodromeBuildClBurnMultisignInputSchema, mcpAerodromeBuildClCollectFeesMultisignInputSchema, mcpAerodromeBuildClDecreaseMultisignInputSchema, mcpAerodromeBuildClIncreaseMultisignInputSchema, mcpAerodromeBuildClMintMultisignInputSchema, mcpAerodromeBuildClaimEmissionsMultisignInputSchema, mcpAerodromeBuildClaimFeesMultisignInputSchema, mcpAerodromeBuildGaugeStakeMultisignInputSchema, mcpAerodromeBuildGaugeUnstakeMultisignInputSchema, mcpAerodromeBuildRemoveLiquidityMultisignInputSchema, mcpAerodromeBuildSwapMultisignInputSchema, mcpAerodromeDiscoverPoolsInputSchema, mcpAerodromeDiscoverPoolsOutputSchema, mcpAerodromeFetchPoolsInputSchema, mcpAerodromeFetchPoolsOutputSchema, mcpAerodromeFetchPositionsInputSchema, mcpAerodromeFetchPositionsOutputSchema, mcpAerodromeQuoteAddLiquidityInputSchema, mcpAerodromeQuoteAddLiquidityOutputSchema, mcpAerodromeQuoteClDepositInputSchema, mcpAerodromeQuoteClDepositOutputSchema, mcpAerodromeQuoteInputSchema, mcpAerodromeQuoteOutputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCompoundV3BulkerInputSchema, mcpCompoundV3ClaimRewardsInputSchema, mcpCompoundV3FetchAccountInputSchema, mcpCompoundV3FetchAccountOutputSchema, mcpCompoundV3FetchMarketInputSchema, mcpCompoundV3FetchMarketOutputSchema, mcpCompoundV3FetchMarketsInputSchema, mcpCompoundV3FetchMarketsOutputSchema, mcpCompoundV3RepayInputSchema, mcpCompoundV3SupplyInputSchema, mcpCompoundV3WithdrawInputSchema, mcpContinuumDaoAttachInputSchema, mcpContinuumDaoCastVoteBravoInputSchema, mcpContinuumDaoCastVoteDeltaInputSchema, mcpContinuumDaoCreateLockInputSchema, mcpContinuumDaoDelegateInputSchema, mcpContinuumDaoExplainProposalInputSchema, mcpContinuumDaoExplainProposalOutputSchema, mcpContinuumDaoFetchDelegatesInputSchema, mcpContinuumDaoFetchDelegatesOutputSchema, mcpContinuumDaoFetchLiveProposalsInputSchema, mcpContinuumDaoFetchLiveProposalsOutputSchema, mcpContinuumDaoFetchProposalInputSchema, mcpContinuumDaoFetchProposalOutputSchema, mcpContinuumDaoFetchProposalStateInputSchema, mcpContinuumDaoFetchProposalStateOutputSchema, mcpContinuumDaoFetchProposalsInputSchema, mcpContinuumDaoFetchProposalsOutputSchema, mcpContinuumDaoFetchVotingPowerInputSchema, mcpContinuumDaoFetchVotingPowerOutputSchema, mcpContinuumDaoForumCreateIdeaInputSchema, mcpContinuumDaoForumCreateIdeaOutputSchema, mcpContinuumDaoForumCreateTopicInputSchema, mcpContinuumDaoForumCreateTopicOutputSchema, mcpContinuumDaoForumDeleteInputSchema, mcpContinuumDaoForumDeleteOutputSchema, mcpContinuumDaoForumFetchPostInputSchema, mcpContinuumDaoForumFetchPostOutputSchema, mcpContinuumDaoForumFetchThreadInputSchema, mcpContinuumDaoForumFetchThreadOutputSchema, mcpContinuumDaoForumMarkReadInputSchema, mcpContinuumDaoForumMarkReadOutputSchema, mcpContinuumDaoForumMarkUnreadInputSchema, mcpContinuumDaoForumMarkUnreadOutputSchema, mcpContinuumDaoForumMeInputSchema, mcpContinuumDaoForumMeOutputSchema, mcpContinuumDaoForumReactInputSchema, mcpContinuumDaoForumReactOutputSchema, mcpContinuumDaoForumRecentInputSchema, mcpContinuumDaoForumRecentOutputSchema, mcpContinuumDaoForumReplyCountInputSchema, mcpContinuumDaoForumReplyCountOutputSchema, mcpContinuumDaoForumReplyInputSchema, mcpContinuumDaoForumReplyOutputSchema, mcpContinuumDaoForumResolveInputSchema, mcpContinuumDaoForumResolveOutputSchema, mcpContinuumDaoForumSearchInputSchema, mcpContinuumDaoForumSearchOutputSchema, mcpContinuumDaoForumSectionsInputSchema, mcpContinuumDaoForumSectionsOutputSchema, mcpContinuumDaoForumSignInEligibleInputSchema, mcpContinuumDaoForumSignInEligibleOutputSchema, mcpContinuumDaoForumSignInInputSchema, mcpContinuumDaoForumSignOutInputSchema, mcpContinuumDaoForumSignOutOutputSchema, mcpContinuumDaoForumUnreadInputSchema, mcpContinuumDaoForumUnreadOutputSchema, mcpContinuumDaoForumUserPostIdsInputSchema, mcpContinuumDaoForumUserPostIdsOutputSchema, mcpContinuumDaoIncreaseAmountInputSchema, mcpContinuumDaoIncreaseUnlockTimeInputSchema, mcpContinuumDaoMergeInputSchema, mcpContinuumDaoProposalIdInputSchema, mcpContinuumDaoProposeBravoInputSchema, mcpContinuumDaoProposeDeltaInputSchema, mcpContinuumDaoRegisterProposalInputSchema, mcpContinuumDaoRegisterProposalOutputSchema, mcpContinuumDaoRequestDetachInputSchema, mcpContinuumDaoSplitInputSchema, mcpContinuumDaoTokenIdInputSchema, mcpContinuumDaoTransferInputSchema, mcpContinuumDaoUndelegateInputSchema, 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, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightCancelLendOfferInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightLendOfferInputSchema, 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 };
|
|
15523
|
+
export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpAaveV4FetchMarketInput, type McpAaveV4FetchMarketOutput, type McpAaveV4FetchMarketsInput, type McpAaveV4FetchMarketsOutput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaFetchSusdeApyInput, type McpEthenaFetchSusdeApyOutput, type McpEthenaStakeInput, type McpEulerV2FetchEarnVaultsInput, type McpEulerV2FetchEarnVaultsOutput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoFetchStethAprInput, type McpLidoFetchStethAprOutput, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMapleFetchMarketInput, type McpMapleFetchMarketOutput, type McpMapleFetchMarketsInput, type McpMapleFetchMarketsOutput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoFetchMidnightBooksInput, type McpMorphoFetchMidnightBooksOutput, type McpMorphoFetchMidnightOffersInput, type McpMorphoFetchMidnightOffersOutput, type McpMorphoFetchMidnightPositionsInput, type McpMorphoFetchMidnightPositionsOutput, type McpMorphoFetchMidnightQuoteInput, type McpMorphoFetchMidnightQuoteOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyFetchSusdsRateInput, type McpSkyFetchSusdsRateOutput, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildAllowlistFinalizeMultisignInput, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CheckPermissionsInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4KycApplyLinkInput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4FetchMarketInputSchema, mcpAaveV4FetchMarketOutputSchema, mcpAaveV4FetchMarketsInputSchema, mcpAaveV4FetchMarketsOutputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpAerodromeBuildAddLiquidityMultisignInputSchema, mcpAerodromeBuildClBurnMultisignInputSchema, mcpAerodromeBuildClCollectFeesMultisignInputSchema, mcpAerodromeBuildClDecreaseMultisignInputSchema, mcpAerodromeBuildClIncreaseMultisignInputSchema, mcpAerodromeBuildClMintMultisignInputSchema, mcpAerodromeBuildClaimEmissionsMultisignInputSchema, mcpAerodromeBuildClaimFeesMultisignInputSchema, mcpAerodromeBuildGaugeStakeMultisignInputSchema, mcpAerodromeBuildGaugeUnstakeMultisignInputSchema, mcpAerodromeBuildRemoveLiquidityMultisignInputSchema, mcpAerodromeBuildSwapMultisignInputSchema, mcpAerodromeDiscoverPoolsInputSchema, mcpAerodromeDiscoverPoolsOutputSchema, mcpAerodromeFetchLpYieldsInputSchema, mcpAerodromeFetchLpYieldsOutputSchema, mcpAerodromeFetchPoolsInputSchema, mcpAerodromeFetchPoolsOutputSchema, mcpAerodromeFetchPositionsInputSchema, mcpAerodromeFetchPositionsOutputSchema, mcpAerodromeFetchStockLpYieldsInputSchema, mcpAerodromeFetchStockLpYieldsOutputSchema, mcpAerodromeQuoteAddLiquidityInputSchema, mcpAerodromeQuoteAddLiquidityOutputSchema, mcpAerodromeQuoteClDepositInputSchema, mcpAerodromeQuoteClDepositOutputSchema, mcpAerodromeQuoteInputSchema, mcpAerodromeQuoteOutputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCompoundV3BulkerInputSchema, mcpCompoundV3ClaimRewardsInputSchema, mcpCompoundV3FetchAccountInputSchema, mcpCompoundV3FetchAccountOutputSchema, mcpCompoundV3FetchMarketInputSchema, mcpCompoundV3FetchMarketOutputSchema, mcpCompoundV3FetchMarketsInputSchema, mcpCompoundV3FetchMarketsOutputSchema, mcpCompoundV3RepayInputSchema, mcpCompoundV3SupplyInputSchema, mcpCompoundV3WithdrawInputSchema, mcpContinuumDaoAttachInputSchema, mcpContinuumDaoCastVoteBravoInputSchema, mcpContinuumDaoCastVoteDeltaInputSchema, mcpContinuumDaoCreateLockInputSchema, mcpContinuumDaoDelegateInputSchema, mcpContinuumDaoExplainProposalInputSchema, mcpContinuumDaoExplainProposalOutputSchema, mcpContinuumDaoFetchDelegatesInputSchema, mcpContinuumDaoFetchDelegatesOutputSchema, mcpContinuumDaoFetchLiveProposalsInputSchema, mcpContinuumDaoFetchLiveProposalsOutputSchema, mcpContinuumDaoFetchProposalInputSchema, mcpContinuumDaoFetchProposalOutputSchema, mcpContinuumDaoFetchProposalStateInputSchema, mcpContinuumDaoFetchProposalStateOutputSchema, mcpContinuumDaoFetchProposalsInputSchema, mcpContinuumDaoFetchProposalsOutputSchema, mcpContinuumDaoFetchVotingPowerInputSchema, mcpContinuumDaoFetchVotingPowerOutputSchema, mcpContinuumDaoForumCreateIdeaInputSchema, mcpContinuumDaoForumCreateIdeaOutputSchema, mcpContinuumDaoForumCreateTopicInputSchema, mcpContinuumDaoForumCreateTopicOutputSchema, mcpContinuumDaoForumDeleteInputSchema, mcpContinuumDaoForumDeleteOutputSchema, mcpContinuumDaoForumFetchPostInputSchema, mcpContinuumDaoForumFetchPostOutputSchema, mcpContinuumDaoForumFetchThreadInputSchema, mcpContinuumDaoForumFetchThreadOutputSchema, mcpContinuumDaoForumMarkReadInputSchema, mcpContinuumDaoForumMarkReadOutputSchema, mcpContinuumDaoForumMarkUnreadInputSchema, mcpContinuumDaoForumMarkUnreadOutputSchema, mcpContinuumDaoForumMeInputSchema, mcpContinuumDaoForumMeOutputSchema, mcpContinuumDaoForumReactInputSchema, mcpContinuumDaoForumReactOutputSchema, mcpContinuumDaoForumRecentInputSchema, mcpContinuumDaoForumRecentOutputSchema, mcpContinuumDaoForumReplyCountInputSchema, mcpContinuumDaoForumReplyCountOutputSchema, mcpContinuumDaoForumReplyInputSchema, mcpContinuumDaoForumReplyOutputSchema, mcpContinuumDaoForumResolveInputSchema, mcpContinuumDaoForumResolveOutputSchema, mcpContinuumDaoForumSearchInputSchema, mcpContinuumDaoForumSearchOutputSchema, mcpContinuumDaoForumSectionsInputSchema, mcpContinuumDaoForumSectionsOutputSchema, mcpContinuumDaoForumSignInEligibleInputSchema, mcpContinuumDaoForumSignInEligibleOutputSchema, mcpContinuumDaoForumSignInInputSchema, mcpContinuumDaoForumSignOutInputSchema, mcpContinuumDaoForumSignOutOutputSchema, mcpContinuumDaoForumUnreadInputSchema, mcpContinuumDaoForumUnreadOutputSchema, mcpContinuumDaoForumUserPostIdsInputSchema, mcpContinuumDaoForumUserPostIdsOutputSchema, mcpContinuumDaoIncreaseAmountInputSchema, mcpContinuumDaoIncreaseUnlockTimeInputSchema, mcpContinuumDaoMergeInputSchema, mcpContinuumDaoProposalIdInputSchema, mcpContinuumDaoProposeBravoInputSchema, mcpContinuumDaoProposeDeltaInputSchema, mcpContinuumDaoRegisterProposalInputSchema, mcpContinuumDaoRegisterProposalOutputSchema, mcpContinuumDaoRequestDetachInputSchema, mcpContinuumDaoSplitInputSchema, mcpContinuumDaoTokenIdInputSchema, mcpContinuumDaoTransferInputSchema, mcpContinuumDaoUndelegateInputSchema, mcpCurveDaoBuildAddLiquidityMultisignInputSchema, mcpCurveDaoBuildGaugeDepositMultisignInputSchema, mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoFetchImportantPoolsInputSchema, mcpCurveDaoFetchImportantPoolsOutputSchema, mcpCurveDaoFetchLpYieldsInputSchema, mcpCurveDaoFetchLpYieldsOutputSchema, mcpCurveDaoQuoteAddLiquidityInputSchema, mcpCurveDaoQuoteAddLiquidityOutputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpCurveDaoQuoteRemoveLiquidityInputSchema, mcpCurveDaoQuoteRemoveLiquidityOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaFetchSusdeApyInputSchema, mcpEthenaFetchSusdeApyOutputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchEarnVaultsInputSchema, mcpEulerV2FetchEarnVaultsOutputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchStockMarketsInputSchema, mcpHyperliquidFetchStockMarketsOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultApysInputSchema, mcpHyperliquidFetchVaultApysOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoFetchStethAprInputSchema, mcpLidoFetchStethAprOutputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleFetchMarketInputSchema, mcpMapleFetchMarketOutputSchema, mcpMapleFetchMarketsInputSchema, mcpMapleFetchMarketsOutputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightCancelLendOfferInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightLendOfferInputSchema, mcpMorphoMidnightRepayInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyFetchSusdsRateInputSchema, mcpSkyFetchSusdsRateOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CheckPermissionsInputSchema, mcpUniswapV4CheckPermissionsOutputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4KycApplyLinkInputSchema, mcpUniswapV4KycApplyLinkOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
|