Steve Myers 82f9caddab
Bump bdk version to 1.0.0-alpha.0
chain to 0.4.0
electrum to 0.2.0
esplora to 0.2.0
file_store to 0.1.0
2023-03-19 23:03:48 -05:00
..
2023-03-19 23:03:48 -05:00

BDK Esplora

BDK Esplora extends esplora_client to update [bdk_chain] structures from an Esplora server.

Usage

There are two versions of the extension trait (blocking and async).

For blocking-only:

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

For async-only:

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

For async-only (with https):

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

To use the extension traits:

// for blocking
use bdk_esplora::EsploraExt;
// for async
use bdk_esplora::EsploraAsyncExt;

For full examples, refer to example-crates/wallet_esplora (blocking) and example-crates/wallet_esplora_async.