@solana/web3.js
    Preparing search index...

    Type Alias GetProgramAccountsConfig

    Configuration object for getProgramAccounts requests

    type GetProgramAccountsConfig = {
        commitment?: Commitment;
        dataSlice?: DataSlice;
        encoding?: "base64";
        filters?: GetProgramAccountsFilter[];
        minContextSlot?: number;
        withContext?: boolean;
    }
    Index
    commitment?: Commitment

    Optional commitment level

    dataSlice?: DataSlice

    Optional data slice to limit the returned account data

    encoding?: "base64"

    Optional encoding for account data (default base64) To use "jsonParsed" encoding, please refer to getParsedProgramAccounts in connection.ts

    Optional array of filters to apply to accounts

    minContextSlot?: number

    The minimum slot that the request can be evaluated at

    withContext?: boolean

    wrap the result in an RpcResponse JSON object