Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ bdk_electrum = { version = "0.24.0", optional = true }
bdk_esplora = { version = "0.22.2", features = ["async-https", "tokio"], optional = true }
bdk_kyoto = { version = "0.17.0", optional = true }
bdk_redb = { version = "0.2.0", optional = true }
bdk_sp = { version = "0.1.0", optional = true, git = "https://github.com/bitcoindevkit/bdk-sp", tag = "v0.1.0" }
bdk_sp = { version = "0.2.0", optional = true }
shlex = { version = "1.3.0", optional = true }
payjoin = { version = "0.25.0", features = ["v1", "v2", "io", "_test-utils"], optional = true}
reqwest = { version = "0.13.2", default-features = false, features = ["rustls"], optional = true }
Expand Down Expand Up @@ -71,7 +71,7 @@ verify = []
compiler = []

# Experimental silent payment sending capabilities
silent-payments = ["dep:bdk_sp"]
silent-payments = ["bdk_sp"]

[dev-dependencies]
predicates = "3.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ bdk-cli can be compiled with different features to suit your experimental needs.
- `repl` : use bdk-cli as a [REPL](https://codewith.mu/en/tutorials/1.0/repl) shell (useful for quick manual testing of wallet operations).
- `compiler` : opens up bdk-cli policy compiler commands.
- `message_signer`: BIP322 message signing/verification.
- `silent-payment`: Experimental BIP-352 silent payment sending
- `dns_payment`: BIP-353 DNS payment instructions
- `silent-payments`: Experimental BIP-352 silent payment sending
- `dns_payment`: BIP-353 DNS payment instructions

The `default` feature set is `repl` and `sqlite`. With the `default` features, `bdk-cli` can be used as an **air-gapped** wallet, and can do everything that doesn't require a network connection.

Expand Down
Loading