Useful commands
Service operations ⚙️
Check logs
sudo journalctl -u lavad -f
Start service
sudo systemctl start lavad
Stop service
sudo systemctl stop lavad
Restart service
sudo systemctl restart lavad
Check service status
sudo systemctl status lavad
Reload services
sudo systemctl daemon-reload
Enable Service
sudo systemctl enable lavad
Disable Service
sudo systemctl disable lavad
Sync info
lavad status 2>&1 | jq .SyncInfo
Node info
lavad status 2>&1 | jq .NodeInfo
Your node peer
echo $(lavad tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.lava/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Key management
Add New Wallet
lavad keys add $WALLET
Restore executing wallet
lavad keys add $WALLET --recover
List All Wallets
lavad keys list
Delete wallet
lavad keys delete $WALLET
Check Balance
lavad q bank balances $(lavad keys show $WALLET -a)
Export Key (save to wallet.backup)
lavad keys export $WALLET
Import Key (restore from wallet.backup)
lavad keys import $WALLET wallet.backup
Tokens
Withdraw all rewards
lavad tx distribution withdraw-all-rewards --from $WALLET --chain-id lava-testnet-2 --fees 300ulava
Withdraw rewards and commission from your validator
lavad tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id lava-testnet-2 --fees 300ulava -y
Check your balance
lavad query bank balances $WALLET_ADDRESS
Delegate to Yourself
lavad tx staking delegate $(lavad keys show $WALLET --bech val -a) 1000000ulava --from $WALLET --chain-id lava-testnet-2 --fees 300ulava -y
Delegate
lavad tx staking delegate <TO_VALOPER_ADDRESS> 1000000ulava --from $WALLET --chain-id lava-testnet-2 --fees 300ulava -y
Redelegate Stake to Another Validator
lavad tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000ulava --from $WALLET --chain-id lava-testnet-2 --fees 300ulava -y
Unbond
lavad tx staking unbond $(lavad keys show $WALLET --bech val -a) 1000000ulava --from $WALLET --chain-id lava-testnet-2 --fees 300ulava -y
Transfer Funds
lavad tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000ulava --fees 300ulava -y
Validator operations
Create New Validator
lavad tx staking create-validator \
--amount 1000000ulava \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(lavad tendermint show-validator) \
--moniker "$MONIKER" \
--identity "" \
--details "xxxxxxxxxx" \
--chain-id lava-testnet-2 \
--fees 300ulava \
-y
Edit Existing Validator
lavad tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "xxxxxxxxxx" \
--from $WALLET \
--chain-id lava-testnet-2 \
--fees 300ulava \
-y
Validator info
lavad status 2>&1 | jq .ValidatorInfo
Validator Details
lavad q staking validator $(lavad keys show $WALLET --bech val -a)
Jailing info
lavad q slashing signing-info $(lavad tendermint show-validator)
Unjail validator
lavad tx slashing unjail --from $WALLET --chain-id lava-testnet-2 --fees 300ulava -y
Active Validators List
lavad q staking validators -oj --limit=2000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " " + .description.moniker' | sort -gr | nl
Check Validator key
[[ $(lavad q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(lavad status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"
Signing info
lavad q slashing signing-info $(lavad tendermint show-validator)
Governance
Create New Text Proposal
lavad tx gov submit-proposal \
--title "" \
--description "" \
--deposit 1000000ulava \
--type Text \
--from $WALLET \
--fees 300ulava \
-y
Proposals List
lavad query gov proposals
Proposal ID
View proposal
lavad query gov proposal 1
Vote
lavad tx gov vote 1 yes --from $WALLET --chain-id lava-testnet-2 --fees 300ulava -y
Delete Node
sudo systemctl stop lavad
sudo systemctl disable lavad
sudo rm -rf /etc/systemd/system/lavad.service
sudo rm $(which lavad)
sudo rm -rf $HOME/.lava
sed -i "/LAVA_/d" $HOME/.bash_profile
Last updated