dexscreener-sdk
Version:
A TypeScript wrapper for the DEX Screener API, providing easy access to token profiles, boosts, orders, pairs, and more.
9 lines (8 loc) • 374 B
TypeScript
import { Order } from '../models/Order.js';
/**
* Fetches orders for a given token.
* @param chainId - The blockchain identifier (e.g., "solana").
* @param tokenAddress - The token address.
* @returns A promise that resolves to an array of Order instances.
*/
export declare const getOrdersForToken: (chainId: string, tokenAddress: string) => Promise<Order[]>;