pulsechain.box
txpool

txpool_status

Returns the number of transactions currently pending and queued in the transaction pool.

Returns the number of transactions currently pending and queued in the transaction pool.

Parameters

#TypeDescription
No parameters required.

Returns

FieldTypeDescription
pendingstringHex-encoded count of transactions ready to be included in the next block.
queuedstringHex-encoded count of transactions not yet ready (e.g., nonce gaps).

Example

curl -s -X POST https://rpc.pulsechain.box \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "txpool_status",
    "params": [],
    "id": 1
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "pending": "0x33",
    "queued": "0x30e0"
  }
}
TRY IT

Notes

  • Values are hex-encoded. In the example above, "0x33" = 51 pending and "0x30e0" = 12512 queued.
  • A large queued count is normal and indicates transactions with future nonces or insufficient gas prices.
  • This is a lightweight call compared to txpool_content or txpool_inspect.
Copyright © 2026 AvecdrA. Made with love.