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: 5 additions & 1 deletion docs/run-node/2-from-source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ If the node gets stuck during bootstrap (or it takes far longer than the estimat

### CLI parameters

These are some of the most relevant CLI parameters you can use. Read more about them in the [Avalanche documentation](https://docs.avax.network/nodes/maintain/avalanchego-config-flags).
These are some of the most relevant CLI parameters you can use. Read more about them in the [Avalanche documentation](https://build.avax.network/docs/nodes/configure/configs-flags).

{/* prettier-ignore */}
- [`--bootstrap-ips`](https://build.avax.network/docs/nodes/configure/configs-flags#--bootstrap-ips-string),
Expand All @@ -205,6 +205,10 @@ These are some of the most relevant CLI parameters you can use. Read more about

#### Sample JSON configuration:

Most of the C-Chain configuration options can be found in the [Avalanche C-Chain Configuration docs](https://build.avax.network/docs/nodes/chain-configs/c-chain).
Note that the default values are overridden only if specified in the given config file.
Only provide values which differ from the defaults to avoid issues with future updates.

```json title="<chain-config-dir>/C/config.json"
{
"snowman-api-enabled": false,
Expand Down
3 changes: 3 additions & 0 deletions docs/run-node/3-using-docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ Mounting these allows you to manage them directly without entering the container
```

2. **Create configuration file:** Create a `config.json` file. This example provides a standard configuration for a public RPC node.
Most of the C-Chain configuration options can be found in the [Avalanche C-Chain Configuration docs](https://build.avax.network/docs/nodes/chain-configs/c-chain).
Note that the default values are overridden only if specified in the given config file.
Only provide values which differ from the defaults to avoid issues with future updates.

```json title="/opt/flare/conf/config.json"
{
Expand Down
3 changes: 3 additions & 0 deletions docs/run-node/4-register-validator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ Failure to implement these measures significantly increases the risk to your nod

As described in [Secure the node](#secure-the-node), a validator node should have minimal APIs enabled.
Below is a sample `config.json` demonstrating a secure configuration with limited `eth-apis` and disabled admin APIs:
Most of the C-Chain configuration options can be found in the [Avalanche C-Chain Configuration docs](https://build.avax.network/docs/nodes/chain-configs/c-chain).
Note that the default values are overridden only if specified in the given config file.
Only provide values which differ from the defaults to avoid issues with future updates.

```json title="config.json"
{
Expand Down
Loading