dexscreener-sdk
Version:
A TypeScript wrapper for the DEX Screener API, providing easy access to token profiles, boosts, orders, pairs, and more.
14 lines (13 loc) • 470 B
JavaScript
/**
* Main entry point for the DEX Screener API client
* Exports all API endpoints and models for external consumption
*/
// Export API modules and models for easy consumption.
export * from './api/tokenProfiles.js';
export * from './api/tokenBoosts.js';
export * from './api/orders.js';
export * from './api/pairs.js';
export * from './api/tokenPairs.js';
export * from './api/tokens.js';
export * from './models/index.js';
export * from './config.js';