18 breaking releases

0.19.0 Oct 2, 2024
0.17.1 Sep 13, 2024
0.16.0 Jul 22, 2024
0.10.0 Mar 27, 2024
0.2.0 Mar 20, 2023

#2 in #bdk

Download history 659/week @ 2024-07-23 676/week @ 2024-07-30 739/week @ 2024-08-06 245/week @ 2024-08-13 372/week @ 2024-08-20 1274/week @ 2024-08-27 714/week @ 2024-09-03 908/week @ 2024-09-10 526/week @ 2024-09-17 822/week @ 2024-09-24 1697/week @ 2024-10-01 1545/week @ 2024-10-08 2794/week @ 2024-10-15 1466/week @ 2024-10-22 1451/week @ 2024-10-29 1848/week @ 2024-11-05

7,776 downloads per month
Used in 5 crates (3 directly)

MIT/Apache

100KB
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.3", features = ["blocking"] }

For async-only:

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

For async-only (with https):

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

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-crates/wallet_esplora_blocking and example-crates/wallet_esplora_async.

Dependencies

~8–24MB
~339K SLoC