2025-08-28 14:49:56 +08:00
|
|
|
pub mod common;
|
2025-07-19 23:46:42 +08:00
|
|
|
pub mod protos;
|
2025-08-28 14:49:56 +08:00
|
|
|
pub mod streaming;
|
2026-05-15 05:09:29 +08:00
|
|
|
|
|
|
|
|
#[cfg(all(not(feature = "sdk-parse-borsh"), not(feature = "sdk-parse-zero-copy")))]
|
|
|
|
|
compile_error!("Enable one SDK parser backend: sdk-parse-borsh or sdk-parse-zero-copy.");
|
|
|
|
|
|
|
|
|
|
pub use sol_parser_sdk as parser_sdk;
|
|
|
|
|
pub use streaming::sdk_bridge;
|
|
|
|
|
pub use streaming::{
|
|
|
|
|
fetch_rpc_transaction_as_streamer_events, fetch_rpc_transaction_as_streamer_events_async,
|
|
|
|
|
parse_encoded_rpc_transaction_as_streamer_events, RpcParseError,
|
|
|
|
|
};
|