Useful commands

# Set Vars
MONIKER=<YOUR_MONIKER_NAME_GOES_HERE>
echo "export MONIKER=$MONIKER" >> $HOME/.bash_profile
echo "export XION_CHAIN_ID="xion-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
xiond keys add wallet

#Recover Wallet
xiond keys add wallet --recover

#List Wallet
xiond keys list

#Delete Wallet
xiond keys delete wallet

#Check Wallet Balance
xiond q bank balances $(xiond keys show wallet -a)

VALIDATOR MANAGEMENT

Please adjust , MONIKER , YOUR_KEYBASE_ID , YOUR_DETAILS , YOUR_WEBSITE_URL

#check pubkey 
xiond tendermint show-validator

#Make file validator.json
tee $HOME/.xiond/validator.json > /dev/null << EOF
{
    "pubkey": YOUR_PUBKEY,
    "amount": "1000000uxion",
    "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
xiond --home $HOME/.xiond tx staking create-validator $HOME/.xiond/validator.json --from wallet --chain-id $XION_CHAIN_ID --gas 220000 --gas-prices 1uxion

#Unjail Validator
xiond tx slashing unjail --from wallet --chain-id $XION_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uxion 

#Check Jailed Reason
xiond query slashing signing-info $(xiond tendermint show-validator)

TOKEN MANAGEMENT

#Withdraw Rewards
xiond tx distribution withdraw-all-rewards --from wallet --chain-id $XION_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uxion 

#Withdraw Rewards with Comission
xiond tx distribution withdraw-rewards $(xiond keys show wallet --bech val -a) --commission --from wallet --chain-id $XION_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uxion 

#Delegate Token to your own validator
xiond tx staking delegate $(xiond keys show wallet --bech val -a) 100000uxion --from wallet --chain-id $XION_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uxion 

#Delegate Token to other validator
xiond tx staking redelegate $(xiond keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 100000uxion --from wallet --chain-id $XION_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uxion 

#Unbond Token from your validator
xiond tx staking unbond $(xiond keys show wallet --bech val -a) 100000uxion --from wallet --chain-id $XION_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uxion 

#Send Token to another wallet
xiond tx bank send wallet <TO_WALLET_ADDRESS> 100000uxion --from wallet --chain-id $XION_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uxion

GOVERNANCE

#Vote, You can change the value of yes to no,abstain,nowithveto
xiond tx gov vote 1 yes --from wallet --chain-id $XION_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uxion 

#List all proposals
xiond query gov proposals

#Create new text proposal
xiond tx gov submit-proposal \
--title="Title" \
--description="Description" \
--deposit=10000000uxion \
--type="Text" \
--from=wallet \
--gas-adjustment 1.5 \
--gas "auto" \
--gas-prices=1uxion

SERVICES MANAGEMENT

# Reload Service
sudo systemctl daemon-reload

# Enable Service
sudo systemctl enable xiond

# Disable Service
sudo systemctl disable xiond

# Start Service
sudo systemctl start xiond

# Stop Service
sudo systemctl stop xiond

# Restart Service
sudo systemctl restart xiond

# Check Service Status
sudo systemctl status xiond

# Check Service Logs
sudo journalctl -u xiond -f --no-hostname -o cat

UTILITY

#Set Indexer NULL / KV
sed -i 's|^indexer *=.*|indexer = "kv"|' $HOME/.xiond/config/config.toml

#Get Validator info
xiond status 2>&1 | jq .ValidatorInfo

#Get denom info
xiond q bank denom-metadata -oj | jq

#Get sync status
xiond status 2>&1 | jq .sync_info.catching_up

#Get latest height
xiond status 2>&1 | jq .sync_info.latest_block_height

#Reset Node
xiond tendermint unsafe-reset-all --home $HOME/.xiond --keep-addr-book

DELETE NODE

sudo systemctl stop xiond && sudo systemctl disable xiond && sudo rm /etc/systemd/system/xiond.service && sudo systemctl daemon-reload && sudo rm -rf $(which xiond) && rm -rf $HOME/.xiond

Last updated