From c883ed19d6430827b2258e018c0c69bfd36e0f8e Mon Sep 17 00:00:00 2001 From: nym21 Date: Fri, 13 Dec 2024 19:57:08 +0100 Subject: [PATCH] biter: readme: update --- crates/biter/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/biter/README.md b/crates/biter/README.md index 13c3097e6..57bee26a6 100644 --- a/crates/biter/README.md +++ b/crates/biter/README.md @@ -1,4 +1,4 @@ -# Biter +# biter Biter (Bitcoin Block Iterator) is 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, ...). @@ -55,7 +55,7 @@ Peak memory should be around 500MB. ## Comparaison -| | [biter](https://crates.io/crates/biter) | [bitcoin-explorer (depreciated)](https://crates.io/crates/bitcoin-explorer) | [blocks_iterator](https://crates.io/crates/blocks_iterator) | +| | [biter](https://crates.io/crates/biter) | [bitcoin-explorer (deprecated)](https://crates.io/crates/bitcoin-explorer) | [blocks_iterator](https://crates.io/crates/blocks_iterator) | | --- | --- | --- | --- | | Runs **with** `bitcoind` | Yes ✅ | No ❌ | Yes ✅ | | Runs **without** `bitcoind` | No ❌ | Yes ✅ | Yes ✅ |