Skip to content

BMoreToken/bmorecoin

Repository files navigation

Tokenomics

  • Max Block Number 500,000,000.
  • Total number of available coins 18,446,744,073,709,551,616.
  • Difficulty Target is 60 Seconds.

Software

Docker on Linux

Need to test distro that uses yum

Available Commands

  • docker_install.sh - running more than once is bad
  • docker_start.sh - Start the docker container
  • docker_stop.sh - Stop the docker container
  • docker_bash.sh - Enter the container to access wallet / node
  • update.sh - CAUTION!! this will build a new container and node/wallet, you will still have access to the last container in case you need to access the wallet again
  • NEED AN UPDATE THAT LEAVES THE WALLET IN PLACE

Docker on Windows

  • (test and write up)

Ubuntu 18.04.5 LTS Install

Ubuntu 20.04.2 LTS Install

Working

  • sudo apt update
  • sudo apt -y upgrade
  • sudo snap install docker

Trying

Important Ports

  • P2P 19126
  • RPC 19326

Old Instructions

On *nix

Dependencies: GCC 4.7.3 or later, CMake 2.8.6 or later, and Boost 1.55.

You may download them from:

  • * http://gcc.gnu.org/ ( sudo apt install gcc )

  • * http://www.cmake.org/ ( sudo apt install cmake)

  • * http://www.boost.org/ ( sudo apt-get install libboost-all-dev )

  • * Alternatively, it may be possible to install them using a package manager.

  • To build, change to a directory where this file is located, and run make. The resulting executables can be found in build/release/src.

  • make -j2 -e --include-dir=include/CryptoNoteConfig.h test-release test-debug build-test build-release build-debug -k

Advanced options:

  • * Parallel build: run make -j<number of threads> instead of make.
  • * Debug build: run make build-debug.
  • * Test suite: run make test-release to run tests in addition to building. Running make test-debug will do the same to the debug version.
  • * Building with Clang: it may be possible to use Clang instead of GCC, but this may not work everywhere. To build, run export CC=clang CXX=clang++ before running make.

On Windows

mkdir build
cd build
cmake -G "Visual Studio 12 Win64" ..
  • And then do Build.
  • Good luck!