UNPKG

dexscreener-sdk

Version:

A TypeScript wrapper for the DEX Screener API, providing easy access to token profiles, boosts, orders, pairs, and more.

7 lines (6 loc) 287 B
import { TokenProfile } from '../models/TokenProfile.js'; /** * Fetches the latest token profiles from the DEX Screener API. * @returns A promise that resolves to an array of TokenProfile instances. */ export declare const getLatestTokenProfiles: () => Promise<TokenProfile[]>;