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

    Interface TokenAccounts

    A token account entry returned by getTokenAccounts.

    interface TokenAccounts {
        address?: string;
        amount?: number;
        burnt?: boolean;
        delegated_amount?: number;
        frozen?: boolean;
        mint?: string;
        owner?: string;
        token_extensions: any;
    }
    Index

    Properties

    address?: string

    The address of the token account.

    amount?: number

    Number of tokens in the account.

    burnt?: boolean

    Whether the token account has been burnt.

    delegated_amount?: number

    Number of delegated tokens in the account.

    frozen?: boolean

    Whether the token account is frozen.

    mint?: string

    The address of the mint account.

    owner?: string

    The address of the token account owner.

    token_extensions: any