Lava

Endpoints

Genesis: https://lava-t.declab.pro/genesis.json

wget -O ~/.lava/config/genesis.json https://lava-t.declab.pro/genesis.json --inet4-only 

Addrbook: https://lava-t.declab.pro/addrbook.json

wget -O ~/.lava/config/addrbook.json https://lava-t.declab.pro/addrbook.json --inet4-only

Peer: 73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d@lava-t.declab.pro:26633

PEERS=73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d@lava-t.declab.pro:26633,c3bcd6779abf9bc703ff89d72f9aa91dc4b3068e@65.21.131.21:26656,40046fe63bdaa9efde27707b0d3de0bf84fedf80@86.111.48.158:26656,0d6983bcd192c0b4a0f61e6d849c152704e2f017@91.107.148.5:26656,3031bcee46e31081eb6ecb90df2dad6fc757bebc@95.217.57.232:56656,b3abed4b1ad82a3d2404c817b4eabf30ab36f6f6@185.250.36.187:17656
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" ~/.lava/config/config.toml

Snapshot

Link: https://lava-t.declab.pro/latest.tar.lz4

# Reset tendermint chain
lavad tendermint unsafe-reset-all

# Download and unpack the archive
curl -o - -L https://lava-t.declab.pro/latest.tar.lz4 | lz4 -c -d - | tar -x -C ~/.lava

State sync

RPC="https://lava-t.declab.pro:26631"

LATEST_HEIGHT=$(curl -s $RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \
TRUST_HASH=$(curl -s "$RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$RPC,$RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" ~/.lava/config/config.toml

Last updated