UNPKG

@iqai/mcp-fraxlend

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