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