BounceBit

System Requirements:

  • 4 CPU cores

  • 8 GB RAM

  • 200 GB SSD

  • Ubuntu 20.04 or newer

Node Installation

  1. Install necessary dependencies:

sudo apt update
sudo apt install build-essential jq wget git -y
  1. Download and install Go:

wget https://go.dev/dl/go1.19.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.19.linux-amd64.tar.gz
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile
source ~/.profile
  1. Clone the BounceBit repository:

git clone https://github.com/BounceBit-Labs/node.git
cd node
  1. Compile the binaries:

  1. Initialize the node:

  1. Download the genesis file:

  1. Configure settings:

  1. Start the node:

Creating a Validator

After the node is synced, execute:

Last updated