17 breaking releases

0.18.0 Feb 5, 2025
0.17.1 Dec 19, 2024
0.16.0 Oct 2, 2024
0.13.0 Jul 22, 2024
0.1.0 Oct 12, 2023

#6 in #mempool

Download history 243/week @ 2024-10-29 548/week @ 2024-11-05 602/week @ 2024-11-12 685/week @ 2024-11-19 905/week @ 2024-11-26 1173/week @ 2024-12-03 1234/week @ 2024-12-10 879/week @ 2024-12-17 377/week @ 2024-12-24 808/week @ 2024-12-31 913/week @ 2025-01-07 875/week @ 2025-01-14 880/week @ 2025-01-21 803/week @ 2025-01-28 1175/week @ 2025-02-04 541/week @ 2025-02-11

3,596 downloads per month

MIT/Apache

63KB
1K SLoC

BDK Bitcoind RPC

This crate is used for emitting blockchain data from the bitcoind RPC interface.


lib.rs:

This crate is used for emitting blockchain data from the bitcoind RPC interface. It does not use the wallet RPC API, so this crate can be used with wallet-disabled Bitcoin Core nodes.

Emitter is the main structure which sources blockchain data from bitcoincore_rpc::Client.

To only get block updates (exclude mempool transactions), the caller can use Emitter::next_block or/and Emitter::next_header until it returns Ok(None) (which means the chain tip is reached). A separate method, Emitter::mempool can be used to emit the whole mempool.

Dependencies

~10MB
~140K SLoC