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