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

    Interface GetTokenAccountsResponse

    Response from getTokenAccounts.

    interface GetTokenAccountsResponse {
        cursor?: string;
        last_indexed_slot?: number;
        limit?: number;
        page?: number;
        token_accounts?: TokenAccounts[];
        total?: number;
    }
    Index

    Properties

    cursor?: string

    The cursor used for pagination.

    last_indexed_slot?: number

    All on-chain data up to and including this slot is guaranteed to have been indexed.

    limit?: number

    The maximum number of results requested.

    page?: number

    The current page of results.

    token_accounts?: TokenAccounts[]

    An array of matching token accounts.

    total?: number

    The number of results found for the request.