General information about a token. Includes the type, the network, and other identifying information.

interface Token {
    contractAddress: string;
    name?: string;
    network: ListEvmTokenBalancesNetwork;
    symbol?: string;
}

Properties

contractAddress: string

The contract address of the token. For Ether, the contract address is 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE per EIP-7528. For ERC-20 tokens, this is the contract address where the token is deployed.

^0x[0-9a-fA-F]{40}$

name?: string

The name of this token (ex: "Solana", "Ether", "USD Coin"). The token name is not unique. It is possible for two different tokens to have the same name. For native gas tokens, this name is defined via convention. As an example, for ETH on Ethereum mainnet, the name is "Ether". For ERC-20 tokens, this name is defined via configuration. name will be the string returned by function name() public view returns (string) on the underlying token contract. Not all tokens have a name, as this function is optional in the ERC-20 specification. This field will only be populated when the token's underlying ERC-20 contract has a name() function. Further, this endpoint will only populate this value for a small subset of whitelisted ERC-20 tokens at this time. We intend to improve coverage in the future.

symbol?: string

The symbol of this token (ex: SOL, ETH, USDC). The token symbol is not unique. It is possible for two different tokens to have the same symbol. For native gas tokens, this symbol is defined via convention. As an example, for ETH on Ethereum mainnet, the symbol is "ETH". For ERC-20 tokens, this symbol is defined via configuration. symbol will be the string returned by function symbol() public view returns (string) on the underlying token contract. Not all tokens have a symbol, as this function is optional in the ERC-20 specification. This field will only be populated when the token's underlying ERC-20 contract has a symbol() function. Further, this endpoint will only populate this value for a small subset of whitelisted ERC-20 tokens at this time. We intend to improve coverage in the future.