From d6a9f4c5492879bb527f9834d6667ffe2b376fd0 Mon Sep 17 00:00:00 2001 From: serinko <97586125+serinko@users.noreply.github.com> Date: Mon, 13 Nov 2023 12:34:57 +0100 Subject: [PATCH] syntax edit --- .../operators/src/nodes/mix-node-setup.md | 32 +++---------------- 1 file changed, 5 insertions(+), 27 deletions(-) diff --git a/documentation/operators/src/nodes/mix-node-setup.md b/documentation/operators/src/nodes/mix-node-setup.md index e98cfee6b2..f9dd3b3d19 100644 --- a/documentation/operators/src/nodes/mix-node-setup.md +++ b/documentation/operators/src/nodes/mix-node-setup.md @@ -59,42 +59,20 @@ To check available configuration options for initializing your node use: ~~~admonish example collapsible=true title="Console output" ``` - + ``` ~~~ -Initalise your mix node with the following command, replacing the value of `--id` with the moniker you wish to give your mix node. Your `--host` must be publicly routable on the internet in order to mix packets, and can be either an Ipv4 or IPv6 address. The `$(curl -4 https://ifconfig.me)` command returns your IP automatically using an external service. If you enter your IP address manually, enter it **without** any port information. +Initialise your mix node with the following command, replacing the value of `--id` with the moniker you wish to give your mix node. Your `--host` must be publicly routable on the internet in order to mix packets, and can be either an Ipv4 or IPv6 address. The `$(curl -4 https://ifconfig.me)` command returns your IP automatically using an external service. If you enter your IP address manually, enter it **without** any port information. ``` -./nym-mixnode init --id --host $(curl -4 https://ifconfig.me) +./nym-mixnode init --id --host $(curl -4 https://ifconfig.me) ``` +If `` was `my-node`, the output shall look like like this: - ~~~admonish example collapsible=true title="Console output" ``` -.nym-mixnode init --id --host $(curl -4 https://ifconfig.me) --wallet-address - - -Initialising mixnode ... -Saved mixnet identity and sphinx keypairs - 2023-06-04T08:20:32.862Z INFO nym_config > Configuration file will be saved to "/home//.nym/mixnodes//config/config.toml" -Saved configuration file to "/home//.nym/mixnodes//config/config.toml" -Mixnode configuration completed. - - _ __ _ _ _ __ ___ - | '_ \| | | | '_ \ _ \ - | | | | |_| | | | | | | - |_| |_|\__, |_| |_| |_| - |___/ - - (nym-mixnode - version v1.1.29) - - -Identity Key: DhmUYedPZvhP9MMwXdNpPaqCxxTQgjAg78s2nqtTTiNF","version":"v1.1.29"},"cost_params -Sphinx Key: CfZSy1jRfrfiVi9JYexjFWPqWkKoY72t7NdpWaq37K8Z -Host: 62.240.134.189 (bind address: 62.240.134.189) -Version: v1.1.29 -Mix Port: 1789, Verloc port: 1790, Http Port: 8000 + ``` ~~~