Skip to main content
POST
txpool_contentFrom
Arc API method that returns the transactions in the node’s pool for one sender address. It is txpool_content narrowed to a single account, so the response stays small on a busy node.

Parameters

  • address — the sender address to filter the pool by.

Response

  • pending — the sender’s transactions that are ready for inclusion, keyed by nonce.
  • queued — the sender’s transactions held back by a nonce gap, keyed by nonce.
Arc produces a block roughly every 0.5 seconds, so a healthy sender’s transactions usually clear before you can observe them. An empty result means nothing was pending for that address at that moment.

txpool_contentFrom code examples

Use case

When a user reports that a transaction is not landing, this answers the question directly for their address alone. If the transaction sits in queued rather than pending, the sender has a nonce gap and every later transaction stays parked until the missing nonce is filled.

Body

application/json
id
integer
default:1
jsonrpc
string
default:2.0
method
string
default:txpool_contentFrom
params
array

Response

200 - application/json

Returns the result of txpool_contentFrom.

jsonrpc
string
id
integer
result
object
Last modified on August 3, 2026