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