Are there Ethereum API wrappers?

0

1

I'm looking into developing some Go software on Ethereum and I'm wondering - are there any API wrappers around for Ethereum (something like BTCSuite's BTCRPCClient is for Bitcoin)? I know there is a whole Go Ethereum implementation, but I'm looking for more lightweight way of interacting just with the JSON RPC server, rather than interacting with the whole network directly.

ThePiachu

Posted 2016-02-04T00:51:31.503

Reputation: 41 594

Question was closed 2016-02-04T22:30:23.453

1

This would be better suited for https://ethereum.stackexchange.com

Tjaden Hess 2016-02-04T02:33:47.680

True, but it's not really off-topic here either, and it already got an answer here. So, I'm not sure whether it's worth it to migrate the question. Unless @ThePiachu wants to have it migrated?Murch 2016-02-04T13:25:20.847

@Murch I posted the question to both SEs, which probably is the best approach.ThePiachu 2016-02-04T18:01:50.080

@ThePiachu: Please don't post the identical question to multiple sites. Since Peter posted the same answer there as well, I'll close it here then, because it fits better on Ethereum.

Murch 2016-02-04T22:29:44.033

Answers

3

Not yet.

We've just revamped the server side RPC internals in develop and are still ironing out some quirks. I can imagine we would soon-ish start working towards the directions of providing some Go client APIs, but we're not there yet. If you just need a few specific ones, they are relatively easy to implement (here's a few we needed for a hackathon last week https://github.com/gophergala2016/etherapis/blob/master/etherapis/geth/api.go).

Péter Szilágyi

Posted 2016-02-04T00:51:31.503

Reputation: 146