Useful commands
π Key managementβ
Add new keyβ
lavad keys add wallet
Recover existing keyβ
lavad keys add wallet --recover
List all keysβ
lavad keys list
Delete keyβ
lavad keys delete wallet
Export key to the fileβ
lavad keys export wallet
Import key from the fileβ
lavad keys import wallet wallet.backup
Query wallet balanceβ
lavad q bank balances $(lavad keys show wallet -a)
π· Validator managementβ
info
Please make sure you have adjusted moniker, identity, details and website to match your values.
Create new validatorβ
lavad tx staking create-validator \
--amount 1000000ulava \
--pubkey $(lavad comet show-validator) \
--moniker "owlstake" \
--identity "6B73E2068E0C0C4C" \
--details "We are a Professional Validator of PoS Cryptocurrencies who helps investors and token holders gain profits from their assets by consistently increasing their yields via non-custodial staking. Join us, stake, and earn." \
--website "https://owlstake.com" \
--chain-id lava-mainnet-1 \
--commission-rate 0.05 \
--commission-max-rate 0.20 \
--commission-max-change-rate 0.1 \
--min-self-delegation 1 \
--from wallet \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.000000001ulava \
-y