Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,10 @@ Each network has its own genesis, bootstrap peers, actor bundles, and upgrade ep

```bash
# Mainnet (requires snapshot download)
forest --encrypt-keystore false
forest

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

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

# Import snapshot
forest --import-snapshot snapshot.car --encrypt-keystore false
forest --import-snapshot snapshot.car
```

### Debugging
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ categories:

| Binary | Role | Command example |
| ------------------------------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------- |
| [`forest`](https://docs.forest.chainsafe.io/reference/cli#forest) | Forest daemon, used to connect to the Filecoin network | `forest --chain calibnet --encrypt-keystore false` |
| [`forest`](https://docs.forest.chainsafe.io/reference/cli#forest) | Forest daemon, used to connect to the Filecoin network | `forest --chain calibnet --auto-download-snapshot` |
| [`forest-wallet`](https://docs.forest.chainsafe.io/reference/cli#forest-wallet) | Manage Filecoin wallets and interact with accounts | `forest-wallet new secp256k1` |
Comment thread
hanabi1224 marked this conversation as resolved.
| [`forest-cli`](https://docs.forest.chainsafe.io/reference/cli#forest-cli) | Human-friendly wrappers around the Filecoin JSON-RPC API | `forest-cli info show` |
| [`forest-tool`](https://docs.forest.chainsafe.io/reference/cli#forest-tool) | Handle tasks not involving the Forest daemon | `forest-tool snapshot fetch` |
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/users/guides/methods_filtering.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ In this example, will disallow the `Filecoin.ChainExport` method which is used t
2. Run `forest` with the `--rpc-filter-list` argument:

```shell
forest --chain calibnet --encrypt-keystore false --rpc-filter-list filter-list.txt
forest --chain calibnet --rpc-filter-list filter-list.txt
```

3. Try to export the snapshot using the `forest-cli`:
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/users/knowledge_base/jwt_handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Technically, tokens have an expiration date, the default is 100 years, so there'
:::

:::danger
**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.
**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.
:::

```shell
Expand Down
Loading