πŸ”»Babylon

System Requirements

  • 4+ CPU cores (AMD64)

  • 32 GB RAM

  • 1 TB NVMe SSD

  • 100 Mbps internet connection

Installation

  1. Update the system:

sudo apt update && sudo apt upgrade -y
sudo apt install curl git jq lz4 build-essential -y
  1. Install Go:

ver="1.20.3"
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" >> $HOME/.bash_profile
source $HOME/.bash_profile
go version
  1. Clone and build Babylon:

  1. Initialize the node:

  1. Download the genesis file:

Configuration

  1. Configure the settings:

  1. Add seeds and peers:

  1. Configure pruning:

Launch

  1. Create a service:

  1. Start the node:

  1. Check the logs:

Creating a Validator

  1. Create a wallet:

  1. Get tokens from the faucet in Discord.

  2. Create a validator:

Last updated