β«Settlus
Hardware Requirements
1. Install dependencies, if needed
sudo apt update
sudo apt install curl git jq build-essential gcc unzip wget lz4 -y2. Install go
cd $HOME && \
ver="1.22.0" && \
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" >> ~/.bash_profile && \
source ~/.bash_profile && \
go version3. Download binary
4. Set var
5. Config and init app
6. Download genesis file
7. Set seeds and peers
8. Set custom ports (optional)
9. Config prunning
10. Set minium gas price, enable prometheus, disable indexing
11. Creat service file
12. Enable and start service
Proposal
Last updated