Token

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

Properties

Token

contract_address: string

The address of token contract

Token

root_contract_address: null | string

The address of root token contract

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