Download SwapLand Chain
This is a guide on how to run SwapLand Chain Validator.
Build Requirements
SLCd works mainly on linux distributions. For this instructions we will use Ubuntu 22.04.2 LTS
and golang version go1.21.4
.
Follow up with these commands to run required tools:
sudo apt-get update
sudo apt-get install -y make gcc
Install Golang version go1.21.4
:
You can manually download golang using their official website.
curl -OL https://go.dev/dl/go1.21.4.linux-amd64.tar.gz
sudo tar -C /usr/local -xvf https://go.dev/dl/go1.21.4.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
Remember to add GOPATH
to your $PATH
environment variable. If you're not sure where that is, run go env GOPATH
. This will allow us to run the gaiad
binary in the next step. If you're not sure how to set your $PATH
take a look at these instructions(opens new window).
export PATH=$PATH:$(go env GOPATH)/bin
Download Chain
Download Swapland Chain using following code:
git clone https://github.com/SwapLandExchange/SLC
cd SLC
make prod-build
cd ./build && mv ./SLCd /usr/bin
If you can't access https://github.com/SwapLandExchange/SLC submit your request to SwapLand Team Email for gaining access:
Now you have installed SLCd on your server
Last updated
Was this helpful?