Wallet Management
Add New Wallet
selfchaind keys add $WALLETRestore existing wallet
selfchaind keys add $WALLET --recoverList All Wallets
selfchaind keys listDelete wallet
selfchaind keys delete $WALLETCheck Balance
selfchaind q bank balances $(selfchaind keys show $WALLET -a)Export Key (save to wallet.backup)
selfchaind keys export $WALLETView EVM Prived Key
selfchaind keys unsafe-export-eth-key $WALLETImport Key (restore from wallet.backup)
selfchaind keys import $WALLET wallet.backupTokens
Withdraw all rewards
selfchaind tx distribution withdraw-all-rewards --from $WALLET --chain-id selfchain-testnet --fees  -yWithdraw rewards and commission from your validator
selfchaind tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id selfchain-testnet --fees  -yCheck your balance
selfchaind query bank balances $WALLET_ADDRESSDelegate to Yourself
selfchaind tx staking delegate $(selfchaind keys show $WALLET --bech val -a) 1000000uslf --from $WALLET --chain-id selfchain-testnet --fees  -yDelegate
selfchaind tx staking delegate <TO_VALOPER_ADDRESS> 1000000uslf --from $WALLET --chain-id selfchain-testnet --fees  -yRedelegate Stake to Another Validator
selfchaind tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uslf --from $WALLET --chain-id selfchain-testnet --fees  -yUnbond
selfchaind tx staking unbond $(selfchaind keys show $WALLET --bech val -a) 1000000uslf --from $WALLET --chain-id selfchain-testnet --fees  -yTransfer Funds
selfchaind tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uslf --chain-id selfchain-testnet --fees  -yLast updated