From 05b4cf104b1e651ff4b9a00f4c8a5648fafa431b Mon Sep 17 00:00:00 2001 From: Ruben Buniatyan Date: Tue, 22 Aug 2023 15:02:01 +0200 Subject: [PATCH] Remove Networks --- ...deploy-nethermind-with-monitoring-stack.md | 2 +- docs/fundamentals/running-nethermind.md | 2 +- docs/get-started/networks.md | 50 ------------------- 3 files changed, 2 insertions(+), 52 deletions(-) delete mode 100644 docs/get-started/networks.md diff --git a/docs/04-monitoring/deploy-nethermind-with-monitoring-stack.md b/docs/04-monitoring/deploy-nethermind-with-monitoring-stack.md index ff71f1f25..cf7f6f7f7 100644 --- a/docs/04-monitoring/deploy-nethermind-with-monitoring-stack.md +++ b/docs/04-monitoring/deploy-nethermind-with-monitoring-stack.md @@ -104,7 +104,7 @@ You can now provide some basic configuration to your VM/Nethermind Node ![]() -A list of available `configs` can be found [here](../get-started/networks.md) +A list of available `configs` can be found [here](../fundamentals/configuration.md#basic-options) :::caution :fire\_extinguisher: If you chose to enable JsonRpc (it will run on port `8545` by default) make sure that you set diff --git a/docs/fundamentals/running-nethermind.md b/docs/fundamentals/running-nethermind.md index 774508976..e947d98bc 100644 --- a/docs/fundamentals/running-nethermind.md +++ b/docs/fundamentals/running-nethermind.md @@ -100,7 +100,7 @@ Run the launcher as follows: 1. To run a node, select `Ethereum Node` -2. Then, select the desired [network](../get-started/networks.md) (Mainnet, Sepolia, Goerli) +2. Then, select the desired network (e.g., Mainnet, Sepolia, Goerli) 3. Then, select the [sync mode](./03-sync-modes.md) and you're ready to go If you need just the Nethermind command line interface (CLI), select `CLI` in the first step. \ No newline at end of file diff --git a/docs/get-started/networks.md b/docs/get-started/networks.md deleted file mode 100644 index 3ac062008..000000000 --- a/docs/get-started/networks.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -description: Networks currently supported by Nethermind Client -sidebar_position: 5 ---- - -# Networks - -By default Nethermind launches with mainnet network configuration, but it is possible to sync other networks by adding a -command line switch: - -``` ---config [NETWORK_NAME] -``` - -Network name can be any of the following - -* mainnet -* goerli -* sepolia -* gnosis -* poacore -* energyweb -* volta -* kovan (only fast sync and may fail if pWASM transactions appear) - -### Mainnet - -This is the main Ethereum network. It can be run using config below and this is default setting - mainnet will run -if `--config` is not specified as well. - -``` -Nethermind.Runner --config mainnet -``` - -[Ethereum Mainnet Status](https://ethstats.net/) - -### Görli (goerli) - -This is a Clique-PoA based testnet supported by all major clients. It has 15 seconds between blocks that are sealed by -Goerli validators. - -``` -Nethermind.Runner --config goerli -``` - -[Goerli Status](https://stats.goerli.net/) - -[Goerli Gitter Space](https://gitter.im/goerli/testnet) - -