From db440c5f39127705f289066a86544ff07456d46b Mon Sep 17 00:00:00 2001 From: roethke Date: Fri, 20 Feb 2026 07:17:40 -0800 Subject: [PATCH] add tx indexing error code --- .../provider-rpc-methods/eth_getTransactionReceipt.mdx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionReceipt.mdx b/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionReceipt.mdx index 49f6bbb92..ccba4a666 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionReceipt.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionReceipt.mdx @@ -117,10 +117,11 @@ Either 1 (success) or 0 (failure). ## Error Handling -| Code | Message | Description | -| ------ | ------------------------------ | ----------- | -| -32602 | Invalid transaction hash | The provided transaction hash is invalid | -| 4100 | Requested method not supported | The method is not supported by the wallet | +| Code | Message | Description | +| ------ | -------------------------------- | ----------- | +| -32000 | Transaction indexing is in progress | The node is still indexing transactions and the receipt is not yet available | +| -32602 | Invalid transaction hash | The provided transaction hash is invalid | +| 4100 | Requested method not supported | The method is not supported by the wallet | Transaction receipts are only available for mined transactions. Pending transactions will return null.