dexscreener-sdk
Version:
A TypeScript wrapper for the DEX Screener API, providing easy access to token profiles, boosts, orders, pairs, and more.
12 lines (11 loc) • 455 B
TypeScript
import { TokenBoost } from '../models/TokenBoost.js';
/**
* Fetches the latest token boosts.
* @returns A promise that resolves to an array of TokenBoost instances.
*/
export declare const getLatestTokenBoosts: () => Promise<TokenBoost[]>;
/**
* Fetches the tokens with the most active boosts.
* @returns A promise that resolves to an array of TokenBoost instances.
*/
export declare const getTopTokenBoosts: () => Promise<TokenBoost[]>;