python-proxy-scraper-client
Version:
A TypeScript client for interacting with a Python proxy scraper service
9 lines (8 loc) • 510 B
TypeScript
import { BaseClient } from '../../shared/base-client';
import { InsightXBubblemapResponse, InsightXTimestampsResponse } from './types';
export declare class InsightXClient extends BaseClient {
constructor();
getBubblemap(chainId: string, address: string): Promise<InsightXBubblemapResponse>;
getBubblemapByTimestamp(chainId: string, address: string, timestamp: string): Promise<InsightXBubblemapResponse>;
getTimestamps(chainId: string, address: string): Promise<InsightXTimestampsResponse>;
}