From 1e41e7a0d7e918225eff337744549a6396d5b60b Mon Sep 17 00:00:00 2001 From: Ruben Buniatyan Date: Tue, 22 Aug 2023 14:56:13 +0200 Subject: [PATCH] Remove Networks --- docs/fundamentals/running-nethermind.md | 2 +- docs/get-started/networks.md | 50 ------------------------- 2 files changed, 1 insertion(+), 51 deletions(-) delete mode 100644 docs/get-started/networks.md 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) - -