Skip to main content

Gnosis Error Code Reference

Updated on
Aug 25, 2025
QuickNode now provides Logs for your RPC endpoints. Easily identify and resolve issues by viewing detailed error information directly from your dashboard.

HTTP Error Codes

Let's look at the common HTTP errors you can encounter, what they mean and what you can do to prevent them.

400
Bad Request
Incorrect HTTP Request type (e.g. using GET instead of POST) or Invalid Characters
401
Unauthorized
This can happen when one or multiple security requirements are not met such as incorrect Token Auth, IP not in the whitelist, invalid JWT, etc.
403
Forbidden
Endpoint Disabled (One of the reasons for this could be a past due payment)
403
Forbidden - custom trace not found
Custom trace code not whitelisted (Submit a ticket to go through the approval process)
404
Not Found
Incorrect URL or Incorrect method
413
Content Too Large
Body of the request is too large
413
Request Entity Too Large
eth_getLogs and eth_newFilter are limited to a 10,000 blocks range. We enforce a limit of 10,000 block ranges when requesting logs and events.
429
Too Many Requests
The requests per second (RPS) of your requests are higher than your plan allows. Learn more about the 429 errors in our support documentation.
500
Internal Server Error
Submit a ticket for the support team to take a look at the errors asap
503
Service Unavailable
Submit a ticket for the support team to take a look at the errors asap

HTTP Error Code Example

The code snippet below is an example of Error Code 429.

{
"jsonrpc": "2.0",
"error": {
"code": 429,
"message": "The requests per second (RPS) of your requests are higher than your plan allows."
},
"id": 1
}

EVM RPC Error Codes

Let's look at the common EVM errors you can encounter, what they mean and what you can do to prevent it.

-32000
Header not found / Block not found
The requested block doesn't exist on the node. Invalid block number or the node you're hitting is not in sync yet. Use a retry mechanism with an incremental timeout
-32000
Stack limit reached
Usually a smart contract error/bug - stack limit reached 1024 (1023)
-32000
Method handler crashed
Internal error from the blockchain client, which can be a client bug. Submit a ticket so we can double check the nodes
-32000
Execution timeout
Add the timeout param in your request to override the default client timeout.
-32000
Nonce too low
The nonce value specified in your transaction is lower than the next valid nonce for the sender account.
-32000
Filter not found
Filter exceeded timeout; you'll have to recreate the filter once more.
-32001
Resource Not Found
The requested resource does not exist or is unavailable.
-32002
Resource Unavailable
The requested resource is temporarily or permanently unavailable.
-32003
Transaction Rejected
The transaction could not be created due to validation failure or insufficient resources.
-32004
Method Not Supported
The requested method is not implemented or supported by the server.
-32005
Limit Exceeded
The request exceeds the allowed limit or quota.
-32006
JSON-RPC Version Not Supported
The specified JSON-RPC version is not supported by the server.
-32009
Trace requests limited
We have limited the debug and trace method to a specific RPS to prevent the nodes from overloading
-32010
Transaction cost exceeds gas limit
Gas limit is set too low
-32011
Network error
This error occurs when there is a problem with the connection between the client and server, such as a timeout or a dropped connection
-32015
VM execution error
Smart contract execution error
-32600
Invalid request
JSON request is malformed or missing required fields. Ensure it follows the expected format
-32601
Method not found
Typically a typo in the method name; check for spelling errors
-32601
Failed to parse request
Incorrect request body; double check the method params
-32602
Invalid params - missing 0x prefix
Incorrect request; the 0x is missing from the address. the hex
-32602
Block range limit exceeded
eth_getLogs and eth_newFilter are limited to a 10,000 blocks range. Read an in-depth explanation in our support documentation.
-32603
Internal JSON-RPC error
This error is typically due to a bad or invalid payload
-32612
Custom traces are blocked
Submit a request to get custom traces enabled.
-32613
Custom trace not allowed
Custom trace not found in allowed custom traces. Submit a request to get this trace whitelisted.
-32700
Parse error
Invalid JSON received. The server encountered an error while parsing the JSON text
3
Execution reverted
The transaction was reverted during execution, likely due to failing conditions, insufficient gas, or a contract error

EVM RPC Error Code Example

The code snippet below is an example of Error Code -32601.

{
"jsonrpc": "2.0",
"id": 1,
"error": {
"code": -32601,
"message": "the method eth_randomMethod does not exist/is not available"
}
}

The RPC errors defined above are a collection of common errors you can encounter while developing on chains like ETH, BSC, Polygon, etc. These chains run on multiple clients with their own error definitions. You can view the errors mentioned in the node client source here as well:


If you're experiencing other error codes, please let us know by submitting a ticket. We're more than happy to assist

Share this doc