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