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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ShredStream 相关模块
pub mod connection;
pub mod pool;
pub mod types;

// 重新导出主要类型
pub use connection::*;
pub use pool::*;
pub use types::*;

// 从公用模块重新导出
pub use crate::streaming::common::{
    ConnectionConfig, MetricsEventType, MetricsManager, PerformanceMetrics, StreamClientConfig,
};