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