solana-streamer-sdk 1.1.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
12
13
14
15
// 公用模块 - 包含流处理相关的通用功能
pub mod config;
pub mod metrics;
pub mod constants;
pub mod subscription;
pub mod event_processor;
pub mod simd_utils;

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