@iqai/mcp-fraxlend
Version:
Mcp server for Fraxlend access
28 lines (27 loc) • 701 B
TypeScript
import { z } from "zod";
declare const removeCollateralParamsSchema: z.ZodObject<{
pairAddress: z.ZodString;
amount: z.ZodString;
}, "strip", z.ZodTypeAny, {
amount: string;
pairAddress: string;
}, {
amount: string;
pairAddress: string;
}>;
export declare const removeCollateralTool: {
name: string;
description: string;
parameters: z.ZodObject<{
pairAddress: z.ZodString;
amount: z.ZodString;
}, "strip", z.ZodTypeAny, {
amount: string;
pairAddress: string;
}, {
amount: string;
pairAddress: string;
}>;
execute: (args: z.infer<typeof removeCollateralParamsSchema>) => Promise<string>;
};
export {};