Skip to content

Commit

Permalink
EIP-RPC: Add error code for found but unsupported methods
Browse files Browse the repository at this point in the history
  • Loading branch information
bitpshr committed Oct 7, 2018
1 parent 386eb71 commit 8862717
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion EIPS/eip-rpc.md
Expand Up @@ -33,13 +33,14 @@ If an Ethereum RPC method encounters an error, the `error` member included on th
|-|-|-|-|
|-32700|Parse error|Invalid JSON|standard|
|-32600|Invalid request|JSON is not a valid request object|standard|
|-32601|Method not found|Method does not exist or is not available|standard|
|-32601|Method not found|Method does not exist|standard|
|-32602|Invalid params|Invalid method parameters|standard|
|-32603|Internal error|Internal JSON-RPC error|standard|
|-32000|Invalid input|Missing or invalid parameters|non-standard|
|-32001|Resource not found|Requested resource not found|non-standard|
|-32002|Resource unavailable|Requested resource not available|non-standard|
|-32003|Transaction rejected|Transaction creation failed|non-standard|
|-32004|Method not supported|Method is not implemented|non-standard|

Example error response:

Expand Down

0 comments on commit 8862717

Please sign in to comment.