Installation

Prerequiretes

Hardware
Minimun Spesification

CPU

4 Cores

RAM

16 GB

Disk

300 GB

Installation

Download binary file

wget https://github.com/warden-protocol/wardenprotocol/releases/download/v0.6.3/wardend-0.6.3-linux-amd64
cp wardend-0.6.3-linux-amd64 /usr/local/bin/wardend
chmod +x /usr/local/bin/wardend

Initialize the node

wardend init <your-name> --chain-id chiado_10010-1

Download genesis and addrbook

cd $HOME/.warden/config
rm genesis.json
wget https://raw.githubusercontent.com/warden-protocol/networks/main/testnets/chiado/genesis.json

Set minimum gas price and a list of seeds nodes

sed -i 's/minimum-gas-prices = ""/minimum-gas-prices = "2000award"/' app.toml
sed -i 's/seeds = ""/seeds = "[email protected]:26656"/' config.toml

Create Systemd Services

tee /etc/systemd/system/wardend.service > /dev/null <<EOF
[Unit]
Description=wardend
After=network-online.target

[Service]
User=$USER
ExecStart=$(which wardend) start
Restart=on-failure
RestartSec=3
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF

Enable and Start Services

systemctl daemon-reexec
systemctl daemon-reload
systemctl enable wardend.service
systemctl start wardend.service

Last updated