Skip to main content

CLI Cheatsheet

Chain ID: gitopia | Current Node Version: v5.1.0

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

gitopiad keys add KEY

Recover key (via existing mnemonic)

gitopiad keys add KEY --recover

List all keys

gitopiad keys list

Delete key

gitopiad keys delete KEY

Wallet

Wallet balance

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

Send

gitopiad tx bank send YOUR_KEY RECEIVER_ADDRESS 1000000ulore \
--chain-id gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--from KEY

Withdraw rewards from all validators

gitopiad tx distribution withdraw-all-rewards \
--chain-id gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--from KEY

Withdraw Rewards including Commission

gitopiad tx distribution withdraw-rewards VALIDATOR_ADRESS \
--commission \
--chain-id gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--from KEY

Delegate tokens to yourself

gitopiad tx staking delegate $(gitopiad keys show KEY --bech val -a) 1000000ulore \
--chain-id gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--from KEY

Delegate tokens to validator

gitopiad tx staking delegate VALIDATOR_ADDRESS 1000000ulore \
--chain-id gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--from KEY

Redelegate tokens to another validator

gitopiad tx staking redelegate $(gitopiad keys show KEY --bech val -a) VALIDATOR_ADDRESS 1000000ulore \
--chain-id gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--from KEY

Unbond tokens from your validator

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

Governance

List of all proposals

gitopiad query gov proposals --node https://gitopia-rpc.noders.services:443

Check vote

gitopiad query gov proposal PROPOSAL_NUMBER \
--chain-id gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--output json | jq

Vote

Vote options:

  • yes
  • no
  • no_with_veto
  • abstain
gitopiad tx gov vote PROPOSAL_NUMBER VOTE_OPTION \
--chain-id gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--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.

gitopiad tx staking create-validator \
--amount 1000000ulore \
--commission-max-change-rate "0.05" \
--commission-max-rate "0.10" \
--commission-rate "0.05" \
--min-self-delegation "1" \
--pubkey=$(gitopiad 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 gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--from KEY

Edit validator

gitopiad tx staking edit-validator \
--new-moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id gitopia \
--commission-rate 0.05 \
--from KEY \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \

Unjail

gitopiad tx slashing unjail \
--chain-id gitopia \
--node https://gitopia-rpc.noders.services:443 --fees 3000ulore \
--from KEY

Jail reason

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

Validator details

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

Maintenance

Get validator info

gitopiad status 2>&1 | jq .ValidatorInfo

Get sync info

gitopiad status 2>&1 | jq .SyncInfo

Get node peer

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

Check if validator key is correct

[[ $(gitopiad q staking validator $(gitopiad keys show KEY --bech val -a) -oj | jq -r .consensus_pubkey.key) = $(gitopiad 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://gitopia-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.001ulore\"/" ~/.gitopia/config/app.toml

###Enable prometheus

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

Reset chain data

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

Service Management

Reload service configuration

sudo systemctl daemon-reload

Enable service

sudo systemctl enable gitopiad

Disable service

sudo systemctl disable gitopiad

Start service

sudo systemctl start gitopiad

Stop service

sudo systemctl stop gitopiad

Restart service

sudo systemctl restart gitopiad

Check service status

sudo systemctl status gitopiad

Check service logs

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

Remove node

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