Git Product home page Git Product logo

bitcoinote-core's Introduction

Copyright (c) 2012-2017, The CryptoNote developers, The Bytecoin developers, The Forknote developers
Copyright (c) 2017-2018, The BitcoiNote developers

BitcoiNote Core

BitcoiNote (BTCN) is a cryptocurrency based on CryptoNote.

P2P Port: 28388
RPC Port: 28389

Build

Currently, build is supported out of the box only on Linux (tested with Ubuntu 16.04) and Windows (64-bit only). Mac OS should theoretically work but is untested.

Linux

Tested only with Ubuntu 16.04.

Dependencies: GCC 4.7.3 or later, CMake 2.8.6 or later, Boost 1.58.

You may download them from:
http://gcc.gnu.org/
http://www.cmake.org/
http://www.boost.org/
https://www.qt.io/
Alternatively, it may be possible to install them using a package manager.

To build, run the following commands in the project's root directory:

mkdir build
cd build
cmake -DPORTABLE=1 ..
make

The resulting executables can be found in build/src directory which will be created. (For Windows, look in subfolder Release or Debug respectively.)

Windows 64bit

Dependencies:

libboost 1.58 or greater (Tested with 1.65.1)
cmake 2.8.6 or greater (Tested with 3.10.2)
Microsoft Visual Studio 2013 (Tested with VS2015)
Visual C++ Build Tools v120 (Tested with v140)

To build, run the following commands in the project's root directory, but make sure to substitute the Visual Studio version for the one that you use, and to replace the VCTargetsPath with one that works for you:

mkdir build
cd build
set PATH="c:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x64";%PATH%
set VCTargetsPath=C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\v140
cmake -G "Visual Studio 14 Win64" -DPORTABLE=1 -DCMAKE_BUILD_TYPE=Release ..
msbuild Bitcoinote.sln /m /p:Configuration=Release

In your build folder there should now be a new folder named Release, with the binaries. You still need to copy some library files into that folder:

C:\Windows\System32\msvcp140.dll
C:\Windows\System32\msvcrt.dll
C:\WINDOWS\system32\ucrtbase.dll
C:\WINDOWS\system32\vcruntime140.dll

To compile the debug version, omit the /p:Configuration=Release parameter. Then you need to copy the debug dlls instead of the normal ones. These have the same name, only with a d at the end (e.g. Qt5Cored.dll), and are in the same location, except for ucrtbased.dll which you can find in C:\Program Files (x86)\Windows Kits\10\bin\x64\ucrt\ucrtbased.dll.

Usage Notes

The following files are created:

  • Bitcoinoted: The main coin daemon.
  • miner: Stand-alone miner tool (requires daemon).
  • simplewallet: Command-line wallet tool (if started with --rpc-bind-port 1234 it will expose a simplified JSON RPC wallet interface).
  • walletd: Wallet daemon (exposes full Payment Gate Service RPC interface on default port 8070).
  • connection_tool: Connection tool.

Start them with the parameter --help to get usage information.

bitcoinote-core's People

Contributors

bitcoinote avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.