Add New Wallet
fxcored keys add $WALLET
Restore existing wallet
fxcored keys add $WALLET --recover
List All Wallets
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 dhobyghaut --gas=auto --gas-prices=5000000000apundiai --gas-adjustment=1.5 -y
Withdraw rewards and commission from your validator
fxcored tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id dhobyghaut --gas=auto --gas-prices=5000000000apundiai --gas-adjustment=1.5 -y
Check your balance
fxcored query bank balances $WALLET_ADDRESS
Delegate to Yourself
fxcored tx staking delegate $(fxcored keys show $WALLET --bech val -a) 1000000apundiai --from $WALLET --chain-id dhobyghaut --gas=auto --gas-prices=5000000000apundiai --gas-adjustment=1.5 -y
Delegate
fxcored tx staking delegate <TO_VALOPER_ADDRESS> 1000000apundiai --from $WALLET --chain-id dhobyghaut --gas=auto --gas-prices=5000000000apundiai --gas-adjustment=1.5 -y
Redelegate Stake to Another Validator
fxcored tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000apundiai --from $WALLET --chain-id dhobyghaut --gas=auto --gas-prices=5000000000apundiai --gas-adjustment=1.5 -y
Unbond
fxcored tx staking unbond $(fxcored keys show $WALLET --bech val -a) 1000000apundiai --from $WALLET --chain-id dhobyghaut --gas=auto --gas-prices=5000000000apundiai --gas-adjustment=1.5 -y
Transfer Funds
fxcored tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000apundiai --chain-id dhobyghaut --gas=auto --gas-prices=5000000000apundiai --gas-adjustment=1.5 -y