The automated build often fails on generating test metrics due to performance limits on Travis.
The Bitcoin Command Line Tool
License Overview
All files in this repository fall under the license specified in COPYING. The project is licensed as AGPL with a lesser clause. It may be used within a proprietary project, but the core library and any changes to it must be published on-line. Source code for this library must always remain free for everybody to access.
About Bitprim
The bitprim toolkit is a set of cross platform C++ libraries for building bitcoin applications. The toolkit consists of several libraries, most of which depend on the foundational bitprim-core library.
About Bitprim Explorer
BX is a command line tool for working with Bitcoin. It can be built as a single portable executable for Linux, OSX or Windows. BX exposes over 80 commands and supports network communication with bitprim-server or its predecessor Obelisk, and the P2P Bitcoin network. BX is well documented and supports simple and advanced scenarios, including stealth and multisig.
Make sure you have installed bitprim-core, bitprim-network, bitprim-protocol and bitprim-client beforehand according to its build instructions.
$ git clone https://github.com/bitprim/bitprim-explorer.git
$ cd bitprim-explorer
$ mkdir build
$ cd build
$ cmake .. -DWITH_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-std=c++11"
$ make -j2
$ sudo make install