txpool_statusByHash RPC Method

Looks up the mempool status of a transaction by its hash. This is a Monad-specific endpoint.

Parameters#

stringrequired

32-byte transaction hash, hex-encoded.

Result#

object - Object containing the transaction's current status and reason.

Code sample#

{
  "jsonrpc": "2.0",
  "method": "txpool_statusByHash",
  "params": [
    "0x0e07d8b53ed3d91314c80e53cf25bcde02084939395845cbb625b029d568135c"
  ],
  "id": 1
}

Response#

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "status": "unknown",
    "reason": ""
  }
}
Try It