interface SolanaStreamClientOptions {
    chain: Solana;
    cluster?: ICluster;
    clusterUrl: string;
    commitment?: Commitment | ConnectionConfig;
    programId?: string;
    sendRate?: number;
    sendScheduler?:
        | PQueue<PriorityQueue, QueueAddOptions>
        | SolanaTransactionSchedulingOptions;
    sendThrottler?: PQueue;
}

Properties

chain: Solana
cluster?: ICluster
clusterUrl: string
commitment?: Commitment | ConnectionConfig
programId?: string
sendRate?: number
sendScheduler?:
    | PQueue<PriorityQueue, QueueAddOptions>
    | SolanaTransactionSchedulingOptions
sendThrottler?: PQueue