Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Nethermind executable name #608

Merged
merged 1 commit into from
Feb 1, 2024
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
2 changes: 1 addition & 1 deletion docs/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ Please keep in mind that this is just a basic example, all other settings will b
Nethermind offers various [installation options](https://docs.nethermind.io/nethermind/first-steps-with-nethermind/getting-started). The package comes with various binaries, including a Launcher with a guided setup, which will help you to create the configuration interactively. Alternatively, you find Runner which is the executable itself and you can just run it with config flags. JSON RPC is enabled by default.

```
Nethermind.Runner --config gnosis \
nethermind --config gnosis \
--datadir /data/gnosis \
--JsonRpc.JwtSecretFile=/path/to/jwtsecret
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import TabItem from '@theme/TabItem';

- Execute Nethermind
```shell
./Nethermind.Runner \
./nethermind \
--config gnosis \
--JsonRpc.Enabled true \
--HealthChecks.Enabled true \
Expand All @@ -59,7 +59,7 @@ import TabItem from '@theme/TabItem';

- Run the following command:
```shell
.\Nethermind.Runner.exe \
./nethermind \
--config gnosis \
--JsonRpc.Enabled true \
--HealthChecks.Enabled true \
Expand Down Expand Up @@ -103,7 +103,7 @@ import TabItem from '@theme/TabItem';

- Execute Nethermind
```shell
./Nethermind.Runner \
./nethermind \
--config chiado \
--JsonRpc.Enabled true \
--HealthChecks.Enabled true \
Expand All @@ -126,7 +126,7 @@ import TabItem from '@theme/TabItem';

- Run the following command:
```shell
.\Nethermind.Runner.exe \
./nethermind \
--config chiado \
--JsonRpc.Enabled true \
--HealthChecks.Enabled true \
Expand Down
4 changes: 2 additions & 2 deletions docs/node/manual/execution/nethermind.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,10 @@ Nethermind has ‘Nethermind launcher’ an easy GUI where you can configure you
Windows
```
# Gnosis Mainnet
./Nethermind.Runner --config gnosis --JsonRpc.JwtSecretFile=<PATH to jwt.hex>
./nethermind --config gnosis --JsonRpc.JwtSecretFile=<PATH to jwt.hex>

# Chiado Testnet
./Nethermind.Runner --config chiado --JsonRpc.JwtSecretFile=<PATH to jwt.hex>
./nethermind --config chiado --JsonRpc.JwtSecretFile=<PATH to jwt.hex>
```

Linux and MAC
Expand Down
4 changes: 2 additions & 2 deletions updates/2022/12-08-temporary-bootnodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Nethermind utilizes the flag [`--Discovery.Bootnodes`](https:/Nether
Docs: [Nethermind Github](https:/NethermindEth/nethermind/blob/3734ff4c150cd177958395e34e731e15d051e1fd/src/Nethermind/Nethermind.Init/Steps/UpdateDiscoveryConfig.cs#L37)

```
Nethermind.Runner
--config xDai
nethermind
--config gnosis
--Discovery.Bootnodes ... # comma separated enode addresses
```

Expand Down
Loading