From d04318b3e5981251115c312a5355522e7aa29096 Mon Sep 17 00:00:00 2001 From: roethke Date: Tue, 27 Jan 2026 16:16:44 -0800 Subject: [PATCH 1/2] fix txStatus response objects and update node-reth repo name --- docs/base-chain/flashblocks/apps.mdx | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/docs/base-chain/flashblocks/apps.mdx b/docs/base-chain/flashblocks/apps.mdx index 2dc406e26..0af059590 100644 --- a/docs/base-chain/flashblocks/apps.mdx +++ b/docs/base-chain/flashblocks/apps.mdx @@ -204,7 +204,7 @@ curl https://sepolia-preconf.base.org -X POST -H "Content-Type: application/json Subscribe to real-time streams of Flashblocks data via WebSocket. Three subscription types are available: -Requires node-reth minimum client version v0.3.0 +Requires [base/base](https://github.com/base/base) minimum client version v0.3.0 - **pendingLogs** - Stream logs from transactions in Flashblocks - **newFlashblockTransactions** - Stream transaction hashes included in the block @@ -258,18 +258,29 @@ ws.on('close', () => { Check whether a transaction is present in the mempool: -Requires node-reth minimum client version v0.3.0 +Requires [base/base](https://github.com/base/base) minimum client version v0.3.0 ``` curl https://sepolia-preconf.base.org -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"base_transactionStatus","params":["0x..."],"id":1}' ``` -**Example Response** +**Transaction Found** +``` +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "status": "Found" + } +} +``` + +**Transaction Unknown** ``` { "jsonrpc": "2.0", "id": 1, "result": { - "status": "pending" + "status": "Unknown" } } ``` From 93909967d412341f94effb375db6698e4a3d7708 Mon Sep 17 00:00:00 2001 From: roethke Date: Tue, 27 Jan 2026 18:22:31 -0800 Subject: [PATCH 2/2] fix enum --- docs/base-chain/flashblocks/apps.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/base-chain/flashblocks/apps.mdx b/docs/base-chain/flashblocks/apps.mdx index 0af059590..f5cad9c7e 100644 --- a/docs/base-chain/flashblocks/apps.mdx +++ b/docs/base-chain/flashblocks/apps.mdx @@ -263,13 +263,13 @@ Check whether a transaction is present in the mempool: curl https://sepolia-preconf.base.org -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"base_transactionStatus","params":["0x..."],"id":1}' ``` -**Transaction Found** +**Transaction Known** ``` { "jsonrpc": "2.0", "id": 1, "result": { - "status": "Found" + "status": "Known" } } ```