From b353d0f9d34f0c7d111cb4176b69a5f1d7978fb9 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Fri, 10 Nov 2023 06:39:01 +0300 Subject: [PATCH] fix(readme): Update binary usage examples (#3474) --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index abbdd0a2f89..b5243100d5e 100644 --- a/README.md +++ b/README.md @@ -66,19 +66,25 @@ Gear node can run in a single Dev Net mode or you can create a Multi-Node local - **Linux x64**: [gear-nightly-x86_64-unknown-linux-gnu.tar.xz](https://get.gear.rs/gear-nightly-x86_64-unknown-linux-gnu.tar.xz) - **Windows x64**: [gear-nightly-x86_64-pc-windows-msvc.zip](https://get.gear.rs/gear-nightly-x86_64-pc-windows-msvc.zip) -2. Run Gear node without special arguments to get a node connected to the testnet: +2. Run Gear node without special arguments to get a node connected to the test network: ```bash gear ``` -3. One may run a local node in development mode for testing purposes. This node will not be connected to any external network. Use `--dev` argument for running the node locally and storing the state in temporary storage: +3. Connect to the Vara network: + + ```bash + gear --chain=vara + ``` + +4. One may run a local node in development mode for testing purposes. This node will not be connected to any external network. Use `--dev` argument for running the node locally and storing the state in temporary storage: ```bash gear --dev ``` -4. Get more info about usage details, flags, available options and subcommands: +5. Get more info about usage details, flags, available options and subcommands: ```bash gear --help