Skip to content

A websocket client implementation(in c++) for saturn - a dpos blockchain.

License

Notifications You must be signed in to change notification settings

codingtmd/saturn-wsclient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

saturn-wsclient

A websocket client implementation(in c++) for saturn - a dpos blockchain.

Getting Started

Install the cpprestsdk first

With vcpkg on Windows

PS> vcpkg install cpprestsdk cpprestsdk:x64-windows

With apt-get on Debian/Ubuntu

$ sudo apt-get install libcpprest-dev

With brew on OSX

$ brew install cpprestsdk

With NuGet on Windows for Android

PM> Install-Package cpprestsdk.android

For other platforms, install options, how to build from source, and more, take a look at our Documentation.

Once you have the library, look at our tutorial to use the http_client. It walks through how to setup a project to use the C++ Rest SDK and make a basic Http request.

To use from CMake:

cmake_minimum_required(VERSION 3.7)
project(main)

find_package(cpprestsdk REQUIRED)

add_executable(main main.cpp)
target_link_libraries(main PRIVATE cpprestsdk::cpprest)

About

A websocket client implementation(in c++) for saturn - a dpos blockchain.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published