From 5f7e87fa2a193eb5877cb79d0fbaa5e1db5932c4 Mon Sep 17 00:00:00 2001 From: MoNyAvA Date: Mon, 15 Dec 2025 13:27:54 +0100 Subject: [PATCH] docs: add blob sub-pool to tx pool docs (#20375) --- docs/vocs/docs/pages/sdk/node-components/pool.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/vocs/docs/pages/sdk/node-components/pool.mdx b/docs/vocs/docs/pages/sdk/node-components/pool.mdx index 301d794b3f..0b5a04670e 100644 --- a/docs/vocs/docs/pages/sdk/node-components/pool.mdx +++ b/docs/vocs/docs/pages/sdk/node-components/pool.mdx @@ -23,6 +23,7 @@ graph TD SubPools --> Pending[Pending Pool] SubPools --> Queued[Queued Pool] SubPools --> Base[Base Fee Pool] + SubPools --> Blob[Blob Pool] Pool --> Ordering[Transaction Ordering] Pool --> Listeners[Event Listeners] @@ -49,6 +50,7 @@ Transactions are ordered by their effective tip per gas to maximize block reward - **Pending**: Transactions ready for inclusion (correct nonce) - **Queued**: Future transactions (nonce gap exists) - **Base Fee**: Transactions priced below current base fee +- **Blob**: Blob transactions that currently do not meet base fee and/or blob fee requirements ### Pool Maintenance The pool requires periodic maintenance to: @@ -77,4 +79,4 @@ The pool supports an event system that allows other components to listen for tra - Learn about [Consensus](/sdk/node-components/consensus) validation - Explore [EVM](/sdk/node-components/evm) execution -- Understand [RPC](/sdk/node-components/rpc) server integration \ No newline at end of file +- Understand [RPC](/sdk/node-components/rpc) server integration