Interface StreamingProcessedResponse

Processed streaming response ready for Solana transactions

interface StreamingProcessedResponse {
    bundleData: Buffer;
    feedHashes: string[];
    instruction: TransactionInstruction;
    timestamp: number;
    values: string[];
}

Properties

bundleData: Buffer
feedHashes: string[]
instruction: TransactionInstruction
timestamp: number
values: string[]