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