UNPKG

@iqai/mcp-fraxlend

Version:
19 lines (18 loc) 386 B
import type { Chain } from "viem"; export interface FraxLendActionParams { walletPrivateKey?: string; chain?: Chain; } export type Tool = { (params: { amount: string; asset: string; model: string; } | { model: string; }): Promise<string>; description: string; parameters: string[]; name: string; similes: string[]; };