Add New Wallet
titand keys add $WALLET
Restore existing wallet
titand keys add $WALLET --recover
List All Wallets
Delete wallet
titand keys delete $WALLET
Check Balance
titand q bank balances $(titand keys show $WALLET -a)
Export Key (save to wallet.backup)
titand keys export $WALLET
View EVM Prived Key
titand keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
titand keys import $WALLET wallet.backup
Tokens
Withdraw all rewards
titand tx distribution withdraw-all-rewards --from $WALLET --chain-id titan-test-4 --fees 500uttnt-y
Withdraw rewards and commission from your validator
titand tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id titan-test-4 --fees 500uttnt-y
Check your balance
titand query bank balances $WALLET_ADDRESS
Delegate to Yourself
titand tx staking delegate $(titand keys show $WALLET --bech val -a) 1000000uttnt --from $WALLET --chain-id titan-test-4 --fees 500uttnt-y
Delegate
titand tx staking delegate <TO_VALOPER_ADDRESS> 1000000uttnt --from $WALLET --chain-id titan-test-4 --fees 500uttnt-y
Redelegate Stake to Another Validator
titand tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uttnt --from $WALLET --chain-id titan-test-4 --fees 500uttnt-y
Unbond
titand tx staking unbond $(titand keys show $WALLET --bech val -a) 1000000uttnt --from $WALLET --chain-id titan-test-4 --fees 500uttnt-y
Transfer Funds
titand tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uttnt --chain-id titan-test-4 --fees 500uttnt-y