20 breaking releases

0.21.0 May 1, 2025
0.20.1 Dec 19, 2024
0.19.0 Oct 2, 2024
0.16.0 Jul 22, 2024
0.2.0 Mar 20, 2023

#886 in Magic Beans

Download history 2587/week @ 2025-01-20 2529/week @ 2025-01-27 2774/week @ 2025-02-03 1340/week @ 2025-02-10 2716/week @ 2025-02-17 2061/week @ 2025-02-24 1752/week @ 2025-03-03 2947/week @ 2025-03-10 2671/week @ 2025-03-17 4826/week @ 2025-03-24 2052/week @ 2025-03-31 2028/week @ 2025-04-07 1990/week @ 2025-04-14 3425/week @ 2025-04-21 3643/week @ 2025-04-28 3433/week @ 2025-05-05

12,653 downloads per month
Used in 15 crates (4 directly)

MIT/Apache

110KB
2K SLoC

BDK Esplora

BDK Esplora extends esplora-client (with extension traits: EsploraExt and EsploraAsyncExt) to update bdk_chain structures from an Esplora server.

The extension traits are primarily intended to satisfy SyncRequests with sync and FullScanRequests with full_scan.

Usage

For blocking-only:

bdk_esplora = { version = "0.19", features = ["blocking"] }

For async-only:

bdk_esplora = { version = "0.19", features = ["async"] }

For async-only (with https):

You can additionally specify to use either rustls or native-tls, e.g. async-https-native, and this applies to both async and blocking features.

bdk_esplora = { version = "0.19", features = ["async-https"] }

For async-only (with tokio):

bdk_esplora = { version = "0.19", features = ["async", "tokio"] }

To use the extension traits:

// for blocking
#[cfg(feature = "blocking")]
use bdk_esplora::EsploraExt;

// for async
#[cfg(feature = "async")]
use bdk_esplora::EsploraAsyncExt;

For full examples, refer to example_wallet_esplora_blocking and example_wallet_esplora_async.

Dependencies

~6–22MB
~308K SLoC