echo $(zenrockd tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.zenrockd/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 $(zenrockd keys show $WALLET -a)
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
To valoper addressTo wallet addressAmount, urock
Withdraw all rewards
zenrockd tx distribution withdraw-all-rewards --from $WALLET --chain-id gardia-2 --gas auto --gas-adjustment 1.5 --fees 1000urock
Withdraw rewards and commission from your validator
zenrockd tx distribution withdraw-rewards $VALOPER_ADDRESS_zenrock --from $WALLET --commission --chain-id gardia-2 --gas auto --gas-adjustment 1.5 --fees 1000urock -y
Check your balance
zenrockd query bank balances $WALLET_ADDRESS_zenrock
Delegate to Yourself
zenrockd tx staking delegate $(zenrockd keys show $WALLET --bech val -a) 1000000urock --from $WALLET --chain-id gardia-2 --gas auto --gas-adjustment 1.5 --fees 1000urock -y