UNPKG

@iqai/mcp-bamm

Version:

MCP server for bamm (borrow automated market maker)

16 lines (15 loc) 413 B
import type { Address } from "viem"; import type { WalletService } from "./wallet.js"; export interface RepayParams { bammAddress: Address; borrowToken?: Address; borrowTokenSymbol?: string; amount: string; } export declare class RepayService { private walletService; constructor(walletService: WalletService); execute(params: RepayParams): Promise<{ txHash: string; }>; }