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