DoraVota Installation Guide
Chain ID:
vota-ash
Current Node Version:
v0.4.2
Install dependencies
sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade
Install GO
ver="1.21.3" &&
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz" &&
sudo rm -rf /usr/local/go &&
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz" &&
rm "go$ver.linux-amd64.tar.gz" &&
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile &&
source $HOME/.bash_profile &&
go version
Install with Cosmovisor
ADVANCED ROUTE
Cosmosvisor is a process manager for Cosmos SDK application binaries that monitors the governance module for incoming chain upgrade proposals. If a proposal is approved, cosmosvisor can automatically download the new binary, stop the current one, switch to the new binary, and restart the node with the new binary.
Download and build binaries
Clone DoraVota repo and build dorad v0.4.2
cd $HOME
git clone https://github.com/DoraFactory/doravota.git
cd doravota
git checkout v0.4.2
Build binaries
make install
Prepare binaries for Cosmovisor
cd $HOME
mkdir -p ~/.dorad/cosmovisor/upgrades/v0.4.2/bin
mv $HOME/go/bin/dorad ~/.dorad/cosmovisor/upgrades/v0.4.2/bin/
Create symlinks
sudo ln -s ~/.dorad/cosmovisor/genesis ~/.dorad/cosmovisor/current -f
sudo ln -s ~/.dorad/cosmovisor/current/bin/dorad /usr/local/bin/dorad -f
Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@v1.5.0
Run node
Create service
sudo tee /etc/systemd/system/dorad.service > /dev/null << EOF
[Unit]
Description=dora node service
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=~/.dorad"
Environment="DAEMON_NAME=dorad"
Environment="UNSAFE_SKIP_BACKUP=true"
Environment="PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:~/.dorad/cosmovisor/current/bin"
[Install]
WantedBy=multi-user.target
EOF
Install without Cosmovisor
Download and build binaries
Clone DoraVota repo and build dorad v0.4.2
cd $HOME
git clone https://github.com/DoraFactory/doravota.git
cd doravota
git checkout v0.4.2
Build binaries
make install
Run node
Create service
sudo tee /etc/systemd/system/dorad.service > /dev/null << EOF
[Unit]
Description=dora node service
After=network-online.target
[Service]
User=$USER
ExecStart=$(which dorad) start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"
[Install]
WantedBy=multi-user.target
EOF
Enable service
sudo systemctl daemon-reload
sudo systemctl enable dorad
Node configuration
Set config
dorad config chain-id vota-ash
dorad config keyring-backend os
dorad config node tcp://localhost:26657
Initialize the node
dorad init NAME_OF_YOUR_VALIDATOR --chain-id vota-ash
Download genesis and addrbook
curl https://snapshots.noders.services/dora/genesis.json -o ~/.dorad/config/genesis.json
curl https://snapshots.noders.services/dora/addrbook.json -o ~/.dorad/config/addrbook.json
Add peers
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"4df091676d42231553eeb9cec880c516dee6a6d2@dora-rpc.noders.services:37656\"/" ~/.dorad/config/config.toml
Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.001peaka\"|" ~/.dorad/config/app.toml
Set pruning
sed -i \
-e 's|^pruning *=.*|pruning = "custom"|' \
-e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
-e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
-e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
~/.dorad/config/app.toml
Set custom ports
echo "export dorad_PORT="SET_YOUR_PORT"" >> $HOME/.bash_profile
# Set custom ports in app.toml
sed -i.bak -e "s%:1317%:${dorad_PORT}317%g" \
-e "s%:8080%:${dorad_PORT}080%g" \
-e "s%:9090%:${dorad_PORT}090%g" \
-e "s%:9091%:${dorad_PORT}091%g" \
-e "s%:8545%:${dorad_PORT}545%g" \
-e "s%:8546%:${dorad_PORT}546%g" \
-e "s%:6065%:${dorad_PORT}065%g" ~/.dorad/config/app.toml
# Set custom ports in config.toml file
sed -i.bak -e "s%:26658%:${dorad_PORT}658%g" \
-e "s%:26657%:${dorad_PORT}657%g" \
-e "s%:6060%:${dorad_PORT}060%g" \
-e "s%:26656%:${dorad_PORT}656%g" \
-e "s%:26660%:${dorad_PORT}660%g" ~/.dorad/config/config.toml
Start node and check logs
sudo systemctl start dorad && sudo journalctl -u dorad -f --no-hostname -o cat