Skip to content

This library provides a relatively thin wrapper around the Bitcoin ZMQ, allowing you to receive from an asynchronous stream of transaction or block data.

License

Notifications You must be signed in to change notification settings

hlb8122/rust-bitcoin-zmq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust Bitcoin ZMQ

Build Status License Cargo Documentation

This crate provides a relatively thin wrapper around Bitcoin ZMQ, allowing for the construction of asynchronous streams of transaction or block data.

Requirements

sudo apt install pkg-config libzmq3-dev

Usage

use bitcoin_zmq::ZMQListener;
use futures::prelude::*;

#[tokio::main]
async fn main() {
    // Construct ZMQ listenr
    let listener = ZMQListener::bind("tcp://127.0.0.1:28332")
        .await
        .expect("could not connect");

    // Do something with stream of messages
    listener
        .stream()
        .take(10)
        .try_for_each(move |raw| {
            println!("raw message: {:?}", hex::encode(raw));
            future::ok(())
        })
        .await
        .expect("zmq error'd during stream");
}

About

This library provides a relatively thin wrapper around the Bitcoin ZMQ, allowing you to receive from an asynchronous stream of transaction or block data.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages