UNPKG

python-proxy-scraper-client

Version:

A TypeScript client for interacting with a Python proxy scraper service

7 lines (6 loc) 268 B
import { BaseClient } from '../../shared/base-client'; import { RugCheckTokenReport } from './types'; export declare class RugCheckClient extends BaseClient { constructor(baseUrl?: string); getTokenReport(tokenAddress: string): Promise<RugCheckTokenReport>; }