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