Running a node

Clone the github repository and install the application:

git clone https://github.com/zephyr-hq/zephyr
cd zephyr
go install ./...

zephyrd version --long

Initialize your node:

zephyrd init moniker

Get the testnet Genesis file:

wget https://gist.githubusercontent.com/zephyr-labs/1cb0a1fb4de1211ae9d621b858731c06/raw/018009b74b219e635c879d1ca8596778b645538f/genesis.json
mv genesis.json ~/.zephyr/config/genesis.json

Add seed nodes:

# add seed node
sed -i 's/seeds = ""/seeds = "[email protected]:26656"/' /root/.zephyr/config/config.toml

Start the application:

zephyrd start

Last updated