Installation (Lava-testnet)
Automatic Installation
source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/lava)Manual Installation
# Update the repositories
apt update && apt upgrade -y# Install developer packages
sudo apt -qy install curl git jq lz4 build-essential#INSTALL GO
if [ "$(go version)" != "go version go1.20.5 linux/amd64" ]; then \
ver="1.20.5" && \
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz" && \
sudo rm -rf /usr/local/go && \
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz" && \
rm "go$ver.linux-amd64.tar.gz" && \
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile && \
source $HOME/.bash_profile ; \
fi
go version# Set the variables
# Come up with the name of your node and replace it instead <your_moniker>
MONIKER=<your_moniker>
echo 'export MONIKER='$MONIKER >> $HOME/.bash_profile
echo "export LAVA_CHAIN_ID=lava-testnet-2" >> $HOME/.bash_profile
echo "export LAVA_PORT=33" >> $HOME/.bash_profile
source $HOME/.bash_profile
# check whether the last command was executedWallet
The wallet has been created. In the last line there will be a phrase that must be written down
Fill out the form
Last updated
Was this helpful?