Docs
Supported ChainsLineaJSON-RPC APITxpool Methods

txpool_status - Linea RPC Method

Inspect pending and queued transaction counts in the Linea transaction pool. Useful for mempool monitoring, congestion analysis, and node health checks.

Returns transaction pool counters for the connected Linea endpoint. The result separates transactions that are immediately processable (pending) from those waiting on an earlier nonce or other prerequisite (queued).

Non-standard method. txpool_status is a Geth-style mempool inspection method. It is not part of the core Ethereum Execution API method set, and many shared RPC endpoints disable it.

Why Linea? Build on Consensys-backed zkEVM L2 with $1B+ TVL and 807% growth in 2025 with 15-30x lower fees than Ethereum mainnet, 6,200 TPS throughput, SWIFT integration with 12+ institutions, and $725M Consensys backing.

When to Use This Method

txpool_status is valuable for enterprise developers, DeFi builders, and teams seeking Consensys ecosystem integration:

  • Mempool Monitoring — Watch pending versus queued pressure on a node
  • Congestion Signals — Detect bursts of transaction backlog before they show up in block-level metrics
  • Node Health Checks — Confirm a node is accepting and classifying new transactions as expected
  • Operational Dashboards — Surface lightweight txpool counters without pulling full transaction content

Request Parameters

Request

This method accepts no parameters.

Response Body

Response
pendingQUANTITY

Number of processable transactions currently in the pool

queuedQUANTITY

Number of transactions waiting on an earlier prerequisite such as nonce order

Error Responses

Errors
Error Response-32601

Code Examples

Bash
curl -X POST https://api-linea-mainnet-archive.n.dwellir.com/YOUR_API_KEY \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "txpool_status",
    "params": [],
    "id": 1
  }'

Error Handling

Error CodeMessageDescription
-32601Method not foundThe endpoint does not expose txpool methods
-32603Internal errorThe node rejected or failed to process the request