# This will return the latest version of GO
curl -s https://go.dev/VERSION?m=text
# Example response
go1.23.3
time 2024-11-06T18:46:45Z
Download the Latest GO Tarball
# Downloading using the above example response
wget https://go.dev/dl/go1.23.3.linux-amd64.tar.gz
# Example command if the above version is different
wget https://go.dev/dl/VERSION.linux-amd64.tar.gz
Extract and Install GO
sudo tar -C /usr/local -xzf go1.23.3.linux-amd64.tar.gz
go version
# Example response
go version go1.23.3 linux/amd64
Install Ronin
Clone the Ronin Repo
cd /root
# The below command will create a directory called 'ronin'
# The path to it will be /root/ronin
git clone https://github.com/axieinfinity/ronin
Build Ronin
cd /ronin/cmd/ronin
go build -o ronin
Initialize Ronin Genesis Block
Ronin requires the initialization of its Genesis Block before being run.