Useful Commands
Information
# Check the blocks
empowerd status 2>&1 | jq ."SyncInfo"."latest_block_height"
# Check logs
journalctl -u empowerd -f -o cat
# Restart
systemctl restart empowerd && journalctl -u empowerd -f -o cat
# Check status
empowerd status 2>&1 | jq .SyncInfo
# Check balance
empowerd q bank balances $EMPOWER_ADDRESS
# Check EVM address
empowerd address-converter $(empowerd keys show wallet -a)
# Check pubkey of validator
empowerd tendermint show-validator
# Check validator
empowerd q staking validator $EMPOWER_VALOPER
empowerd q staking validators --limit 1000000 -o json | jq '.validators[] | select(.description.moniker="$EMPOWER_VALOPER")' | jq
# Check information of TX_HASH
empowerd q tx <TX_HASH>
# Check how many blocks were passed by the validator and from which block the asset
empowerd q slashing signing-info $(empowerd tendermint show-validator)Last updated