pulsechain.box
txpool

txpool_inspect

Returns a summarized view of all transactions in the pool. Similar to txpool_content but with each transaction represented as a compact string instead of a full object.

Returns a summarized view of all transactions in the pool. Similar to txpool_content but with each transaction represented as a compact string instead of a full object.

Parameters

#TypeDescription
No parameters required.

Returns

FieldTypeDescription
pendingobjectMap of sender addresses to maps of nonces to summary strings.
queuedobjectMap of sender addresses to maps of nonces to summary strings.

Each transaction is summarized as: "to: value wei + gas x gasPrice".

Example

curl -s -X POST https://rpc.pulsechain.box \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "txpool_inspect",
    "params": [],
    "id": 1
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "pending": {
      "0x0001020304050607080910111213141516171819": {
        "42": "0xRecipientAddress: 1000000000000000000 wei + 21000 gas x 1000000000 wei"
      }
    },
    "queued": {}
  }
}
TRY IT

Notes

  • This is a lighter alternative to txpool_content since it returns summary strings instead of full transaction objects.
  • The summary format shows the recipient, value in wei, gas limit, and gas price.
  • Still potentially large if the pool contains many transactions.
Copyright © 2026 AvecdrA. Made with love.