Private Transaction Status Query

To query the status of private transaction submitted by to 48club rpc and builder.

Endpoint

GET https://explore.48.club/v2/tx?hash=0x000

Request Example

curl https://explore.48.club/v2/tx?hash=0xa9dec40de640e3af39b4e555ce5b09af06a84a6bf8f1e3841b428bb0b9e3559b

Reponse Example

{
  "status": "INCLUDED",
  "includedBlock": 45319780,
  "hash": "0xa9dec40de640e3af39b4e555ce5b09af06a84a6bf8f1e3841b428bb0b9e3559b",
  "maxTimestamp": 1735540510,
  "transaction": {
    "from": "0x0372188A831DB8B951f374092269f2862049E98C",
    "gasPrice": "2020000000",
    "nonce": 146
  }
}

Detailed Field Descriptions

  • status[string]:

    • INCLUDED the tx was included in block `includedBlock`

    • PENDING the tx is waiting to be included

    • FAILED the tx was not able to be included before deadline, it is dropped permanently

    • UNKNOWN This is a very rare scenario, typically triggered by a failed on block-watching node.

  • includedBlock[uint64]

    • only appear if status=INCLUDED

  • maxTimestamp[uint64]

    • unix time of inclusion deadline of the transaction

Last updated