Wallet Management

Add New Wallet

fxcored keys add $WALLET

Restore existing wallet

fxcored keys add $WALLET --recover

List All Wallets

fxcored keys list

Delete wallet

fxcored keys delete $WALLET

Check Balance

fxcored q bank balances $(fxcored keys show $WALLET -a)

Export Key (save to wallet.backup)

fxcored keys export $WALLET

View EVM Prived Key

fxcored keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

fxcored keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

fxcored tx distribution withdraw-all-rewards --from $WALLET --chain-id fxcore --fees -y

Withdraw rewards and commission from your validator

fxcored tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id fxcore --fees -y

Check your balance

fxcored query bank balances $WALLET_ADDRESS

Delegate to Yourself

fxcored tx staking delegate $(fxcored keys show $WALLET --bech val -a) 1000000nivea --from $WALLET --chain-id fxcore --fees -y

Delegate

fxcored tx staking delegate <TO_VALOPER_ADDRESS> 1000000nivea --from $WALLET --chain-id fxcore --fees -y

Redelegate Stake to Another Validator

fxcored tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000nivea --from $WALLET --chain-id fxcore --fees -y

Unbond

fxcored tx staking unbond $(fxcored keys show $WALLET --bech val -a) 1000000nivea --from $WALLET --chain-id fxcore --fees -y

Transfer Funds

fxcored tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000nivea --chain-id fxcore --fees -y

Last updated