# Install Go 1.19.1wgethttps://go.dev/dl/go1.19.1.linux-amd64.tar.gztarxfgo1.19.1.linux-amd64.tar.gzsudomvgo/usr/local/go# Set Go path to $PATH variableecho"export PATH=$PATH:/usr/local/go/bin:~/go/bin">> $HOME/.bashrcsource~/.bashrc
Install Band
cd~# Clone BandChain Laozi version v2.5.2gitclonehttps://github.com/bandprotocol/chaincdchaingitfetch&&gitcheckoutv2.5.2# Install binaries to $GOPATH/binexport GOPATH="${HOME}/lib"makeinstallcp ${HOME}/lib/bin/*~/bin/
# Chain ID of Laozi Mainnetexport CHAIN_ID=laozi-mainnet# Wallet name to be used as validator's account, please change this into your name (no whitespace).export WALLET_NAME=<YOUR_WALLET_NAME># Name of your validator node, please change this into your name.export MONIKER=<YOUR_MONIKER># URL of genesis file for Laozi Mainnetexport GENESIS_FILE_URL=https://raw.githubusercontent.com/bandprotocol/launch/master/laozi-mainnet/genesis.json# Data sources/oracle scripts filesexport BIN_FILES_URL=https://raw.githubusercontent.com/bandprotocol/launch/master/laozi-mainnet/files.tar.gz