solana-streamer-sdk 1.5.16

A low-latency Solana DEX event streaming facade over sol-parser-sdk with Yellowstone gRPC, ShredStream, and RPC parsing helpers.
Documentation
pub mod common;
pub mod event_parser;
pub mod grpc;
pub mod rpc_parse;
pub mod sdk_bridge;
pub mod shred;
pub mod shred_stream;
pub mod yellowstone_grpc;
pub mod yellowstone_sub_system;

/// Internal `sol-parser-sdk::DexEvent` to streamer event adapter.
pub(crate) mod parser_sdk_bridge;

pub use rpc_parse::{
    fetch_rpc_transaction_as_streamer_events, fetch_rpc_transaction_as_streamer_events_async,
    parse_encoded_rpc_transaction_as_streamer_events, ParseError as RpcParseError,
};
pub use shred::ShredStreamGrpc;
pub use yellowstone_grpc::YellowstoneGrpc;
pub use yellowstone_sub_system::{SystemEvent, TransferInfo};