Wallet Management

Add New Wallet

firmachaind keys add $WALLET

Restore existing wallet

firmachaind keys add $WALLET --recover

List All Wallets

firmachaind keys list

Delete wallet

firmachaind keys delete $WALLET

Check Balance

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

Export Key (save to wallet.backup)

firmachaind keys export $WALLET

View EVM Prived Key

firmachaind keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

firmachaind keys import $WALLET wallet.backup

Tokens

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 -y

Withdraw 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 -y

Check your balance

firmachaind query bank balances $WALLET_ADDRESS

Delegate 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 -y

Delegate

firmachaind tx staking delegate <TO_VALOPER_ADDRESS> 1000000ufct --from $WALLET --chain-id colosseum-1 --gas-prices 0.1ufct --gas-adjustment 1.5 --gas auto -y

Redelegate 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 -y

Unbond

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 -y

Transfer 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 -y

Last updated