aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/json.go
Commit message (Collapse)AuthorAgeFilesLines
* rpc: add new client, use it everywhereFelix Lange2016-07-231-28/+33
| | | | | | The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum.
* rpc: fix bad method error for batch requestsFelix Lange2016-07-231-8/+8
| | | | | | If a batch request contained an invalid method, the server would reply with a non-batch error response. Fix this by tracking an error for each batch element.
* cmd, console: split off the console into a reusable packagePéter Szilágyi2016-05-301-7/+7
|
* rpc: various fixes/enhancementsBas van Kervel2016-04-121-80/+85
| | | | | | | | rpc: be less restrictive on the request id rpc: improved documentation console: upgrade web3.js to version 0.16.0 rpc: cache http connections rpc: rename wsDomains parameter to wsOrigins
* rpc: add pub/sub supportBas van Kervel2016-04-021-10/+14
|
* cmd, common, node, rpc: move IPC into the node itselfPéter Szilágyi2016-02-041-1/+1
|
* rpc: fix success response encoding for null return valueFelix Lange2016-01-271-1/+1
| | | | | The "result" field of JSON-RPC 2.0 responses was omitted if the result was nil, causing exceptions in web3.js.
* rpc: migrated the RPC insterface to a new reflection based RPC layerBas van Kervel2016-01-261-0/+343
|
* CleanupTaylor Gerring2015-01-301-58/+0
|
* Move HTTP transport to sub package of RPCTaylor Gerring2015-01-281-9/+10
|
* Move GetRequestReply to EthereumApiTaylor Gerring2015-01-211-50/+0
| | | | Off of jsonWrapper
* cleanupTaylor Gerring2015-01-131-1/+1
|
* Add support for CodeAtTaylor Gerring2015-01-131-2/+6
|
* Added license headersTaylor Gerring2015-01-131-0/+16
|
* begin conversion to rpc over httpTaylor Gerring2015-01-131-0/+67
| | | | | Per specification at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC
* WIP RPC interfaceobscuren2014-10-211-0/+20