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