Skip to main content
The asset, assetDeployments, and organization fields are powered by The Grid and are only populated for established, verified tokens.

Returns

token
EnhancedToken!
The requested token with enriched market and metadata. See EnhancedToken.

Arguments

input
TokenInput!
required
Token identifier (network + address). See TokenInput.

Example

query Token {
  token(input: { 
    networkId: 1, 
    address: "0xdac17f958d2ee523a2206206994597c13d831ec7" 
  }) {
    id
    address
    symbol
    name
    decimals
    networkId
    top10HoldersPercent
  }
}

Playground