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

    Interface GetCompressedAccountsByOwnerRequest

    Request parameters for getCompressedAccountsByOwner.

    interface GetCompressedAccountsByOwnerRequest {
        cursor?: string | null;
        dataSlice?: { length: number; offset: number } | null;
        filters?: readonly { memcmp: { bytes: string; offset: number } }[];
        limit?: number | 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.

    dataSlice?: { length: number; offset: number } | null

    Return only a byte slice of each account's data instead of the full payload.

    filters?: readonly { memcmp: { bytes: string; offset: number } }[]

    Memory-comparison filters applied to each account's data (similar to getProgramAccounts memcmp filters).

    limit?: number | null

    Maximum number of accounts to return per page.

    owner: string

    Base58-encoded public key of the owner wallet whose accounts to retrieve.