Skip to content

Commit 19ee7e5

Browse files
committed
improves transaction flag instructions
1 parent 04a9ead commit 19ee7e5

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

docs/faq.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,17 @@ The number of connected peers is determined by your node as it attempts to keep
141141

142142
### What is the difference between "systemctl" and "bee start"?
143143

144-
`bee start` and `systemctl start bee` actually run 2 different instances with 2 different `bee.yaml` files and two different data directories.
144+
*bee start* and *systemctl start bee* actually run 2 different instances with 2 different *bee.yaml* files and two different data directories.
145145

146-
`bee start` uses `~/.bee.yaml` and the `~/.bee` directory for data
147-
`systemctl` uses `/etc/bee/bee.yaml` and (IIRC) `/var/lib/bee` for data
146+
*bee start* uses *~/.bee.yaml* and the *~/.bee* directory for data
147+
*systemctl* uses */etc/bee/bee.yaml* and (IIRC) */var/lib/bee* for data
148148

149+
### How can I find a transaction hash for the --transaction configuration parameter?
150+
151+
Use this cunning one liner - thanks [filoozom](https://github.com/beejeez/beejeez/commits?author=filoozom)
152+
153+
Get your API key from [etherscan](https://etherscan.io)
154+
155+
```
156+
curl "https://api-goerli.etherscan.io/api?module=account&action=txlist&address=$ADDRESS&startblock=0&endblock=99999999&sort=asc&apikey=$API_KEY" | jq -c 'first(.result[] | select(.to == "'$ADDRESS'")).hash'
157+
```

docs/working-with-bee/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ Bee service identifier in tracing spans.
440440

441441
*default* `""`
442442

443-
As a spam prevention measure, for nodes which deployed their chequebook with v0.5.0 or before, specify `transaction` - the transaction of any Ethereum transaction on the Goerli network sent from the Bee node's Ethereum address.
443+
As a spam prevention measure, for nodes which deployed their chequebook with v0.5.0 or before, specify `transaction` - [the transaction hash of any Ethereum transaction on the Goerli network](http://localhost:3000/docs/FAQ#how-can-i-find-a-transaction-hash-for-the---transaction-configuration-parameter) sent from the Bee node's Ethereum address.
444444

445445
#### --verbosity
446446

0 commit comments

Comments
 (0)