Installation

Quick-setup guide for Mars

Chain ID: mars-1 | Latest Version: v1.0.0

NOTE: These instructions assume a Debian-based OS is used (Ubuntu, Debian, etc.). They have been tested against Ubuntu 20.04 in most cases.

Install dependencies and pre-requesites

Update system repos and install tools

sudo apt update
sudo apt install make curl build-essential gcc git jq -y
sudo snap install lz4 -y

Install Go

sudo rm -rf /usr/local/go
sudo curl -Ls https://golang.org/dl/go1.19.5.linux-amd64.tar.gz | sudo tar -C /usr/local -xz
tee -a $HOME/.profile > /dev/null << EOF
#Add Go to PATH
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
#Add Go variables
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
EOF
source $HOME/.profile

Build Chain Binaries

Install and Configure Cosmovisor

Initialize the Node

NOTE: Replace CryptoChemistrySetup in this code snippet to change your node's moniker

Last updated