diff --git a/content/authors/thunderbiscuit/_index.md b/content/authors/thunderbiscuit/_index.md index 98b1ec7298..5cdaff60de 100644 --- a/content/authors/thunderbiscuit/_index.md +++ b/content/authors/thunderbiscuit/_index.md @@ -1,8 +1,8 @@ --- -name: Thunderbiscuit +name: thunderbiscuit photo: twitter: thunderB__ mastodon: https://fosstodon.org/@thunderbiscuit -github: https://github.com/thunderBiscuit +github: https://github.com/thunderbiscuit web: https://thunderbiscuit.com/ --- diff --git a/docs/_blog/spending_policy_demo.md b/docs/_blog/spending_policy_demo.md index b0ebde02a2..344afd5962 100644 --- a/docs/_blog/spending_policy_demo.md +++ b/docs/_blog/spending_policy_demo.md @@ -3,7 +3,7 @@ title: "Spending Policy Demo" description: "Demonstrate how to use a descriptor wallet with different spending policies" authors: - Steve Myers - - Thunderbiscuit + - thunderbiscuit date: "2021-02-23" tags: ["guide", "descriptor"] permalink: "/blog/2021/02/spending-policy-demo/" @@ -31,11 +31,11 @@ In a real-world wallet a longer relative time-lock would probably be used, but w ### Step 0: Install a recent version `bdk-cli` ```bash -cargo install bdk-cli --features repl,electrum,esplora +cargo install bdk-cli --features electrum # confirm bdk-cli is installed bdk-cli --version -BDK CLI 0.2.0 +BDK CLI 0.4.0 # bdk-cli usage can be explored with the `help` sub-command bdk-cli help diff --git a/docs/bdk-cli/installation.md b/docs/bdk-cli/installation.md index cffb3d1959..0189df3cc4 100644 --- a/docs/bdk-cli/installation.md +++ b/docs/bdk-cli/installation.md @@ -32,7 +32,7 @@ cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora- # all features with the async esplora client cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora-reqwest,compiler -# minimal install +# minimal install (only repl feature is on by default) cargo install --git https://github.com/bitcoindevkit/bdk-cli ```