@iqai/mcp-odos
Version:
Mcp server for Odos access
9 lines (8 loc) • 378 B
TypeScript
import type { QuoteResponse } from "../types.js";
import type { WalletService } from "./wallet.js";
export declare class GetQuoteActionService {
private readonly walletService;
constructor(walletService: WalletService);
execute(fromToken: string, toToken: string, chainId: number, amount: string): Promise<QuoteResponse>;
format(quote: QuoteResponse): string;
}