UNPKG

blockchain-api

Version:

API utilities for interacting with the Exatechl2 blockchain

18 lines (17 loc) 287 B
/** * * @returns */ export declare function getTokenPrice(): Promise<{ usd: number; bnb: number; changePercent: number; }>; /** * @returns */ export declare function getFormattedTokenPrice(): Promise<{ price: string; change: string; isPositive: boolean; }>;