feat: bridge streamer to sol-parser-sdk

This commit is contained in:
0xfnzero
2026-05-15 05:09:29 +08:00
parent e29a2e4f5a
commit ab84249f4a
85 changed files with 6350 additions and 1362 deletions
+9
View File
@@ -1,11 +1,20 @@
pub mod common;
pub mod event_parser;
pub mod grpc;
pub mod rpc_parse;
pub mod sdk_bridge;
pub mod shred;
pub mod shred_stream;
pub mod yellowstone_grpc;
pub mod yellowstone_sub_system;
/// Internal `sol-parser-sdk::DexEvent` to streamer event adapter.
pub(crate) mod parser_sdk_bridge;
pub use rpc_parse::{
fetch_rpc_transaction_as_streamer_events, fetch_rpc_transaction_as_streamer_events_async,
parse_encoded_rpc_transaction_as_streamer_events, ParseError as RpcParseError,
};
pub use shred::ShredStreamGrpc;
pub use yellowstone_grpc::YellowstoneGrpc;
pub use yellowstone_sub_system::{SystemEvent, TransferInfo};