Skip to main content
DoraVota CLI Cheatsheet

DoraVota CLI Cheatsheet

Chain ID:

vota-bobtail

Current Node Version:

v0.4.2

Useful commands

This cheatsheet collects commonly used CLI commands for node operators to easily copy and paste. A few conventions we follow:

  • Capitalized words indicate placeholders
  • Always use our own [NODERS]TEAM RPC endpoints
  • Always specify --chain-id and --node flags even when they are unnecessary
  • Query CLI command always uses --output json flag and pipes result through jq

Wallet generate and recover

Add new key

dorad keys add KEY

Recover key (via existing mnemonic)

dorad keys add KEY --recover

List all keys

dorad keys list

Delete key

dorad keys delete KEY

Wallet

Wallet balance

dorad q bank balances $(dorad keys show KEY -a) --node https://dora-t-rpc.noders.services:443

Send

dorad tx bank send YOUR_KEY RECEIVER_ADDRESS 1000000peaka \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Withdraw rewards from all validators

dorad tx distribution withdraw-all-rewards \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Withdraw Rewards including Commission

dorad tx distribution withdraw-rewards VALIDATOR_ADRESS \
--commission \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Delegate tokens to yourself

dorad tx staking delegate $(dorad keys show KEY --bech val -a) 1000000peaka \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Delegate tokens to validator

dorad tx staking delegate VALIDATOR_ADDRESS 1000000peaka \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Redelegate tokens to another validator

dorad tx staking redelegate $(dorad keys show KEY --bech val -a) VALIDATOR_ADDRESS 1000000peaka \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Unbond tokens from your validator

dorad tx staking unbond $(dorad keys show KEY --bech val -a) peaka \
--chain-id andromeda-1 \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Governance

List of all proposals

dorad query gov proposals --node https://dora-t-rpc.noders.services:443

Check vote

dorad query gov proposal PROPOSAL_NUMBER \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--output json | jq

Vote

Vote options:

  • yes
  • no
  • no_with_veto
  • abstain
dorad tx gov vote PROPOSAL_NUMBER VOTE_OPTION \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Validator management

Create Validator

note

We use example filed values instead of capitalized dummy words for demo purpose in this command. Please make sure to adjust accordingly for your use.

dorad tx staking create-validator \
--amount 1000000peaka \
--commission-max-change-rate "0.05" \
--commission-max-rate "0.10" \
--commission-rate "0.05" \
--min-self-delegation "1" \
--pubkey=$(dorad tendermint show-validator) \
--moniker '[NODERS]TEAM SERVICE' \
--website "https://noders.team" \
--identity "220491ADDD660741" \
--details "Trusted blockchain validator and web3 developer team" \
--security-contact="office@noders.team" \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Edit validator

dorad tx staking edit-validator \
--new-moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id vota-bobtail \
--commission-rate 0.05 \
--from KEY \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \

Unjail

dorad tx slashing unjail \
--chain-id vota-bobtail \
--node https://dora-t-rpc.noders.services:443 --fees 3000peaka \
--from KEY

Jail reason

dorad query slashing signing-info $(dorad tendermint show-validator)

Validator details

dorad q staking validator $(dorad keys show KEY --bech val -a)

Maintenance

Get validator info

dorad status 2>&1 | jq .ValidatorInfo

Get sync info

dorad status 2>&1 | jq .SyncInfo

Get node peer

echo $(dorad tendermint show-node-id)'@'$(curl -s ifconfig.me)':'$(cat ~/.dorad/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')

Check if validator key is correct

[[ $(dorad q staking validator $(dorad keys show KEY --bech val -a) -oj | jq -r .consensus_pubkey.key) = $(dorad status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\n\e[1m\e[32mTrue\e[0m\n" || echo -e "\n\e[1m\e[31mFalse\e[0m\n"

Get live peers

curl -sS https://dora-t-rpc.noders.services:443/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'

Set minimum gas price

sed -i -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.001peaka\"/" ~/.dorad/config/app.toml

###Enable prometheus

sed -i -e "s/prometheus = false/prometheus = true/" ~/.dorad/config/config.toml

Reset chain data

dorad tendermint unsafe-reset-all --keep-addr-book --home ~/.dorad

Service Management

Reload service configuration

sudo systemctl daemon-reload

Enable service

sudo systemctl enable dorad

Disable service

sudo systemctl disable dorad

Start service

sudo systemctl start dorad

Stop service

sudo systemctl stop dorad

Restart service

sudo systemctl restart dorad

Check service status

sudo systemctl status dorad

Check service logs

sudo journalctl -u dorad -f --no-hostname -o cat

Remove node

cd $HOME
sudo systemctl stop dorad
sudo systemctl disable dorad
sudo rm /etc/systemd/system/dora.service
sudo systemctl daemon-reload
rm -f $(which dorad)
rm -rf ~/.dorad
rm -rf $HOME/doravota