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

    Type Alias GetProgramAccountsV2Config

    Configuration for getProgramAccountsV2 — paginated program account queries.

    type GetProgramAccountsV2Config = {
        changedSinceSlot?: number;
        commitment?: Commitment;
        dataSlice?: { length: number; offset: number };
        encoding?: Encoding;
        filters?: ReadonlyArray<
            { dataSize: number }
            | { memcmp: { bytes: string; offset: number } },
        >;
        limit?: number;
        minContextSlot?: number;
        paginationKey?: string | null;
        withContext?: boolean;
    }
    Index

    Properties

    changedSinceSlot?: number

    Only return accounts modified after this slot.

    commitment?: Commitment
    dataSlice?: { length: number; offset: number }

    Return only a slice of each account's data.

    encoding?: Encoding
    filters?: ReadonlyArray<
        { dataSize: number }
        | { memcmp: { bytes: string; offset: number } },
    >

    Account filters (dataSize or memcmp).

    limit?: number

    Max results per page (up to 10,000).

    minContextSlot?: number
    paginationKey?: string | null

    Base-58 pagination cursor. null when no more pages.

    withContext?: boolean

    Wrap the result in an RPC context object with slot info.