File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUST_LOG=debug cargo run --features esplora-ureq -- wallet --descriptor "wpkh(tp
2828```
2929
3030At most one blockchain feature can be enabled, available blockchain client features are:
31- ` electrum ` , ` esplora-ureq ` (blocking), ` esplora-reqwest ` (async), and ` compact_filters ` .
31+ ` electrum ` , ` esplora-ureq ` (blocking), ` esplora-reqwest ` (async), ` compact_filters ` and ` rpc ` .
3232
3333### From crates.io
3434You can the install the binaries for the latest tag of ` bdk-cli ` with online wallet features
@@ -52,6 +52,12 @@ To sync a wallet to the default electrum server:
5252cargo run --features electrum -- wallet --descriptor " wpkh(tpubEBr4i6yk5nf5DAaJpsi9N2pPYBeJ7fZ5Z9rmN4977iYLCGco1VyjB9tvvuvYtfZzjD5A8igzgw3HeWeeKFmanHYqksqZXYXGsw5zjnj7KM9/*)" sync
5353```
5454
55+ To sync a wallet to Bitcoin Core node (assuming a regtest node at 127.0.0.1:18443) using the core rpc:
56+
57+ ``` shell
58+ cargo run --features rpc -- --network regtest wallet --node 127.0.0.1:18443 --descriptor " wpkh(tpubEBr4i6yk5nf5DAaJpsi9N2pPYBeJ7fZ5Z9rmN4977iYLCGco1VyjB9tvvuvYtfZzjD5A8igzgw3HeWeeKFmanHYqksqZXYXGsw5zjnj7KM9/*)" sync
59+ ```
60+
5561To sync a wallet to Bitcoin Core node (assuming a regtest node at 127.0.0.1:18444) serving compact filters:
5662Note:
5763- This will increase build time by few minutes for the binaries because of ` librocksdb ` .
You can’t perform that action at this time.
0 commit comments