Skip to content

Commit 5fe0fff

Browse files
authored
sBTC docs: Remove optional config value for sBTC Bitcoin nodes (#1681)
1 parent a75a178 commit 5fe0fff

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

guides-and-tutorials/sbtc/how-to-run-sbtc-signer.md

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,11 @@ You will need `bitcoind` version 25 or higher.
2828

2929
Your Bitcoin node must include these settings for sBTC signer operation:
3030

31-
1. Required Settings:
32-
3331
- `txindex=1`: Transaction indexing must be enabled
3432
- `server=1`: RPC server must be enabled
3533
- `zmqpubhashblock=tcp://*:28332`: ZMQ block hash notifications
3634
- `zmqpubrawblock=tcp://*:28332`: ZMQ raw block notifications
3735

38-
1. Optional, but recommended:
39-
40-
- `coinstatsindex=1`: Enables additional index for coin statistics
41-
4236
### ZeroMQ (ZMQ) Configuration
4337

4438
The ZeroMQ configuration specified above enables real-time blockchain event
@@ -61,17 +55,16 @@ This notification system creates a direct event stream when:
6155
```bash
6256
bitcoind \
6357
-server \
64-
-datadir=$${BITCOIN_DATA} \
58+
-datadir=${BITCOIN_DATA} \
6559
-rpcbind=0.0.0.0 \
66-
-rpcuser=$${BITCOIN_RPC_USERNAME} \
67-
-rpcpassword=$${BITCOIN_RPC_PASSWORD} \
68-
-rpcport=$${BITCOIN_RPC_PORT} \
60+
-rpcuser=${BITCOIN_RPC_USERNAME} \
61+
-rpcpassword=${BITCOIN_RPC_PASSWORD} \
62+
-rpcport=${BITCOIN_RPC_PORT} \
6963
-rpcallowip=0.0.0.0/0 \
7064
-rpcallowip=::/0 \
7165
-txindex \
72-
-zmqpubhashblock="tcp://*:$${BITCOIN_ZMQ_PORT}" \
73-
-zmqpubrawblock="tcp://*:$${BITCOIN_ZMQ_PORT}" \
74-
-coinstatsindex
66+
-zmqpubhashblock="tcp://*:${BITCOIN_ZMQ_PORT}" \
67+
-zmqpubrawblock="tcp://*:${BITCOIN_ZMQ_PORT}"
7568
```
7669

7770
## 2. Configure your Stacks node

0 commit comments

Comments
 (0)