sol-parser-sdk 0.4.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
//! 所有具体的事件类型定义
//!
//! 基于您提供的回调事件列表,定义所有需要的具体事件类型

mod types;
mod enum_impl;

pub use types::*;
pub use enum_impl::DexEvent;