Token

interface Token {
    chain: blockchainData.Types.Chain;
    contract_address: string;
    root_contract_address: null | string;
    root_chain_id?: null | string;
    bridge_used?: null | string;
    symbol: null | string;
    decimals: null | number;
    image_url: null | string;
    name: null | string;
    verification_status: AssetVerificationStatus;
    updated_at: string;
    is_canonical: boolean;
}

Properties

Token

contract_address: string

The address of token contract

Token

root_contract_address: null | string

The address of root token contract

Token

root_chain_id?: null | string

The id of the root chain for a bridged token

Token

bridge_used?: null | string

The name of the bridge, for bridged tokens only

Token

symbol: null | string

The symbol of token

Token

decimals: null | number

The decimals of token

Token

image_url: null | string

The image url of token

Token

name: null | string

The name of token

Token

verification_status: AssetVerificationStatus

Token

updated_at: string

When the collection was last updated

Token

is_canonical: boolean

Indicates whether the token is canonical or not

Token