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