UNPKG

@iqai/mcp-fraxlend

Version:
14 lines (13 loc) 377 B
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; }>; }