Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/onlyf0ur/ethereum-rpc-cpp
- Owner: OnlyF0uR
- Created: 2022-05-03T13:48:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-15T17:20:23.000Z (about 2 years ago)
- Last Synced: 2024-04-24T02:23:51.575Z (9 months ago)
- Topics: blockchain, cryptocurrency, eth, ethereum-api, ethereum-blockchain, ethereum-network, ethereum-rpc, hacktoberfest, json-rpc
- Language: C
- Homepage:
- Size: 123 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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 ..
```