💾Node Installation

Bitsong Mainnet guide

  • Approximate hardware requirements:

Node Type
CPU
RAM
Storage

Mainnet

8

16GB

250GB

1) Auto_install script

source <(curl -s https://raw.githubusercontent.com/111STAVR111/props/refs/heads/main/Bitsong/bitsongd)

2) Manual installation

Preparing the server

sudo apt update && sudo apt upgrade -y
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

GO 1.23.1

cd $HOME
VER="1.23.1"
wget "https://golang.org/dl/go$VER.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$VER.linux-amd64.tar.gz"
rm "go$VER.linux-amd64.tar.gz"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin

Build 26.06.25

bitsongd version --long | grep -e version -e commit

  • version: 0.23.0

  • commit: f4c98e4ffe21a17524d26c2d018c8e4e526f50ab

Initiation

Create/recover wallet

Download Genesis

sha256sum $HOME/.bitsongd/config/genesis.json

  • 53d3a4c628627bdc5d6c9d1016f973dfb3e0e93599be787d1759f4591d0129ac

Set up the minimum gas price and Peers/Seeds/Filter peers/MaxPeers

Pruning (optional)

Indexer (optional)

Download addrbook

Create a service file

StateSync Bitsong Mainnet

SnapShot Mainnet updated every 5 hours

Start

Create validator

Monitoring

You can set up your node status alarm here - Monitoringarrow-up-right

Security

You can create secure management of your wallet and your node by following this links.

TMKMSarrow-up-right Wallet Securityarrow-up-right

Delete node

Last updated

Was this helpful?