echo $(zenrockd tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.zrchain/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Key management
Add New Wallet
zenrockd keys add $WALLET
Restore executing wallet
zenrockd keys add $WALLET --recover
List All Wallets
zenrockd keys list
Delete wallet
zenrockd keys delete $WALLET
Check Balance
zenrockd q bank balances $WALLET_ADDRESS
Export Key (save to wallet.backup)
zenrockd keys export $WALLET
View EVM Prived Key
zenrockd keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
zenrockd keys import $WALLET wallet.backup
Tokens
Withdraw all rewards
zenrockd tx distribution withdraw-all-rewards --from $WALLET --chain-id diamond-1 --gas auto --gas-adjustment 1.5 --fees 30urock
Withdraw rewards and commission from your validator
zenrockd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id diamond-1 --gas auto --gas-adjustment 1.5 --fees 30urock -y
Check your balance
zenrockd query bank balances $WALLET_ADDRESS
Delegate to Yourself
zenrockd tx validation delegate $(zenrockd keys show $WALLET --bech val -a) 1000000urock --from $WALLET --chain-id diamond-1 --gas auto --gas-adjustment 1.5 --fees 30urock -y