Skip to content

greenbahar/Ethereum-Block-Processor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Implementing Parser interface to hook this up to notifications service to notify about any incoming/outgoing transactions.

type Parser interface {
	// last parsed block
	GetCurrentBlock() int

	// add address to observer
	Subscribe(address string) bool

	// list of inbound or outbound transactions for an address
	GetTransactions(address string) []Transaction
}

Using Ethereum JSONRPC to interact with Ethereum Blockchain via https://cloudflare-eth.com

About

Implementing an Ethereum block processor using RPC

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages