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