python-proxy-scraper-client
Version:
A TypeScript client for interacting with a Python proxy scraper service
42 lines (41 loc) • 945 B
TypeScript
export interface BubbleMapsGetBubbleMapsResponse {
chain: string;
dt_update: string;
full_name: string;
id: string;
is_X721: boolean;
links: BubbleMapsLink[];
metadata: BubbleMapsMetadata;
nodes: BubbleMapsNode[];
source_id: number;
symbol: string;
token_address: string;
token_links: BubbleMapsTokenLink[];
top_500: boolean;
version: number;
}
export interface BubbleMapsLink {
backward: number;
forward: number;
source: number;
target: number;
}
export interface BubbleMapsMetadata {
max_amount: number;
min_amount: number;
}
export interface BubbleMapsNode {
address: string;
amount: number;
is_contract: boolean;
percentage: number;
token_account: string;
transaction_count: number;
}
export interface BubbleMapsTokenLink {
address: string;
decimals?: number;
links: BubbleMapsLink[];
name: string;
symbol: string;
}