@iqai/mcp-fraxlend
Version:
Mcp server for Fraxlend access
14 lines (13 loc) • 377 B
TypeScript
import { type Address } from "viem";
import type { WalletService } from "./wallet.js";
export declare class WithdrawService {
private walletService;
constructor(walletService: WalletService);
execute({ pairAddress, amount, }: {
pairAddress: Address;
amount: bigint;
}): Promise<{
txHash: `0x${string}`;
amount: bigint;
}>;
}