Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/onlyf0ur/ethereum-rpc-cpp

C++11 library for interacting with Ethereum's json-rpc.
https://github.com/onlyf0ur/ethereum-rpc-cpp

blockchain cryptocurrency eth ethereum-api ethereum-blockchain ethereum-network ethereum-rpc hacktoberfest json-rpc

Last synced: about 1 month ago
JSON representation

C++11 library for interacting with Ethereum's json-rpc.

Awesome Lists containing this project

README

        

# ethereum-rpc-cpp
Library written in C++ 11 that serves as a wrapper / handler for the ethereum JSON-RPC.

**NOTE:**
Please note that this project is still a WIP. Features are expected to be added and the codebase possibly to be reworked / refactored.

### Dependencies
- [libcurl](https://curl.se/libcurl/c/)
- [jsoncpp](https://github.com/open-source-parsers/jsoncpp)
- [boost](https://www.boost.org/)

### Building
```bash
mkdir -p build
cd build
cmake --DCURL_INCLUDE_DIR=/path/to/curl/include --DJSONCPP_INCLUDE_DIR=/path/to/jsoncpp/include ..
```