From d4809a48e60b6b8da120aeb2f9ccb77e6a734a48 Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Tue, 25 Jun 2024 13:08:37 +0100 Subject: [PATCH] Docs on the bdk_wallet esplora client. --- side-node/src/clients/btc_esplora_client.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/side-node/src/clients/btc_esplora_client.rs b/side-node/src/clients/btc_esplora_client.rs index 971f633..3bb329d 100644 --- a/side-node/src/clients/btc_esplora_client.rs +++ b/side-node/src/clients/btc_esplora_client.rs @@ -17,6 +17,11 @@ const STOP_GAP: usize = 50; const PARALLEL_REQUESTS: usize = 5; /// Demonstrates the use of bdk with the Esplora client. +/// +/// This is more complex than the bare `bdk` crate, but the esplora client works. +/// +/// Also, it very nadily works with the mutinynet.com esplora server, which is configured +/// with 30 second block times. pub async fn run() -> Result<(), anyhow::Error> { let dave_dir = utils::home(&"dave".to_string());