jetstreamer 0.5.1

High-throughput Solana transaction ledger streaming and plugin framework suitable for research and backfilling
Documentation
1
2
3
4
5
6
7
8
9
10
use jetstreamer::JetstreamerRunner;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    JetstreamerRunner::default()
        .with_log_level("info")
        .parse_cli_args()?
        .run()
        .map_err(|err| -> Box<dyn std::error::Error> { Box::new(err) })?;
    Ok(())
}