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