▶️Installation

The complete infrastructure for cross-chain smart contracts, applications, and modular functionality.

Chain ID: swisstronik_1291-1 | Latest Version Tag: v1.1.1 | Wasm: OFF

Before installing the node you should enable SGX and confirm your system ready by installing SGX and obtain masterkey : https://swisstronik.gitbook.io/swisstronik-docs/node-setup/setup-sgx/setup-intel-sgx

Installation

Install dependencies

Setting up variable

echo "export SWISSTRONIK_CHAIN_ID=swisstronik_1291-1" >> $HOME/.bash_profile
source $HOME/.bash_profile

Update system and install build tools

sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential tmux libgmp3-dev flex bison
sudo apt -qy upgrade

Install Go

rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.21.4.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

Download and build binaries

Change your moniker

Download Genesis

Set the gas prices

Specify prunning option

Create a service

Start service and check the logs

Last updated

Was this helpful?