python-proxy-scraper-client
Version:
A TypeScript client for interacting with a Python proxy scraper service
12 lines (11 loc) • 467 B
TypeScript
import { BaseClient, BaseClientConfig } from '../../shared/base-client';
import { PumpSwapPoolResponse } from './types';
export declare class PumpSwapClient extends BaseClient {
constructor(config?: BaseClientConfig);
/**
* Get pump pool data for a specific token
* @param baseToken The base token address to get pool data for
* @returns Pump pool data for the token
*/
getPumpPool(baseToken: string): Promise<PumpSwapPoolResponse>;
}