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) • 383 B
TypeScript
import { Pair } from '../models/Pair.js';
/**
* Fetches liquidity pools for a given token address.
* @param chainId - The blockchain identifier (e.g., "solana").
* @param tokenAddress - The token address.
* @returns A promise that resolves to an array of Pair instances.
*/
export declare const getTokenPools: (chainId: string, tokenAddress: string) => Promise<Pair[]>;