bdk_esplora-0.17.1 has been yanked.
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:
= { = "0.3", = ["blocking"] }
For async-only:
= { = "0.3", = ["async"] }
For async-only (with https):
= { = "0.3", = ["async-https"] }
To use the extension traits:
// for blocking
use EsploraExt;
// for async
use EsploraAsyncExt;
For full examples, refer to example-crates/wallet_esplora_blocking and example-crates/wallet_esplora_async.