The latest version of the node may be downloaded from the bcc-node GitHub Releases page.
To set up your platform, you will need:
- An x86 host (AMD or Intel)
- A virtual machine or AWS instance with at least 2 cores
- 8GB of RAM and at least 10GB of free disk space
- A recent version of Linux
Note The node can be built and run on other operating systems, including Windows and MacOSX, but we recommend that stake pool operators use Linux to take advantage of the associated performance advantages. If you are building on Windows, we recommend using WSL2 under Windows 10 as this provides a development and execution environment that is very similar to Ubuntu.
To download the source code and build it, you need the following packages and tools on your Linux system:
- the version control system
git
, - the
gcc
C-compiler, - C++ support for
gcc
, - developer libraries for the arbitrary precision library
gmp
, - developer libraries for the compression library
zlib
, - developer libraries for
systemd
, - developer libraries for
ncurses
, ncurses
compatibility libraries,- the Haskell build tool
cabal
, - the GHC Haskell compiler (version
8.10.4
or above).
In Redhat, Fedora, and Centos:
sudo yum update -y
sudo yum install git gcc gcc-c++ tmux gmp-devel make tar xz wget zlib-devel libtool autoconf -y
sudo yum install systemd-devel ncurses-devel ncurses-compat-libs -y
For Debian/Ubuntu, use the following instead:
sudo apt-get update -y
sudo apt-get install automake build-essential pkg-config libffi-dev libgmp-dev libssl-dev libtinfo-dev libsystemd-dev zlib1g-dev make g++ tmux git jq wget libncursesw5 libtool autoconf -y
If you are using a different flavor of Linux, you will need to use the correct package manager for your platform instead of yum
or apt-get
, and the names of the packages you need to install might differ. On MacOSX, use the Homebrew (brew
) installer.
Download the relevant `cabal-install` (version 3.4.0.0) binary from https://www.haskell.org/cabal/download.html
tar -xf cabal-install-3.4.0.0-xxxxxx.tar.xz
rm cabal-install-3.4.0.0-xxxxxx.tar.xz
mkdir -p ~/.local/bin
mv cabal ~/.local/bin/
Verify that ~/.local/bin is in your PATH:
echo $PATH
If ~/.local/bin
is not in the PATH, you need to add the following line to your .bashrc
file
export PATH="~/.local/bin:$PATH"
and source the file:
source .bashrc
Update cabal:
cabal update
Confirm that you installed cabal version 3.4.0.0
:
cabal --version
Download and install version 8.10.4
of GHC. The easiest way to do this is to use ghcup.
$ curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh
Then open a new terminal (to get an updated environment) and run:
$ ghcup install ghc 8.10.4
$ ghcup install cabal 3.4.0.0
$ ghcup set ghc 8.10.4
$ ghcup set cabal 3.4.0.0
Create a working directory for your builds:
$ mkdir -p ~/src
$ cd ~/src
Create a working directory for your builds:
mkdir -p ~/src
cd ~/src
Download and install libsodium:
git clone https://github.com/The-Blockchain-Company/libsodium
cd libsodium
git checkout 66f017f1
./autogen.sh
./configure
make
sudo make install
Add the following to your .bashrc file and source it:
export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"
Create a working directory for your builds:
mkdir -p ~/src
cd ~/src
Download the Bcc node sources:
git clone https://github.com/The-Blockchain-Company/bcc-node.git
Change the working directory to the downloaded source code folder:
cd bcc-node
Check out the latest version of bcc-node (choose the tag with the highest version number: TAGGED-VERSION
):
git fetch --all --recurse-submodules --tags
git tag
git checkout tags/<TAGGED VERSION>
We explicitly use the GHC version that we installed earlier. This avoids defaulting to a system version of GHC that might be older than the one you have installed.
cabal configure --with-compiler=ghc-8.10.4
Note, that for a development build you can avoid installing the custom libsodium
library and add the following lines to the local project file:
echo "package bcc-crypto-optimum" >> cabal.project.local
echo " flags: -external-libsodium-vrf" >> cabal.project.local
Build the node and CLI with cabal
:
cabal build all
Install the newly built node and CLI commands to the ~/.local/bin
directory:
cp -p "$(./scripts/bin-path.sh bcc-node)" ~/.local/bin/
cp -p "$(./scripts/bin-path.sh bcc-cli)" ~/.local/bin/
Note, we avoid using cabal install
because that method prevents the installed binaries from reporting
the git revision with the --version
switch.
Check the version that has been installed:
bcc-cli --version
Repeat the above process when you need to update to a new version.
Note: It might be necessary to delete the db
-folder (the database-folder) before running an updated version of the node.