python-proxy-scraper-client
Version:
A TypeScript client for interacting with a Python proxy scraper service
14 lines (13 loc) • 667 B
TypeScript
import { BaseClient, BaseClientConfig } from '../../shared/base-client';
import { BubbleMapsGetBubbleMapsResponse } from './types';
export declare class BubbleMapsClient extends BaseClient {
constructor(config?: BaseClientConfig);
/**
* Get bubble graph data for a specific token
* @param token The token address to get graph data for
* @param chain The blockchain network (default: sol)
* @param dexscreener Whether to include dexscreener data (default: true)
* @returns Bubble graph data for the token
*/
getBubbleMapsGraph(token: string, chain?: string, dexscreener?: boolean): Promise<BubbleMapsGetBubbleMapsResponse>;
}