Initialize Node

The following instructions assume that you have already completed the previous Initial Setup and Installing the qwoynd binary steps.

Initialize Node

Create the configuration files and data directory by initializing the node. In the following command, replace [moniker] with a name of your choice.

qwoynd init [moniker] --chain-id higgs-boson-1

Update Genesis

Update the genesis file.

curl http://137.220.37.9:26657/genesis | jq .result.genesis > ~/.qwoynd/config/genesis.json

Update Peers

Add a seed node for initial peer discovery.

PERSISTENT_PEERS="520d904daa98ff2fe88baee1c3701a30beb0208b@137.220.37.9:26656"
sed -i '/persistent_peers =/c\persistent_peers = "'"$PERSISTENT_PEERS"'"' ~/.qwoynd/config/config.toml

Start Node

The node is now ready to connect to the network.

qwoynd start

Last updated