#block #iterator #bitcoin

brk_parser

A very fast Bitcoin Core block parser and iterator built on top of bitcoin-rust

13 releases

Uses new Rust 2024

new 0.0.12 Apr 2, 2025
0.0.11 Mar 31, 2025
0.0.2 Feb 27, 2025

#88 in Magic Beans

Download history 112/week @ 2025-02-19 493/week @ 2025-02-26 428/week @ 2025-03-05 149/week @ 2025-03-12 140/week @ 2025-03-19 74/week @ 2025-03-26

927 downloads per month
Used in 6 crates (5 directly)

MIT license

105KB
3.5K SLoC

BRK Parser

GitHub Repo stars kibo.money License Version Documentation Size Dependency status Chat

A very fast and simple Rust library which reads raw block files (blkXXXXX.dat) from Bitcoin Core node and creates an iterator over all the requested blocks in sequential order (0, 1, 2, ...).

The element returned by the iterator is a tuple which includes the:

  • Height: Height
  • Block: Block (from bitcoin-rust)
  • Block's Hash: BlockHash (also from bitcoin-rust)

Example

src/main.rs

Requirements

Even though it reads blkXXXXX.dat files, it needs bitcoind to run with the RPC server to filter out block forks.

Peak memory should be around 500MB.

Comparaison

brk_parser bitcoin-explorer (deprecated) blocks_iterator
Runs with bitcoind Yes ✅ No ❌ Yes ✅
Runs without bitcoind No ❌ Yes ✅ Yes ✅
0..=855_000 4mn 10s 4mn 45s > 2h
800_000..=855_000 0mn 52s (4mn 10s if first run) 0mn 55s > 2h

Benchmarked on a Macbook Pro M3 Pro

Dependencies

~16MB
~229K SLoC