18 releases (breaking)

new 0.15.0 May 23, 2024
0.13.0 May 2, 2024
0.11.0 Mar 5, 2024
0.6.0 Oct 12, 2023
0.4.0 Mar 20, 2023

#2284 in Magic Beans

Download history 909/week @ 2024-02-05 664/week @ 2024-02-12 634/week @ 2024-02-19 657/week @ 2024-02-26 875/week @ 2024-03-04 648/week @ 2024-03-11 1628/week @ 2024-03-18 2485/week @ 2024-03-25 2972/week @ 2024-04-01 2557/week @ 2024-04-08 3420/week @ 2024-04-15 3601/week @ 2024-04-22 2379/week @ 2024-04-29 2508/week @ 2024-05-06 1955/week @ 2024-05-13 1677/week @ 2024-05-20

8,647 downloads per month
Used in 12 crates (9 directly)

MIT/Apache

220KB
3.5K SLoC

BDK Chain

BDK keychain tracker, tools for storing and indexing chain data.


lib.rs:

This crate is a collection of core structures for Bitcoin Dev Kit.

The goal of this crate is to give wallets the mechanisms needed to:

  1. Figure out what data they need to fetch.
  2. Process the data in a way that never leads to inconsistent states.
  3. Fully index that data and expose it to be consumed without friction.

Our design goals for these mechanisms are:

  1. Data source agnostic -- nothing in bdk_chain cares about where you get data from or whether you do it synchronously or asynchronously. If you know a fact about the blockchain, you can just tell bdk_chain's APIs about it, and that information will be integrated, if it can be done consistently.
  2. Data persistence agnostic -- bdk_chain does not care where you cache on-chain data, what you cache or how you retrieve it from persistent storage.

Dependencies

~12MB
~133K SLoC