UNPKG

@iqai/mcp-bamm

Version:

MCP server for bamm (borrow automated market maker)

19 lines (18 loc) 532 B
import type { WalletService } from "./wallet.js"; export interface PoolStats { poolAddress: string; bammAddress: string; createdAtTimestamp: string; token0Symbol: string; token0AmountLocked: number; token1Symbol: string; token1AmountLocked: number; tvl: number; } export declare class BammPoolsStatsService { private walletService; private endpoint; constructor(walletService: WalletService); getPoolsStats(): Promise<PoolStats[]>; formatPoolsStats(pools: PoolStats[]): string; }