Skip to content
View OLBITX's full-sized avatar
😀
😀
Block or Report

Block or report OLBITX

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
OLBITX/README.md

OLBITX PoS hedge coin (OLX 2.0)

Dependencies

  1. boost_1_65_1
  2. openssl-1.0.2u
  3. qt 5.12

How to build: Ubuntu 20.04

Step 1: OpenSSL

Download and build old version of openSSL: openssl-1.0.2u will do.

apt-get update && apt-get install libcurl4-openssl-dev make perl-modules build-essential
wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz
tar xzvf openssl-1.0.2u.tar.gz 
cd openssl-1.0.2u
./config --prefix=/opt/openssl-1.0.2 --openssldir=/opt/openssl-1.0.2 && make && make test 
sudo make install 
cd ..

Step 2: Boost

wget https://boostorg.jfrog.io/artifactory/main/release/1.65.1/source/boost_1_65_1.tar.gz
tar xzvf boost_1_65_1.tar.gz 
cd boost_1_65_1
./bootstrap.sh --prefix=/opt/boost-1.65.1
sudo ./b2 --prefix=/opt/boost-1.65.1 link=static threading=multi variant=release install
cd ..

Step 3: Qt 5

apt-get install qt5-default qttools5-dev-tools

Step 4: Other dependencies

apt-get install git libcurl4-openssl-dev libdb++-dev libdb-dev libminiupnpc-dev libnss-myhostname libqrencode-dev libupnp-dev pax-utils

Step 5: Build the project

git clone https://github.com/OLBITX/OLBITX.git olbitx
cd olbitx
export OPENSSL_INCLUDE_PATH_DEF=/opt/openssl-1.0.2/include
export OPENSSL_LIB_PATH_DEF=/opt/openssl-1.0.2/lib
export BOOST_INCLUDE_PATH_DEF=/opt/boost-1.65.1/include
export BOOST_LIB_PATH_DEF=/opt/boost-1.65.1/lib
qmake OLBITX-qt.pro 
make

Popular repositories

  1. Source-code Source-code Public

    Tools

    Makefile 35

  2. OLBITX OLBITX Public

    Blockchain code and files

    C++ 34 5

  3. ton-assets ton-assets Public

    Forked from tonkeeper/ton-assets

    Python