A command-line interface for managing Bitcoin Silent Payments (BIP 352) wallets.
WARNING: This is program is currently in reckless testing, use at own risk!
- Create and import Silent Payment wallets
- Generate Silent Payment addresses
- Send Bitcoin to regular and Silent Payment addresses
- Sync with BlindBit Scan daemon
- View UTXOs and transaction history
- Support for Tor connections to .onion addresses
go install github.com/setavenger/blindbit-wallet-cli/cmd/blindbit-wallet-cli@latest
Copy the example configuration file and customize it for your needs:
cp blindbit.toml.example ~/.blindbit-wallet/blindbit.toml
To connect to .onion addresses, enable Tor in your configuration:
use_tor = true
tor_host = "localhost" # Tor SOCKS proxy host
tor_port = 9050 # Tor SOCKS proxy port
Make sure you have Tor running on your system. On macOS, you can install it with:
brew install tor
Then start the Tor service:
brew services start tor
blindbit-wallet-cli wallet new
blindbit-wallet-cli wallet import
blindbit-wallet-cli wallet address
blindbit-wallet-cli wallet send <address1>:<amount1> <address2>:<amount2> [--fee-rate <rate>]
blindbit-wallet-cli wallet utxos
blindbit-wallet-cli wallet sync
MIT