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

    Interface GetCompressedTokenAccountsByOwnerRequest

    Request parameters for getCompressedTokenAccountsByOwner.

    interface GetCompressedTokenAccountsByOwnerRequest {
        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 accounts to return per page.

    mint?: string | null

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

    owner: string

    Base58-encoded public key of the wallet that owns the compressed token accounts.