Skip to main content

Mainnet

Chain ID: source-1 | Node Version: v3.0.0

Update system and install build tools
sudo apt update
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y
Install Go
rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.20.1.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go version
Install Node
cd $HOME
rm -rf source
git clone https://github.com/Source-Protocol-Cosmos/source.git
cd source
git checkout v3.0.0
make install
sourced version
Initialize Node
sourced init "NodeName" --chain-id=source-1
Download Genesis File
curl -Ls https://files.nomadvalidator.com/source-m/genesis.json > $HOME/.stchaind/config/genesis.json
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/source-m/addrbook.json > $HOME/.stchaind/config/addrbook.json
Create Service Daemon
sudo tee /etc/systemd/system/sourced.service > /dev/null <<EOF
[Unit]
Description=sourced Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which sourced) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable sourced
Start Node
sudo systemctl restart sourced
journalctl -u sourced -f