LICENSES:
// Copyright (c) 2012-2017, The CryptoNote developers, The Bytecoin developers
// Copyright (c) 2014-2018, The Monero Project
// Copyright (c) 2018-2019, The TurtleCoin Developers
// Copyright (c) 2024, The Nolanium Team
Website | Official Pool | Official Block Explorer | Discord | Twitter
Ticker | Decimals | Supply | Block Reward | Block Time | P2P Port | RPC Port | Service Port | Algo |
---|---|---|---|---|---|---|---|---|
NLM | 8 | 80,000,000 NLM | 4 NLM | 30 Seconds | 21000 | 21001 | 21002 | Cryptonight Turtle |
You can download the latest binary images from here: https://github.com/NolaniumProject/Nolanium/releases To compile the binaries yourself, scroll down to the next section.
You will need the following packages: boost, cmake (3.8 or higher), make, git and GCC/G++ (GCC-7.0 or higher).
sudo apt-get install software-properties-common -y
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update
sudo apt-get install aptitude -y
sudo aptitude install -y build-essential g++-8 gcc-8 git libboost-all-dev python3-pip
sudo pip3 install cmake
export CC=gcc
export CXX=g++
git clone -b master --single-branch https://github.com/NolaniumProject/Nolanium
cd Nolanium
mkdir build
cd build
cmake ..
make
(To compile with a different amount of threads, usemake -j4
and replace the4
with the your desired thread amount.)
When the build process is complete. You can find the binary in Nolanium/build/src
.
cd src
./Nolaniumd --version
- Install Visual Studio 2017 Community Edition
- When installing Visual Studio, it is required that you install Desktop development with C++
- Install Boost 1.68
- Download the GitHub repository and extract it somewhere.
- From the start menu, open 'Developer Command Prompt for VS 2017'.
cd <your_Nolanium_location>
mkdir build
cd build
set PATH="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin";%PATH%
cmake -G "Visual Studio 15 2017 Win64" .. -DBOOST_ROOT=C:/local/boost_1_68_0
When it's done creating the cmake files you go ahead and open the Nolanium/build/Nolanium.sln
file.
On the top right corner you see Debug
and x64
next to the green play button
. Change Debug
to Releases
. Then click on Build
on the top menu and hit Build Solution
. When the build process is complete. You can find the binary in Nolanium/build/src/Releases
.
- Install XCode and Developer Tools.
which brew || /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install --force cmake boost llvm gcc@8
export CC=gcc-8
export CXX=g++-8
git clone -b master --single-branch https://github.com/NolaniumProject/Nolanium
cd Nolanium
mkdir build
cd build
cmake ..
make
(To compile with a different amount of threads, usemake -j4
and replace the 4 with the your desired thread amount.)
When the build process is complete. You can find the binary in Nolanium/build/src
.
cd src
./Nolaniumd --version
The following images are known to work. Your operation system image MUST be 64 bit.
- https://github.com/Crazyhead90/pi64/releases
- https://fedoraproject.org/wiki/Architectures/ARM/Raspberry_Pi#aarch64_supported_images_for_Raspberry_Pi_3
- https://archlinuxarm.org/platforms/armv8/broadcom/raspberry-pi-3
Once you have a 64 bit image installed, setup proceeds the same as any Linux distribution. Ensure you have at least 2GB of ram, or the build is likely to fail. You may need to setup swap space.
git clone -b master --single-branch https://github.com/NolaniumProject/Nolanium
cd Nolanium
mkdir build
cd build
cmake ..
make
When the build process is complete. You can find the binary in Nolanium/build/src
.
cd src
./Nolaniumd --version
Cryptonote Developers, Bytecoin Developers, Monero Developers, Forknote Project, TurtleCoin Community, Nolanium Team.