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