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