πŸ”‹Arch way

Install the Validator

Make sure you have the latest Go build and system components installed

Install Node

cd $HOME
rm -rf archway
git clone https://github.com/archway-network/archway.git
cd archway
git checkout v4.0.2
make install
archwayd version

Initialize Node

archwayd init NodeName --chain-id=archway-1

Download Genesis

curl -Ls https://ss.archway.nodestake.top/genesis.json > $HOME/.archway/config/genesis.json 

Download addrbook

curl -Ls https://ss.archway.nodestake.top/addrbook.json > $HOME/.archway/config/addrbook.json

Create Service

sudo tee /etc/systemd/system/archwayd.service > /dev/null <<EOF
[Unit]
Description=archwayd Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which archwayd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable archwayd

Download Snapshot

Launch Node

Get Sync Status

Add New Key & Create a validator

Add New Key

Recover Existing Key

Query Wallet Balance

Create a validator

Command

Unjail Validator

Delegate to yourself

Reload systemd

Last updated