@iqai/mcp-bamm
Version:
MCP server for bamm (borrow automated market maker)
16 lines (15 loc) • 416 B
TypeScript
import type { Address } from "viem";
import type { WalletService } from "./wallet.js";
export interface BorrowParams {
bammAddress: Address;
borrowToken?: Address;
borrowTokenSymbol?: string;
amount: string;
}
export declare class BorrowService {
private walletService;
constructor(walletService: WalletService);
execute(params: BorrowParams): Promise<{
txHash: string;
}>;
}