Skip to main content

txpool_contentFrom

Overview

The 'txpool_contentFrom' method retrieves the transactions contained within the txpool. It returns both pending and queued transactions of a specific address, grouped by nonce.

Request

{
"method": "txpool_contentFrom",
"params": ["address"]
}

Request Parameters

  • 'address': The Ethereum address for which you want to retrieve the pending and queued transactions.

Response

{
"pending": {
"nonce": "transaction details"
},
"queued": {
"nonce": "transaction details"
}
}