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