aboutsummaryrefslogtreecommitdiffstats
path: root/ethclient/ethclient_test.go
Commit message (Collapse)AuthorAgeFilesLines
* ethclient, ethereum: add NotFound, split transactions out of ChainReaderFelix Lange2016-12-051-1/+1
| | | | | | | | | ethclient now returns ethereum.NotFound if the server returns null and no error while accessing blockchain data. The light client cannot provide arbitrary transactions. The change to split transaction access into its own interface emphasizes that transactions should not be relied on and recommends use of logs.
* all: update license informationFelix Lange2016-11-091-0/+16
|
* ethereum, ethclient: add SyncProgress API endpointPéter Szilágyi2016-09-061-0/+1
|
* ethclient: add initial implementation of the typed RPC clientFelix Lange2016-08-101-0/+17
ethclient implements the proposed Ethereum Go API. There are no tests at the moment, a suite that excercises all implementations of the API will be added later.