Interface SubscriptionConfig

Configuration options for WebSocket subscriptions.

SteveTheHead

0xArmorer

2.0.0

interface SubscriptionConfig {
    commitment?: Commitment;
    encoding?:
        | "base58"
        | "base64"
        | "base64+zstd"
        | "jsonParsed";
    filters?: any[];
    maxSlotsToWait?: number;
}

Properties

commitment?: Commitment
encoding?:
    | "base58"
    | "base64"
    | "base64+zstd"
    | "jsonParsed"
filters?: any[]
maxSlotsToWait?: number