UNPKG

@iqai/mcp-odos

Version:
9 lines (8 loc) 378 B
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; }