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