BitBadges

Network Type: Mainnet Chain-id: bitbadges-1 Current Node version: v12

Hardware requirements

The following requirements are recommended for running Defund:

  • 4 or more physical CPU cores

  • At least 200GB of SSD disk storage

  • At least 8GB of memory (RAM)

  • At least 100mbps network bandwidth

Install dependencies Required

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

Install go

We are gonna use GO Version 1.24.5 If you already have GO installed you can skip this

ver="1.24.5"
cd $HOME
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"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile
source ~/.bash_profile
go version

Install binary

Init Change <MONIKER> with ur Name

Download Genesis file and addrbook

  • Genesis

  • Addrbook

Custom Port

Set Gas Prices

Config pruning

Indexer Off

create service file and start node

  • Enable Service and Start Node

Last updated