solana-streamer-sdk 0.3.10

A lightweight Rust library for real-time event streaming from Solana DEX trading programs. Supports PumpFun, PumpSwap, Bonk, and Raydium protocols with Yellowstone gRPC and ShredStream.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ShredStream 相关模块
pub mod connection;
pub mod types;
pub mod stream_handler;
pub mod event_processor;

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

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