From a480c28a67fbddcd716bc60adce6325bdabd3c85 Mon Sep 17 00:00:00 2001 From: Ian Norden Date: Wed, 28 Oct 2020 09:02:27 -0500 Subject: [PATCH] update readme --- README.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cca12140..2b98b518 100644 --- a/README.md +++ b/README.md @@ -93,13 +93,31 @@ TODO: Port the IPLD RPC subscription endpoints after the decoupling ipld-eth-server currently recapitulates portions of the Ethereum JSON-RPC api standard. The currently supported standard endpoints are: -`eth_call` +`eth_call` +`eth_getBalance` +`eth_getStorageAt` +`eth_getCode` +`eth_getProof` `eth_blockNumber` -`eth_getLogs` `eth_getHeaderByNumber` +`eth_getHeaderByHash` `eth_getBlockByNumber` `eth_getBlockByHash` +`eth_getTransactionCount` +`eth_getBlockTransactionCountByHash` +`eth_getBlockTransactionCountByNumber` `eth_getTransactionByHash` +`eth_getRawTransactionByHash` +`eth_getTransactionByBlockHashAndIndex` +`eth_getTransactionByBlockNumberAndIndex` +`eth_getRawTransactionByBlockHashAndIndex` +`eth_getRawTransactionByBlockNumberAndIndex` +`eth_getTransactionReceipt` +`eth_getLogs` +`eth_getUncleCountByBlockHash` +`eth_getUncleCountByBlockNumber` +`eth_getUncleByBlockHashAndIndex` +`eth_getUncleByBlockNumberAndIndex` TODO: Add the rest of the standard endpoints and unique endpoints (e.g. getSlice)