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

    Interface GetCompressedTokenBalancesByOwnerRequest

    Request parameters for getCompressedTokenBalancesByOwner (V1 and V2).

    interface GetCompressedTokenBalancesByOwnerRequest {
        cursor?: string | null;
        limit?: number | null;
        mint?: string | null;
        owner: string;
    }
    Index

    Properties

    cursor?: string | null

    Base58-encoded pagination cursor from a previous response's cursor field; omit to start from the beginning.

    limit?: number | null

    Maximum number of token balances to return per page.

    mint?: string | null

    Base58-encoded public key of the token mint to filter by; omit to return balances for all mints.

    owner: string

    Base58-encoded public key of the wallet to retrieve compressed token balances for.