solana-streamer-sdk 0.3.2

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
// 公用模块 - 包含流处理相关的通用功能
pub mod config;
pub mod metrics;
pub mod batch;
pub mod constants;

// 重新导出主要类型
pub use config::*;
pub use metrics::*;
pub use batch::*;
pub use constants::*;