Giter Site home page Giter Site logo

tomaszaugustyn / casper-cpp-sdk Goto Github PK

View Code? Open in Web Editor NEW

This project forked from matterfi/casper-cpp-sdk

0.0 1.0 0.0 9.65 MB

C++ library to interact with the Casper Network nodes via RPC

License: Apache License 2.0

Shell 0.42% C++ 99.38% CMake 0.20%

casper-cpp-sdk's Introduction

Casper C++ SDK

Casper C++ SDK provides an interface to establish a connection between the Casper Blockchain and a client. Currently, the SDK is compatible with Linux systems.

Dependencies

  1. CMake Version 3.0.0 or newer
  2. Doxygen Version 1.8.8 or newer
  3. OpenSSL Version 1.1.1 or newer
  4. cryptopp Version 8.6.0 or newer

How to clone the SDK

git clone https://github.com/yusufketen/casper-cpp-sdk.git

Install Instructions for Dependencies

sudo apt-get install build-essential cmake libssl-dev
sudo apt-get install graphviz
sudo apt-get install doxygen

Install Spdlog

git clone https://github.com/gabime/spdlog.git
cd spdlog && mkdir build && cd build
cmake -DCMAKE_CXX_FLAGS=-fPIC .. && make -j && sudo make install

or via package manager:

sudo dnf install spdlog-devel

TODO cryptopp for Fedora-based distros.

Install instructions for doxygen for CentOS

On CentOS and Rocky Linux:

sudo dnf config-manager --set-enabled powertools
sudo dnf install doxygen

Install instructions for vcpkg

Can be used for Windows, Linux and MacOS (fix your paths in the examples)

Prepare vcpkg:

git clone [email protected]:microsoft/vcpkg.git
cd vcpkg
git checkout 2022.08.15
./bootstrap-vcpkg.sh

Install necessary libraries for Fedora 35:

sudo dnf update && sudo dnf upgrade
sudo reboot
sudo dnf install kernel-headers kernel-devel autoconf-archive mesa-libGLU-devel R 'xcb-util-*-devel' libxkbcommon-x11-devel libxkbcommon-devel 
sudo yum install perl-IPC-Cmd 

Build deps:

windows:
vcpkg install @mydir\casper-cpp-sdk\vcpkg\vcpkg.txt --triplet=x64-windows --clean-after-build

linux:
./vcpkg install @mydir/casper-cpp-sdk/vcpkg/vcpkg.txt --triplet=x64-linux --clean-after-build

macos:
./vcpkg install @mydir/casper-cpp-sdk/vcpkg/vcpkg.txt --triplet=x64-osx --clean-after-build

Export deps:

windows:  
vcpkg export @mydir\casper-cpp-sdk\vcpkg\vcpkg.txt --raw --triplet=x64-windows  --output-dir=mydir\vcpkg-bin-win-casper-cpp-sdk --output=01  

linux:  
./vcpkg export @mydir/casper-cpp-sdk/vcpkg/vcpkg.txt --raw --triplet=x64-linux --output-dir=mydir/vcpkg-bin-lin-casper-cpp-sdk --output=01
    or an alternative way if above doesn't work:    
./vcpkg export <list of packages from vcpkg.txt seperated by space> --raw --triplet=x64-linux --output-dir=/mydir/vcpkg-bin-lin-casper-cpp-sdk --output=01

macos:
./vcpkg export @mydir/casper-cpp-sdk/vcpkg/vcpkg.txt --raw --triplet=x64-osx --output-dir=mydir/vcpkg-bin-mac-casper-cpp-sdk --output=01

Building

Debug

Using deps from system (linux only)

mkdir build && cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug ..
ninja

Using deps from vcpkg (linux, windows, macos)

mkdir build && cd build

windows:
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=mydir/vcpkg-bin-win-casper-cpp-sdk/01/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows ..

linux:
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=mydir/vcpkg-bin-lin-casper-cpp-sdk/01/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-linux ..

macos:
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=mydir/vcpkg-bin-mac-casper-cpp-sdk/01/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-osx ..

cmake --build .

Release

Using deps from system (linux only)

mkdir build && cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=Release ..
ninja

Test

Using deps from system (linux only)

mkdir build && cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DCASPER_SDK_TESTS=ON ..
ninja
./test/casper_cpp_sdk_tests

Run Examples

mkdir build && cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DCASPER_SDK_TESTS=ON ..
ninja
./examples/example

Install

mkdir build && cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=Release ..
ninja
sudo make install

How to integrate Casper C++ SDK into your project

1. Include the header file to the application file.
    #include "CasperClient.h"
2. Link the installed SDK to the application. A CMake example is given below.
    add_executable(ApplicationName main.cpp)
    target_link_libraries(ApplicationName PUBLIC CasperSDK)

How to use the Casper C++ SDK

Usage of the RPC functions are described in the examples/HelloSDK.cpp file.

1. Define a CasperClient object and connect to the Casper Blockchain. Replace the IP address and port number to the IP address and port number of any Casper Blockchain node.
    Casper::Client client("http://127.0.0.1:7777");

2. Call the client object member functions listed with their return types below to perform RPC functions.
Client Function Return Type
GetNodePeers Casper::InfoGetPeersResult
GetStateRootHash Casper::GetStateRootHashResult
GetDeployInfo Casper::GetDeployInfoResult
GetStatusInfo Casper::GetStatusResult
GetBlockTransfers Casper::GetBlockTransfersResult
GetBlock Casper::GetBlockResult
GetEraInfoBySwitchBlock Casper::GetEraInfoResult
GetItem Casper::GetItemResult
GetDictionaryItem Casper::GetDictionaryItemResult
GetAccountBalance Casper::GetBalanceResult
GetAuctionInfo Casper::GetAuctionInfoResult
PutDeploy Casper::PutDeployResult

Documentation

cd docs
doxygen Doxyfile

The documentation will be available in the "docs/html/index.html" file.

External Libraries

  1. https://github.com/nlohmann/json
  2. https://github.com/jsonrpcx/json-rpc-cxx
  3. https://github.com/yhirose/cpp-httplib
  4. https://github.com/weidai11/cryptopp
  5. https://github.com/Neargye/magic_enum
  6. https://github.com/codeinred/recursive-variant
  7. https://github.com/ckormanyos/wide-integer
  8. https://github.com/mity/acutest

casper-cpp-sdk's People

Contributors

yusufketen avatar numlocksoft avatar polishcode avatar tomaszaugustyn avatar piotrek321 avatar bartalke avatar puszupek avatar radexx99 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.