8000 GitHub - omkar-mohanty/eth: C++ ethereum libraries
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

omkar-mohanty/eth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ETH

This is a ethereum RPC library written in c++20.

Usage

Creating an instance

//Assuming a client like geth or a test client like hardhat is running.
import ETH.RPC;
int main()
{
	using RPC = ETH::RPC::RPC;
	//creating an rpc instance connecting to localhost on port 8545
	RPC rpc("127.0.0.1", "8545");
}

Web3 methods

//returns the client version
rpc.Web3ClientVersion();

//returns the sha3 of a given input
rpc.Web3Sha3();

About

C++ ethereum libraries

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0