Skip to content
forked from onrik/ethrpc

Golang client for ethereum json rpc api

License

Notifications You must be signed in to change notification settings

yaoyu026/ethrpc

 
 

Repository files navigation

Ethrpc

Build Status Go Report Card GoDoc

Golang client for ethereum JSON RPC API.

Usage:
package main

import (
	"log"
    
	"github.com/onrik/ethrpc"
)

func main() {
	client := ethrcp.NewEthRPC("http://127.0.0.1:8545")

	version, err := client.Web3ClientVersion()
	if err != nil {
		log.Fatal(err)
	}
}

About

Golang client for ethereum json rpc api

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%