This is the reference code for monkeytips cryptocurrency.
- Official homepage: monkeytips
- Official repository: monkeytips GitHub
- Official Discord: monkeytips Discord
- Official Block explorer: monkeytips Block explorer
- Official GUI wallet: monkey-wallet-go
Monkeytips [MTIP] is an ASIC resistant CryptoNightLite V1 algorithm based cryptocurrency. Fast transactions & privacy make this coin perfect for paying your escorts, bookies and homeboyz for stuff.
- Algorithm: CryptoNightLite V1
- Max. supply: 250,000,000.00
- CryptoNote name: monkeytips
- Decimal points: 2
- Block time: 40
- Ticker: MTIP
- Emission speed factor: 17
- P2P port: 13001
- RPC port: 13002
- You will need the following packages: boost (1.55 or higher), rocksdb, cmake, git, gcc (4.9 or higher), g++ (4.9 or higher), make, and python. Most of these should already be installed on your system.
- For example on Ubuntu:
sudo apt-get install -y build-essential python-dev gcc g++ git cmake libboost-all-dev librocksdb-dev - If you are using Ubuntu and your version of Ubuntu doesn't have librocksdb-dev, you can get it from a ppa instead:
sudo add-apt-repository ppa:ethcore/ethcore -y
sudo apt-get update
sudo apt-get install librocksdb-dev
git clone https://github.com/monkeytips/monkeytipscd monkeytipsmkdir build && cd $_cmake ..make
- Install cmake. See here if you are unable call
cmakefrom the terminal after installing. - Install the boost libraries. Either compile boost manually or run
brew install boost. - Install XCode and Developer Tools.
git clone https://github.com/monkeytips/monkeytipscd monkeytipsmkdir build && cd $_cmake ..orcmake -DBOOST_ROOT=<path_to_boost_install> ..when building from a specific boost install. If you used brew to install boost, your path is most likely/usr/local/include/boost.make
The binaries will be in ./src after compilation is complete.
Run ./src/monkeytipsd to connect to the network and let it sync (it may take a while).
- Install Visual Studio 2017 Community Edition
- When installing Visual Studio, it is required that you install Desktop development with C++ and the VC++ v140 toolchain when selecting features. The option to install the v140 toolchain can be found by expanding the "Desktop development with C++" node on the right. You will need this for the project to build correctly.
- Install Boost 1.59.0, ensuring you download the installer for MSVC 14.
- From the start menu, open 'x64 Native Tools Command Prompt for vs2017'.
cd <your_monkeytips_directory>mkdir buildcd build- Set the PATH variable for cmake: ie.
set PATH="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin";%PATH% cmake -G "Visual Studio 14 Win64" .. -DBOOST_ROOT=C:/local/boost_1_59_0(Or your boost installed dir.)MSBuild monkeytips.sln /p:Configuration=Release /m- If all went well, it will complete successfully, and you will find all your binaries in the '..\build\src\Release' directory.
- Additionally, a
.slnfile will have been created in thebuilddirectory. If you wish to open the project in Visual Studio with this, you can.
Cryptonote Developers, Bytecoin Developers, Monero Developers, Forknote Project, TurtleCoin Community
Hi monkeytips contributor, thanks for forking and sending back Pull Requests. Extensive docs about contributing are in the works or elsewhere. For now this is the bit we need to get into all the files we touch. Please add it to the top of the files, see src/CryptoNoteConfig.h for an example.
// Copyright (c) 2012-2017, The CryptoNote developers, The Bytecoin developers
// Copyright (c) 2014-2018, The Monero Project
// Copyright (c) 2018, The TurtleCoin Developers
//
// Please see the included LICENSE file for more information.