Skip to main content

TypeScript shape

interface ExplorerTokenData {
  id: string;
  blueCheckmark: boolean | null;
  description: string | null;
  divisor: string | null;
  tokenPriceUSD: string | null;
  tokenType: string | null;
}
id
String!
Token identifier (tokenAddress:networkId).
blueCheckmark
Boolean
Whether the explorer flags this token as verified.
description
String
Token description text.
divisor
String
Decimal divisor for the token’s smallest unit.
tokenPriceUSD
String
Token price (USD) reported by the explorer.
tokenType
String
Token type label (e.g. ERC-20, SPL).