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

#800 in Magic Beans

Download history 974/week @ 2024-06-21 573/week @ 2024-06-28 625/week @ 2024-07-05 676/week @ 2024-07-12 953/week @ 2024-07-19 665/week @ 2024-07-26 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 2160/week @ 2024-10-04

4,903 downloads per month
Used in 4 crates (2 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
~336K SLoC