Useful Commands
# Check the balance
gitopiad status 2>&1 | jq ."SyncInfo"."latest_block_height"# Check logs
journalctl -u gitopiad -f -o cat# Check status
gitopiad status 2>&1 | jq .SyncInfo# Check balance
gitopiad q bank balances $GITOPIA_ADDRESS# Check pubkey of validator
gitopiad tendermint show-validator# Check validator
gitopiad q staking validator $GITOPIA_VALOPER
gitopiad q staking validators --limit 1000000 -o json | jq '.validators[] | select(.description.moniker="$GITOPIA_VALOPER")' | jq# Check information of TX_HASH
gitopiad q tx <TX_HASH># Check how many blocks were passed by the validator and from which block the asset
gitopiad q slashing signing-info $(gitopiad tendermint show-validator)# Collect rewards from all validators delegated to them (without commission)
gitopiad tx distribution withdraw-all-rewards --from wallet --fees 5000ulore -yLast updated