txpool_contentFrom
Arc node API
txpool_contentFrom | Arc
Arc API method that returns the pending and queued transactions in the node’s pool for a single sender address. Use it on Arc via Chainstack.
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 inqueued rather than pending, the sender has a nonce gap and every later transaction stays parked until the missing nonce is filled.Last modified on August 3, 2026