Lava Cheat Sheet and Key Management
This guide provides essential commands for managing wallets, nodes, and validators on the Lava network. Make sure the environment variables mentioned at the end are correctly configured before using these commands.
1. Key Management
Create a New Wallet
bash
lavad keys add $WALLETKeep the generated seed phrase safe. It is the only way to recover your wallet.
Recover Wallet from Seed Phrase
bash
lavad keys add $WALLET --recoverYou will be prompted to enter your seed phrase.
List Wallets
bash
lavad keys listShow Wallet Details
bash
lavad keys show $WALLETDelete Wallet
bash
lavad keys delete $WALLET2. Wallet Operations
Check Balance
bash
lavad query bank balances $(lavad keys show $WALLET -a)Send Tokens
bash
lavad tx bank send $(lavad keys show $WALLET -a) <receiver_wallet_address> <amount><denom> --chain-id $LAVA_CHAIN_ID --gas-prices 0.0001ulava --gas-adjustment 1.5 --gas auto -yExample:
bash
lavad tx bank send $(lavad keys show $WALLET -a) lava@1...yyy 1000000ulava --chain-id $LAVA_CHAIN_ID --gas-prices 0.0001ulava --gas-adjustment 1.5 --gas auto -yReplace <amount> with the number of tokens and <denom> with the token denomination (e.g., ulava).
3. Validator Management
Ensure you have enough ulava tokens for self-delegation and transaction fees before creating a validator.
Create Validator
Configuration:
Generated Code:
Loading...Parameter Explanation:
| Parameter | Details |
|---|---|
--amount | Tokens self-delegated to the validator. 1000000ulava = 1 LAVA |
--from | Wallet used for the transaction. |
--commission-rate | Initial commission rate. |
--commission-max-rate | Maximum allowed commission rate. |
--commission-max-change-rate | Max daily commission change. |
--min-self-delegation | Minimum tokens for self-delegation. |
--pubkey | Validator's public key. |
--moniker | Validator nickname. |
--identity | Keybase ID for identity verification. |
--website | Validator's website URL. |
--details | Validator description. |
--security-contact | Email for security-related contact. |
Edit Validator
bash
lavad tx staking edit-validator \
--moniker "$MONIKER" \
--identity "<new_keybase_id>" \
--website "<new_website>" \
--security-contact "<new_contact_email>" \
--details "<new_description>" \
--commission-rate "0.07" \
--chain-id $LAVA_CHAIN_ID \
--gas-prices 0.0001ulava \
--gas-adjustment 1.5 \
--gas auto \
--from $WALLET \
-yDelegate Tokens
bash
lavad tx staking delegate $(lavad keys show $WALLET --bech val -a) <amount>ulava \
--chain-id $LAVA_CHAIN_ID \
--gas-prices 0.0001ulava \
--gas-adjustment 1.5 \
--gas auto \
--from $WALLET \
-yWithdraw Rewards (Delegator)
bash
lavad tx distribution withdraw-rewards $(lavad keys show $WALLET --bech val -a) \
--chain-id $LAVA_CHAIN_ID \
--gas-prices 0.0001ulava \
--gas-adjustment 1.5 \
--gas auto \
--from $WALLET \
-yWithdraw Rewards (Validator Commission)
bash
lavad tx distribution withdraw-rewards $(lavad keys show $WALLET --bech val -a) --commission \
--chain-id $LAVA_CHAIN_ID \
--gas-prices 0.0001ulava \
--gas-adjustment 1.5 \
--gas auto \
--from $WALLET \
-yUnbond Tokens
bash
lavad tx staking unbond $(lavad keys show $WALLET --bech val -a) <amount>ulava \
--chain-id $LAVA_CHAIN_ID \
--gas-prices 0.0001ulava \
--gas-adjustment 1.5 \
--gas auto \
--from $WALLET \
-yRedelegate Tokens
bash
lavad tx staking redelegate $(lavad keys show $WALLET --bech val -a) <destination_validator_address> <amount>ulava \
--chain-id $LAVA_CHAIN_ID \
--gas-prices 0.0001ulava \
--gas-adjustment 1.5 \
--gas auto \
--from $WALLET \
-y4. Node Status & Info
Check Sync Status
bash
lavad status 2>&1 | jq .result.sync_infoCheck Peer Info
bash
lavad status 2>&1 | jq .result.sync_info.catching_up
lavad status 2>&1 | jq .result.node_info.listen_addrShow Node ID
bash
lavad tendermint show-node-idRestart Node
bash
sudo systemctl restart lavadView Node Logs
bash
sudo journalctl -u lavad -fo cat5. Governance
List Proposals
bash
lavad query gov proposalsView Proposal Details
bash
lavad query gov proposal <proposal_id>Vote on Proposal
bash
lavad tx gov vote <proposal_id> <yes|no|no_with_veto|abstain> \
--chain-id $LAVA_CHAIN_ID \
--gas-prices 0.0001ulava \
--gas-adjustment 1.5 \
--gas auto \
--from $WALLET \
-y6. Environment Variables
Make sure to set these in your ~/.bash_profile or equivalent shell config:
bash
export WALLET="wallet"
export MONIKER="YourMoniker"
export LAVA_CHAIN_ID="lava-mainnet-1"
export LAVA_PORT="29"Apply the changes with:
bash
source ~/.bash_profileThis cheat sheet is provided to streamline Lava validator and wallet management.
