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