Skip to content

deanb1982/Nolanium

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image

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

Download Count Open Issue Count Version


Coin specifications:

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

Installing

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.


Ubuntu 64 bit Compiling

Prerequisites

You will need the following packages: boost, cmake (3.8 or higher), make, git and GCC/G++ (GCC-7.0 or higher).

Commands
  • 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, use make -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

Windows 64 bit Compiling

Prerequisites
Commands
  • 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.


OSX/Apple 64 bit Compiling

Prerequisites
  • Install XCode and Developer Tools.
Commands
  • 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, use make -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

Raspberry Pi 3 B+ (AARCH64/ARM64) Compiling

The following images are known to work. Your operation system image MUST be 64 bit.

Known working images

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.

Commands
  • 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

Thanks to these people to make Nolanium happen

Cryptonote Developers, Bytecoin Developers, Monero Developers, Forknote Project, TurtleCoin Community, Nolanium Team.


About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages