Useful commands
# Set Vars
MONIKER=<YOUR_MONIKER_NAME_GOES_HERE>
echo "export MONIKER=$MONIKER" >> $HOME/.bash_profile
echo "export FIAMMA_CHAIN_ID="fiamma-testnet-1"" >> $HOME/.bash_profile
source $HOME/.bash_profile
WALLET MANAGEMENT
Add Wallet Specify the value <wallet> with your own wallet name
#Add new wallet
fiammad keys add wallet
#Recover Wallet
fiammad keys add wallet --recover
#List Wallet
fiammad keys list
#Delete Wallet
fiammad keys delete wallet
#Check Wallet Balance
fiammad q bank balances $(fiammad keys show wallet -a)
VALIDATOR MANAGEMENT
Please adjust , MONIKER , YOUR_KEYBASE_ID , YOUR_DETAILS , YOUR_WEBSITE_URL
#check pubkey
fiammad tendermint show-validator
#Make file validator.json
tee $HOME/.fiamma /validator.json > /dev/null << EOF
{
"pubkey": YOUR_PUBKEY,
"amount": "10000ufia",
"moniker": "MONIKER",
"identity": "YOUR_KEYBASE_ID",
"website": "YOUR_WEBSITE_URL",
"details": "YOUR_DETAILS.",
"commission-rate": "0.1",
"commission-max-rate": "0.2",
"commission-max-change-rate": "0.01",
"min-self-delegation": "1"
}
EOF
#Create Validator
fiammad --home $HOME/.fiamma tx staking create-validator $HOME/.fiamma/validator.json --from wallet --chain-id $FIAMMA_CHAIN_ID --gas 220000 --gas-prices 1ufia
#Edit Validator
fiammad tx staking edit-validator \
--new-moniker="YOUR MONIKER" \
--identity="IDENTITY KEYBASE" \
--details="DETAILS VALIDATOR" \
--website="LINK WEBSITE" \
--chain-id=$FIAMMA_CHAIN_ID \
--from=wallet \
--gas-adjustment=1.5 \
--gas="auto" \
--gas-prices=1ufia
#Unjail Validator
fiammad tx slashing unjail --from wallet --chain-id $FIAMMA_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1ufia
#Check Jailed Reason
fiammad query slashing signing-info $(fiammad tendermint show-validator)
TOKEN MANAGEMENT
#Withdraw Rewards
fiammad tx distribution withdraw-all-rewards --from wallet --chain-id $FIAMMA_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1ufia
#Withdraw Rewards with Comission
fiammad tx distribution withdraw-rewards $(fiammad keys show wallet --bech val -a) --commission --from wallet --chain-id $FIAMMA_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1ufia
#Delegate Token to your own validator
fiammad tx staking delegate $(fiammad keys show wallet --bech val -a) 100000ufia --from wallet --chain-id $FIAMMA_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1ufia
#Delegate Token to other validator
fiammad tx staking redelegate $(fiammad keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 100000ufia --from wallet --chain-id $FIAMMA_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1ufia
#Unbond Token from your validator
fiammad tx staking unbond $(fiammad keys show wallet --bech val -a) 100000ufia --from wallet --chain-id $FIAMMA_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1ufia
#Send Token to another wallet
fiammad tx bank send wallet <TO_WALLET_ADDRESS> 100000ufia --from wallet --chain-id $FIAMMA_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1ufia
GOVERNANCE
#Vote, You can change the value of yes to no,abstain,nowithveto
fiammad tx gov vote 1 yes --from wallet --chain-id $FIAMMA_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1ufia
#List all proposals
fiammad query gov proposals
#Create new text proposal
fiammad tx gov submit-proposal \
--title="Title" \
--description="Description" \
--deposit=10000000ufia \
--type="Text" \
--from=wallet \
--gas-adjustment 1.5 \
--gas "auto" \
--gas-prices=1ufia
SERVICES MANAGEMENT
# Reload Service
sudo systemctl daemon-reload
# Enable Service
sudo systemctl enable fiammad
# Disable Service
sudo systemctl disable fiammad
# Start Service
sudo systemctl start fiammad
# Stop Service
sudo systemctl stop fiammad
# Restart Service
sudo systemctl restart fiammad
# Check Service Status
sudo systemctl status fiammad
# Check Service Logs
sudo journalctl -u fiammad -f --no-hostname -o cat
UTILITY
#Set Indexer NULL / KV
sed -i 's|^indexer *=.*|indexer = "null"|' $HOME/.fiamma/config/config.toml
#Get Validator info
fiammad status 2>&1 | jq .ValidatorInfo
#Get denom info
fiammad q bank denom-metadata -oj | jq
#Get sync status
fiammad status 2>&1 | jq .SyncInfo.catching_up
#Get latest height
fiammad status 2>&1 | jq .SyncInfo.latest_block_height
#Reset Node
fiammad tendermint unsafe-reset-all --home $HOME/.fiamma --keep-addr-book
DELETE NODE
WARNING! Use this command wisely Backup your key first it will remove node from your system
sudo systemctl stop fiammad && sudo systemctl disable fiammad && sudo rm /etc/systemd/system/fiammad.service && sudo systemctl daemon-reload && sudo rm -rf $(which fiammad) && rm -rf $HOME/.fiamma
Last updated