LogoLogo
  • Introduction
  • Testnet
    • 0G-Labs
      • Network Overview
      • Installation
        • Storage Node
        • Data Availability Node
        • Data Availability Client
    • Aztec
      • Installation
      • Register as Validator
    • Coretensor
      • Installation
    • Cysic
      • Installation
    • Dill
      • Network Overview
      • Installation
    • Drosera
      • Installation
        • Operator
        • Add Second Operator
        • Trapper
    • Farcaster
      • Installation
    • Warden
      • Network Overview
      • Installation
      • Snapshot & State Sync
      • Validator Setup
  • Mainnet
    • Humanode
      • Installation
    • Initverse
      • Installation
  • Archieve
    • Privasea
      • Installation
  • Services
  • My Contact
Powered by GitBook
On this page
  • Prerequiretes
  • Installation
  • Initialize the node
  • Download genesis and addrbook
  • Set minimum gas price and a list of seeds nodes
  • Create Systemd Services
  • Enable and Start Services

Was this helpful?

  1. Testnet
  2. Warden

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
PreviousNetwork OverviewNextSnapshot & State Sync

Last updated 1 day ago

Was this helpful?