STEP 1 Update your server to get the latest version
sudo apt update && sudo apt upgrade -y
Lava Network is a decentralized RPC providers , enabling the crypto-users to continue their transactions no matter what happens to one specific RPC.
sudo apt update && sudo apt upgrade -y
sudo apt install git curl wget tar lz4 unzip jq build-essential pkg-config clang bsdmainutils make ncdu -y
Go is a programming language allowing each node of the Cosmos ecosystem to operate.
Go is a compiled and concurrent programming language inspired by C and Pascal.
This language was developed by Google from an initial concept by Robert Griesemer, Rob Pike and Ken Thompson.
cd $HOME
version="1.20.5"
wget "https://golang.org/dl/go$version.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$version.linux-amd64.tar.gz"
rm "go$version.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
Check GO version, it must return : go version go1.20.5 linux/amd64
go version
Top page
Here we will install the node for Lava with this binary version : v1.2.0
Please be sure to install the latest version one last minute version can be published ! Please check by yourself here...LAVA_BINARY="lavad"
echo "export LAVA_BINARY="${LAVA_BINARY} >> $HOME/.bash_profile
source $HOME/.bash_profile
cd $HOME
git clone https://github.com/lavanet/lava.git
cd lava
git checkout v1.2.0
make install
Check if the binary "lavad" version v1.2.0 has been correctly installed
lavad version
Top page
What does moniker mean?
A personal name or nickname. This name (moniker) will appear in the blockchain explorer.
SPACE in your moniker will create errors
LAVA_MONIKER="Replace_AVIAONE_by_your_name"
Top page
We are now ready to initialze the node
lavad init $LAVA_MONIKER --chain-id lava-testnet-2
Top page
Add Seeds
"
##########################
## config.toml #####
##########################
# How long we wait for a proposal block before prevoting nil
timeout_propose = "1s"
# How much timeout_propose increases with each round
timeout_propose_delta = "500ms"
# How long we wait after receiving +2/3 prevotes for “anything” (ie. not a single block or nil)
timeout_prevote = "1s"
timeout_prevote_delta = "500ms"
# How long we wait after receiving +2/3 precommits for “anything” (ie. not a single block or nil)
timeout_precommit = "1s"
# How much the timeout_precommit increases with each round
timeout_precommit_delta = "500ms"
# How long we wait after committing a block, before starting on the new
timeout_commit = "15s"
# EmptyBlocks mode and possible interval between empty blocks
create_empty_blocks = true
create_empty_blocks_interval = "15s"
# How long to wait for a tx to be committed during /broadcast_tx_commit.
timeout_broadcast_tx_commit = "15s"
# Make progress as soon as we have all the precommits (as if TimeoutCommit = 0)
skip_timeout_commit = false
###########################################################
"
Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0ulava\"|" $HOME/.lava/config/app.toml
Download genesis
wget -O $HOME/.lava/config/genesis.json "https://services.lava-testnet-2.lava.aviaone.com/genesis.json"
Download addrbook
wget -O $HOME/.lava/config/addrbook.json "https://services.lava-testnet-2.lava.aviaone.com/addrbook.json"
Add Seeds
SEEDS="258f523c96efde50d5fe0a9faeea8a3e83be22ca@seed.lava-testnet-2.lava.aviaone.com:20271,3a445bfdbe2d0c8ee82461633aa3af31bc2b4dc0@testnet2-seed-node.lavanet.xyz:26656,e593c7a9ca61f5616119d6beb5bd8ef5dd28d62d@testnet2-seed-node2.lavanet.xyz:26656"
sed -i -e "s|^seeds *=.*|seeds = \"$SEEDS\"|" $HOME/.lava/config/config.toml
Change ports
Advanced users ONLY !
Clear Data
lavad tendermint unsafe-reset-all $HOME/.lava --keep-addr-book
Top page
This will let you start and stop your node with /etc/systemd/system
sudo tee /etc/systemd/system/lavad.service > /dev/null <<EOF
[Unit]
Description=LAVA\n
After=network.target
[Service]
Type=simple
User=$USER
ExecStart=$(which lavad) start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl enable lavad
sudo systemctl daemon-reload
This command will start your node
Do not use it now if you are going to use below : Snapshot | State Sync (because your node shouldn't start now... but after the Snapshot | State Sync)
sudo systemctl restart lavad && journalctl -u lavad -f --no-hostname -o cat
Top page
(updated every 24 hours)
File name : https://services.lava-testnet-2.lava.aviaone.com/lava-testnet-2_2024-05-02.tar.gz
Download this filesudo systemctl stop lavad
cp $HOME/.lava/data/priv_validator_state.json $HOME/.lava/priv_validator_state.json.backup
lavad tendermint unsafe-reset-all --home $HOME/.lava --keep-addr-book
wget -c https://services.lava-testnet-2.lava.aviaone.com/lava-testnet-2_2024-05-02.tar.gz -O - | tar -xz -C $HOME/.lava
mv $HOME/.lava/priv_validator_state.json.backup $HOME/.lava/data/priv_validator_state.json
sudo systemctl start lavad && sudo journalctl -u lavad -f --no-hostname -o cat
Please be sure to use the latest binary version : 1.2.0
sed -i "/\[statesync\]/, /^enable =/ s/=.*/= false/;\
/^rpc_servers =/ s|=.*|= \"\"|;\
/^trust_height =/ s/=.*/= 0/;\
/^trust_hash =/ s/=.*/= \"\"/" $HOME/.lava/config/config.toml
sudo systemctl stop lavad
SNAP_RPC="https://rpc.lava-testnet-2.lava.aviaone.com:443"
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
sed -i "/\[statesync\]/, /^enable =/ s/=.*/= true/;\
/^rpc_servers =/ s|=.*|= \"$SNAP_RPC,$SNAP_RPC\"|;\
/^trust_height =/ s/=.*/= $BLOCK_HEIGHT/;\
/^trust_hash =/ s/=.*/= \"$TRUST_HASH\"/" $HOME/.lava/config/config.toml
sudo systemctl stop lavad && lavad tendermint unsafe-reset-all --home $HOME/.lava --keep-addr-book
sudo systemctl start lavad && journalctl -u lavad -f --no-hostname -o cat
Watch your logs and be patient it can take 5 minutes.... !!
With the command used just above, your node just started, now BE PATIENT your node has started to work and will need time to get synced on the last block.
First check your logs and have a look at what's going on !
You should see some output like this which confirm that your node is indexing blocks
### indexed block exents height=1166598 module=txindex
How to check if your node is already fully synced? ?
lavad status 2>&1 | jq .SyncInfo
The current block number is :1166598 and the last block app hash is :/4/DdKa19y7Vqk3hMuCAQVZPkjeYyRHxkGow1DJubKE=
true mean syncing on the way, and true is NOT SYNCED
You will see an output with :
"catching_up": false
If you get true instead of false, please wait... it's not done yet, it's on the way...
true mean syncing on the way, and true is NOT SYNCED
The current block number is :1166598 and the last block app hash is :/4/DdKa19y7Vqk3hMuCAQVZPkjeYyRHxkGow1DJubKE=
Top pageWhy it's better to get synced before to create or recover a wallet ?
Because when your wallet will be created or recovered, if you are not synced, you will not be able to check the balance !
Create Wallet
lavad keys add name_wallet
Recover Wallet
lavad keys add name_wallet --recover
Top page
Create your validator if you are not synced, you will get some troubles...
lavad tx staking create-validator \
--amount=1000000ulava \
--pubkey=$(lavad tendermint show-validator) \
--moniker="YOUR_NICKNAME" \
--chain-id=lava-testnet-2 \
--commission-rate=0.05 \
--commission-max-rate=0.2 \
--commission-max-change-rate=0.02 \
--min-self-delegation=1 \
--website="https://your-website.com" \
--identity="keyBASE_id" \
--details="This is will be display in the blockchain explorer. Write here something about you"\
--gas-prices=0.1ulava \
--gas-adjustment=1.5 \
--gas=auto \
--from=WRITE_HERE_YOUR_WALLET_ADDRESS
Top page
Congratulations, your made all the steps above necessary to setup the node for LAVA (chain-id=lava-testnet-2) with success and your node is already online now.
lavad q bank balances YOUR_WALLET_NUMBER
Must return false to get synced
lavad status 2>&1 | jq .SyncInfo
journalctl -u lavad -f --no-hostname -o cat
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx gov vote 14 yes --from YOUR_WALLET_NUMBER --chain-id lava-testnet-2
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx slashing unjail --chain-id=lava-testnet-2 --from YOUR_WALLET_NUMBER -y
sudo systemctl restart lavad && journalctl -u lavad -f --no-hostname -o cat
lavad q bank balances YOUR_WALLET_NUMBER
lavad keys add YOUR_WALLER_NAME
lavad keys add YOUR_WALLET_NUMBER --recover
lavad keys list
lavad keys delete YOUR_WALLET_NUMBER
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx gov vote 14 yes --from YOUR_WALLET_NUMBER --chain-id lava-testnet-2
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx gov vote 14 no --from YOUR_WALLET_NUMBER --chain-id lava-testnet-2
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx gov vote 14 no_with_veto --from YOUR_WALLET_NUMBER --chain-id lava-testnet-2
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx gov vote 14 abstain --from YOUR_WALLET_NUMBER --chain-id lava-testnet-2
(In some case that's necessary to add "fees" or --gas=auto)
lavad query gov proposals
(In some case that's necessary to add "fees" or --gas=auto)
lavad query gov proposal 14
(In some case that's necessary to adjust : "deposit" or "fees" or --gas=auto)
lavad tx gov submit-proposal \
--from YOUR_WALLET_NUMBER \
--chain-id lava-testnet-2 \
--deposit=100000000ulava \
--type="Text" \
--title="Write here the title of your proposal for Lava" \
--description="Describe here with details your proposal for Lava" \
--fees=10000ulava \
--gas=auto \
-y
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx slashing unjail --chain-id=lava-testnet-2 --from YOUR_WALLET_NUMBER -y
lavad keys show YOUR_WALLET_NUMBER --bech val -a
lavad query staking validator YOUR_VALIDATOR_VALOPER --output json
lavad q staking validator $(lavad keys show YOUR_WALLET_NUMBER --bech val -a)
lavad query slashing signing-info $(lavad tendermint show-validator)
lavad status 2>&1 | jq .ValidatorInfo
lavad q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
lavad q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
lavad tx staking edit-validator \
--new-moniker="Replace AVIAONE by your name" \
--identity=YOUR_KEYBASE_ID \
--details="This is will be display in the blockchain explorer. Write here something about you" \
--chain-id=lava-testnet-2 \
--commission-rate=0.1 \
--from=YOUR_WALLET_NUMBER \
--gas-prices=0.1ulava \
--gas-adjustment=1.5 \
--gas=auto \
-y
(NEVER DO IT if you are not already synced with the latest block)
lavad tx staking create-validator \
--amount=1000000ulava \
--pubkey=$(lava-testnet-2 tendermint show-validator) \
--moniker="Replace AVIAONE by your name" \
--identity=YOUR_KEYBASE_ID \
--details="This is will be display in the blockchain explorer. Write here something about you" \
--chain-id=lava-testnet-2 \
--commission-rate=0.10 \
--commission-max-rate=0.20 \
--commission-max-change-rate=0.01 \
--min-self-delegation=1 \
--from=YOUR_WALLET_NUMBER \
--gas-prices=0.1ulava \
--gas-adjustment=1.5 \
--gas=auto \
-y
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx bank send WALLET_SENDER WALLET_RECEIVER 1000000ulava --chain-id=lava-testnet-2
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx staking delegate WALLET_NUMBER_WHERE_YOU_WANT_DELEGATE 1000000ulava --from YOUR_WALLET_NUMBER --chain-id=lava-testnet-2
(In some case that's necessary to add "fees" or --gas=auto)
lavad tx staking delegate YOUR_VALIDATOR_NUMBER 1000000ulava --from YOUR_WALLET_NUMBER --chain-id=lava-testnet-2
lavad tx distribution withdraw-all-rewards --from YOUR_WALLET_NUMBER
lavad tx distribution withdraw-rewards YOUR_VALIDATOR_NUMBER --from YOUR_WALLET_NUMBER --commission
Under contruction
Under contruction
Under contruction
sed -i -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0ulava\"/" $HOME/.lava/config/app.toml
sed -i -e 's|^indexer *=.*|indexer = "null"|' $HOME/.lava/config/config.toml
sed -i -e 's|^indexer *=.*|indexer = "kv"|' $HOME/.lava/config/config.toml
echo $(lavad tendermint show-node-id)'@'$(curl -s ifconfig.me)':'$(cat $HOME/.lava/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
curl -sS https://rpc.lava-testnet-2.lava.aviaone.com/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'
YOU ARE GOING TO DELETE EVERYTHING WITHOUT ANY POSSIBILITY TO RECOVER, be sure that's really you are looking for...
BEFORE BE SURE TO SAVE $HOME/.lava/config/priv_validator_key.json
This file $HOME/.lava/config/priv_validator_key.json will let you create a new node with the same validator
cd $HOME
sudo systemctl stop lavad
sudo systemctl disable lavad
sudo rm /etc/systemd/system/lavad.service
sudo systemctl daemon-reload
rm -f $(which lavad)
rm -rf $HOME/.lava
rm -rf $HOME/lava
curl -sS https://rpc.lava-testnet-2.lava.aviaone.com/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'
SEEDS="258f523c96efde50d5fe0a9faeea8a3e83be22ca@seed.lava-testnet-2.lava.aviaone.com:20271,3a445bfdbe2d0c8ee82461633aa3af31bc2b4dc0@testnet2-seed-node.lavanet.xyz:26656,e593c7a9ca61f5616119d6beb5bd8ef5dd28d62d@testnet2-seed-node2.lavanet.xyz:26656"
sed -i -e "s|^seeds *=.*|seeds = \"$SEEDS\"|" $HOME/.lava/config/config.toml
(updated every 4 hours)
curl -Ls https://services.lava-testnet-2.lava.aviaone.com/addrbook.json > $HOME/.lava/config/addrbook.json
(updated every 4 hours)
curl -Ls https://services.lava-testnet-2.lava.aviaone.com/genesis.json > $HOME/.lava/config/genesis.json
(updated every 24 hours)
File name : https://services.lava-testnet-2.lava.aviaone.com/lava-testnet-2_2024-05-02.tar.gz
Please be sure to use the latest binary version.
One last minute version can be published ! Please check by yourself here... and compare with your node lavad version
sudo systemctl stop lavad
cp $HOME/.lava/data/priv_validator_state.json $HOME/.lava/priv_validator_state.json.backup
lavad tendermint unsafe-reset-all --home $HOME/.lava --keep-addr-book
wget -c https://services.lava-testnet-2.lava.aviaone.com/lava-testnet-2_2024-05-02.tar.gz -O - | tar -xz -C $HOME/.lava
mv $HOME/.lava/priv_validator_state.json.backup $HOME/.lava/data/priv_validator_state.json
sudo systemctl start lavad && sudo journalctl -u lavad -f --no-hostname -o cat
Please be sure to use the latest binary version : 1.2.0
sed -i "/\[statesync\]/, /^enable =/ s/=.*/= false/;\
/^rpc_servers =/ s|=.*|= \"\"|;\
/^trust_height =/ s/=.*/= 0/;\
/^trust_hash =/ s/=.*/= \"\"/" $HOME/.lava/config/config.toml
sudo systemctl stop lavad
SNAP_RPC="https://rpc.lava-testnet-2.lava.aviaone.com:443"
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
sed -i "/\[statesync\]/, /^enable =/ s/=.*/= true/;\
/^rpc_servers =/ s|=.*|= \"$SNAP_RPC,$SNAP_RPC\"|;\
/^trust_height =/ s/=.*/= $BLOCK_HEIGHT/;\
/^trust_hash =/ s/=.*/= \"$TRUST_HASH\"/" $HOME/.lava/config/config.toml
sudo systemctl stop lavad && lavad tendermint unsafe-reset-all --home $HOME/.lava --keep-addr-book
sudo systemctl start lavad && journalctl -u lavad -f --no-hostname -o cat
Watch your logs and be patient it can take 5 minutes.... !!
That's an easy process, just click and follow the instructions...it will be done in 10 seconds !
Our platform offers a secure link that allows you to effortlessly connect your KEPLR wallet. The process is quick and easy. Adding a new chain to your wallet is a standard procedure that doesn't involve any transaction. It simply requires your approval. To get started, click on the button below to add this chain to your wallet and start interacting with the blockchain.