Useful Commands
Information
# Check the blocks
cascadiad status 2>&1 | jq ."SyncInfo"."latest_block_height"
# Check logs
journalctl -u cascadiad -f -o cat
# Restart
systemctl restart cascadiad && journalctl -u cascadiad -f -o cat
# Check status
cascadiad status 2>&1 | jq .SyncInfo
# Check balance
cascadiad q bank balances $CASCADIA_ADDRESS
# Check EVM address
cascadiad address-converter $(cascadiad keys show wallet -a)
# Check pubkey of validator
cascadiad tendermint show-validator
# Check validator
cascadiad q staking validator $CASCADIA_VALOPER
cascadiad q staking validators --limit 1000000 -o json | jq '.validators[] | select(.description.moniker="$CASCADIA_VALOPER")' | jq
# Check information of TX_HASH
cascadiad q tx <TX_HASH>
# Check how many blocks were passed by the validator and from which block the asset
cascadiad q slashing signing-info $(cascadiad tendermint show-validator)! If the transactions are not sent with the error account sequence mismatch, expected 18, got 17: incorrect account sequence, then add the flag -s 18 to the command (replace the number with the one that is waiting for the sequence)
Work with wallets
Delete Node
Governance
Peers and RPC
Last updated
Was this helpful?