Documentation
    Preparing search index...

    Token information for cross-chain operations

    This type defines the properties of a token that can be bridged between different blockchain networks.

    type Token = {
        address: string;
        category: string[];
        chainId: number;
        chainName: string;
        decimals: number;
        isSuggest: boolean;
        isVerify: boolean;
        logoURI: string;
        name: string;
        symbol: string;
    }
    Index

    Properties

    address: string

    Token contract address

    category: string[]

    Token categories/tags

    chainId: number

    Chain ID where this token exists

    chainName: string

    Name of the chain where this token exists

    decimals: number

    Token decimal places

    isSuggest: boolean

    Whether this token is suggested for users

    isVerify: boolean

    Whether this token is verified

    logoURI: string

    URL to token logo

    name: string

    Human-readable token name

    symbol: string

    Token symbol/ticker