Helius SDK - v2.2.2
    Preparing search index...

    Interface TokenInfo

    SPL token information attached to an asset.

    interface TokenInfo {
        associated_token_address?: string;
        balance?: number;
        decimals?: number;
        freeze_authority?: string;
        mint_authority?: string;
        price_info?: PriceInfo;
        supply?: number;
        symbol?: string;
        token_program?: string;
    }
    Index

    Properties

    associated_token_address?: string

    Associated token account address.

    balance?: number

    Token balance in the smallest unit.

    decimals?: number

    Number of decimal places.

    freeze_authority?: string

    Freeze authority address.

    mint_authority?: string

    Mint authority address.

    price_info?: PriceInfo

    USD price information from Jupiter.

    supply?: number

    Total supply of the token.

    symbol?: string

    Token ticker symbol.

    token_program?: string

    Token program address (e.g. SPL Token or Token-2022).