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