Skip to main content

Information about a token inside a specific blockchain

address
string
required

The contract address of the token on its host network.

  • ERC-20 Tokens: The 20-byte hex contract address.
  • Native Assets (e.g., ETH, MATIC): Represented by the "Zero Address" (0x000...000).
Example:

"0x0000000000000000000000000000000000000000"

decimals
number
required

The number of decimal places used to represent the smallest fractional unit of the token (e.g., 18 for ETH, 6 for USDC).

Example:

18

name
string
required

The full human-readable name of the asset (e.g., "Ethereum", "Wrapped Bitcoin").

Example:

"Ether"

symbol
string
required

The ticker symbol of the token (e.g., "ETH", "WBTC"). Note: Symbols are not guaranteed to be unique across all tokens.

Example:

"ETH"