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