Skip to main content

Mainnet

Chain ID: centauri-1 | Node Version: v6.3.1

Update system and install build dependencies
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
Download and Install Binaries
cd $HOME
rm -rf composable-centauri
git clone https://github.com/notional-labs/composable-centauri
cd composable-centauri
git checkout v6.3.1
make install
centaurid version
Initialize Node
centaurid init "NodeName" --chain-id=centauri-1
centaurid centaurid config chain-id centauri-1
centaurid config keyring-backend os
Download Genesis File
curl -Ls https://files.nomadvalidator.com/composable/genesis.json > $HOME/.banksy/config/genesis.json
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/composable/addrbook.json > $HOME/.banksy/config/addrbook.json
Create Service Daemon
sudo tee /etc/systemd/system/centaurid.service > /dev/null <<EOF
[Unit]
Description=centaurid Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which centaurid) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable centaurid
Create Service Daemon
sudo systemctl restart centaurid
journalctl -u centaurid -f