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 615/week @ 2024-08-02 458/week @ 2024-08-09 192/week @ 2024-08-16 972/week @ 2024-08-23 1119/week @ 2024-08-30 372/week @ 2024-09-06 971/week @ 2024-09-13 815/week @ 2024-09-20 818/week @ 2024-09-27 2196/week @ 2024-10-04 2653/week @ 2024-10-11 1362/week @ 2024-10-18 1381/week @ 2024-10-25 1826/week @ 2024-11-01 2118/week @ 2024-11-08 1740/week @ 2024-11-15

7,321 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
~338K SLoC