Skip to content
This repository has been archived by the owner on Dec 30, 2019. It is now read-only.

Latest commit

 

History

History
38 lines (27 loc) · 963 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 963 Bytes

BTClient

This is C++ implementation for BTC-E.com API.

Dependencies

  1. To prepare building environment you will need:
  2. Also the program uses the following libraries:
    • libcurl to work over HTTPS;
    • libcrypto to compute message authentication codes;
    • libjsoncpp to parse JSON responses from BTC-E.com.

Installation

  1. Generate configure script:

     % aclocal
     % automake --add-missing
     % autoconf
    
  2. Use configure script to generate make files:

     % ./configure
    
  3. Build and install the program:

     % make
     # make install
    

After these steps btclient binary should be available for using.