echo $(althea tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.althea/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Key management
Add New Wallet
althea keys add $WALLET
Restore executing wallet
althea keys add $WALLET --recover
List All Wallets
althea keys list
Delete wallet
althea keys delete $WALLET
Check Balance
althea q bank balances $WALLET_ADDRESS
Export Key (save to wallet.backup)
althea keys export $WALLET
View EVM Prived Key
althea keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
althea keys import $WALLET wallet.backup
Tokens
WITHDRAW REWARDS FROM ALL VALIDATORS
althea tx distribution withdraw-all-rewards --from wallet --chain-id althea_258432-1 --gas-adjustment 1.4 --gas auto --gas-prices 0.002aalthea -y
WITHDRAW COMMISSION AND REWARDS FROM YOUR VALIDATOR
althea tx distribution withdraw-rewards $(althea keys show wallet --bech val -a) --commission --from wallet --chain-id althea_258432-1 --gas-adjustment 1.4 --gas auto --gas-prices 0.002aalthea -y
DELEGATE TOKENS TO YOURSELF
althea tx staking delegate $(althea keys show wallet --bech val -a) 1000000aalthea --from wallet --chain-id althea_258432-1 --gas-adjustment 1.4 --gas auto --gas-prices 0.002aalthea -y