Status Inquiry and Control
Sync Status
pryzmd status 2>&1 | jq .SyncInfo
Validator Status
pryzmd status 2>&1 | jq .ValidatorInfo
Node Status
pryzmd status 2>&1 | jq .NodeInfo
Validator Key Control
[[ $(pryzmd q staking validator $(pryzmd keys show wallet --bech val -a) -oj | jq -r .consensus_pubkey.key) = $(pryzmd status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\n\e[1m\e[32mTrue\e[0m\n" || echo -e "\n\e[1m\e[31mFalse\e[0m\n"
TX Inquiry
pryzmd query tx <TX_ID>
Learn Peer Address
echo $(pryzmd tendermint show-node-id)@$(curl -s ifconfig.me):$(cat $HOME/.pryzm/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Learn Connected Peers
curl -sS http://localhost:31657/net_info | jq -r ".result.peers[] | "\(.
Last updated