Management
ADD NEW KEY
fiammad keys add wallet
RECOVER EXISTING KEY
fiammad keys add wallet --recover
LIST ALL KEYS
fiammad keys list
DELETE KEY
fiammad keys delete wallet
EXPORT KEY TO A FILE
fiammad keys export wallet
IMPORT KEY FROM A FILE
fiammad keys import wallet wallet.backup
QUERY WALLET BALANCE
fiammad q bank balances $(fiammad keys show wallet -a)
Please make sure you have adjusted moniker, identity, details and website to match your values.
CREATE NEW VALIDATOR
fiammad tx staking create-validator \
--amount 1000000ufia \
--pubkey $(fiammad tendermint show-validator) \
--moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id fiamma-testnet-1 \
--commission-rate 0.05 \
--commission-max-rate 0.20 \
--commission-max-change-rate 0.05 \
--min-self-delegation 1 \
--from wallet \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
EDIT EXISTING VALIDATOR
fiammad tx staking edit-validator \
--new-moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id fiamma-testnet-1 \
--commission-rate 0.05 \
--from wallet \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
UNJAIL VALIDATOR
fiammad tx slashing unjail \
--from wallet \
--chain-id fiamma-testnet-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
JAIL REASON
fiammad query slashing signing-info $(fiammad tendermint show-validator)
LIST ALL ACTIVE VALIDATORS
fiammad q staking validators -oj --limit=3000 \
| jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' \
| jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' \
| sort -gr \
| nl
LIST ALL INACTIVE VALIDATORS
fiammad q staking validators -oj --limit=3000 \
| jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED")' \
| jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' \
| sort -gr \
| nl
VIEW VALIDATOR DETAILS
fiammad q staking validator $(fiammad keys show wallet --bech val -a)
WITHDRAW REWARDS FROM ALL VALIDATORS
fiammad tx distribution withdraw-all-rewards \
--from wallet \
--chain-id fiamma-testnet-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
WITHDRAW COMMISSION AND REWARDS FROM YOUR VALIDATOR
fiammad tx distribution withdraw-rewards $(fiammad keys show wallet --bech val -a) \
--commission \
--from wallet \
--chain-id fiamma-testnet-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
DELEGATE TOKENS TO YOURSELF
fiammad tx staking delegate $(fiammad keys show wallet --bech val -a) 1000000ufia \
--from wallet \
--chain-id fiamma-testnet-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
DELEGATE TOKENS TO VALIDATOR
fiammad tx staking delegate <TO_VALOPER_ADDRESS> 1000000ufia \
--from wallet \
--chain-id fiamma-testnet-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
REDELEGATE TOKENS TO ANOTHER VALIDATOR
fiammad tx staking redelegate $(fiammad keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 1000000ufia \
--from wallet \
--chain-id fiamma-testnet-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
UNBOND TOKENS FROM YOUR VALIDATOR
fiammad tx staking unbond $(fiammad keys show wallet --bech val -a) 1000000ufia \
--from wallet \
--chain-id fiamma-testnet-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
SEND TOKENS TO THE WALLET
fiammad tx bank send wallet <TO_WALLET_ADDRESS> 1000000ufia \
--from wallet \
--chain-id fiamma-testnet-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.00001ufiaufia \
-y
Last updated