Skip to content

Commit 2689474

Browse files
authored
chore: no skipping keystore encryption in docs by default (#6549)
1 parent 6af5cf7 commit 2689474

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

AGENTS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,10 @@ Each network has its own genesis, bootstrap peers, actor bundles, and upgrade ep
289289

290290
```bash
291291
# Mainnet (requires snapshot download)
292-
forest --encrypt-keystore false
292+
forest
293293

294294
# Calibnet (testnet, auto-download snapshot)
295-
forest --chain calibnet --auto-download-snapshot --encrypt-keystore false
295+
forest --chain calibnet --auto-download-snapshot
296296

297297
# Using Docker
298298
docker run --init -it --rm ghcr.io/chainsafe/forest:latest --chain calibnet --auto-download-snapshot
@@ -326,7 +326,7 @@ forest-tool snapshot fetch --chain calibnet
326326
forest-tool snapshot export --output snapshot.car
327327

328328
# Import snapshot
329-
forest --import-snapshot snapshot.car --encrypt-keystore false
329+
forest --import-snapshot snapshot.car
330330
```
331331

332332
### Debugging

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ categories:
232232

233233
| Binary | Role | Command example |
234234
| ------------------------------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------- |
235-
| [`forest`](https://docs.forest.chainsafe.io/reference/cli#forest) | Forest daemon, used to connect to the Filecoin network | `forest --chain calibnet --encrypt-keystore false` |
235+
| [`forest`](https://docs.forest.chainsafe.io/reference/cli#forest) | Forest daemon, used to connect to the Filecoin network | `forest --chain calibnet --auto-download-snapshot` |
236236
| [`forest-wallet`](https://docs.forest.chainsafe.io/reference/cli#forest-wallet) | Manage Filecoin wallets and interact with accounts | `forest-wallet new secp256k1` |
237237
| [`forest-cli`](https://docs.forest.chainsafe.io/reference/cli#forest-cli) | Human-friendly wrappers around the Filecoin JSON-RPC API | `forest-cli info show` |
238238
| [`forest-tool`](https://docs.forest.chainsafe.io/reference/cli#forest-tool) | Handle tasks not involving the Forest daemon | `forest-tool snapshot fetch` |

docs/docs/users/guides/methods_filtering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In this example, will disallow the `Filecoin.ChainExport` method which is used t
3333
2. Run `forest` with the `--rpc-filter-list` argument:
3434

3535
```shell
36-
forest --chain calibnet --encrypt-keystore false --rpc-filter-list filter-list.txt
36+
forest --chain calibnet --rpc-filter-list filter-list.txt
3737
```
3838

3939
3. Try to export the snapshot using the `forest-cli`:

docs/docs/users/knowledge_base/jwt_handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Technically, tokens have an expiration date, the default is 100 years, so there'
2525
:::
2626

2727
:::danger
28-
**Keep your tokens safe!** Anyone with access to the admin token can control your node if the RPC API is exposed to the internet. The private key is stored in an optionally encrypted file in the node's data directory. The default location on Linux is `$HOME/.local/share/forest/keystore` or `$HOME/.local/share/forest/keystore.json` if encryption is disabled.
28+
**Keep your tokens safe!** Anyone with access to the admin token can control your node if the RPC API is exposed to the internet. The private key is stored in an optionally encrypted file in the node's data directory. The default location on Linux is `$HOME/.local/share/forest/keystore` or `$HOME/.local/share/forest/keystore.json` if encryption is disabled. You should **not** disable keystore encryption in production environments.
2929
:::
3030

3131
```shell

0 commit comments

Comments
 (0)