Troubleshooting
To help you troubleshoot, review the configuration details and the collection of methods that are available on EON (EVM).
JSON-RPC specification
EON EVM supports most of the methods that are considered standard for EVM compatible chains.
Ethereum JSON-RPC API
The Ethereum JSON-RPC is a standard collection of methods that all execution clients implement. It is the canonical interface between users and the network. This interface allows downstream tooling and infrastructure to treat different Ethereum clients as modules that can be swapped at will.
The list of the methods supported, together with some interactive examples are available HERE.
General Error Messages
Error Code | Message | Definition |
-32600 | Invalid Request | The JSON sent is not a valid request object |
-32601 | Method not found | The method does not exist / is not available |
-32602 | Invalid params | Invalid method parameter(s) |
-32603 | Internal error | Internal JSON-RPC error - e.g. key id is missing |
-32000 to -32099 | Server error | Reserved for implementation-defined server-errors |
-39001 | Unknown block | Request for a finalized or safe block before merge |
3 | Execution reverted | JSON error code for a reverted EVM execution |