]> Untitled Git - bitcoindevkit.org/commitdiff
Update installation.md for different esplora features
authortheBitcoinDeveloper <96552652+theBitcoinDeveloper@users.noreply.github.com>
Thu, 23 Dec 2021 00:52:25 +0000 (16:52 -0800)
committerGitHub <noreply@github.com>
Thu, 23 Dec 2021 00:52:25 +0000 (16:52 -0800)
We must now must specify if you want the blocking esplora client based on ureq or the async version based on reqwest.

docs/bdk-cli/installation.md

index 536cc70c0acea80a54a4424e6d8f5f99a992ee3f..f12d7fb0746861279707eb66aea06aaa4474d19c 100644 (file)
@@ -26,8 +26,11 @@ Once Cargo is installed, you can proceed to install the interactive `bdk-cli` to
 the GitHub repository, by running:
 
 ```bash
-# all features
-cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora,compiler
+# all features with the blocking esplora client 
+cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora-ureq,compiler
+
+# all features with the async esplora client 
+cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora-reqwest,compiler
 
 # minimal install
 cargo install --git https://github.com/bitcoindevkit/bdk-cli