LogoLogo
LogoLogo
  • F.A.Q.
  • KOGE Token
    • LitePaper
    • Supply API
  • Governance
    • Voting
    • 48er NFT
    • Committee
  • 48 Soul Point
    • Entry Member
    • Gold Member
      • AirDrop
    • Platinum Member
      • Exclusive Chat
      • Domain Email
      • Free VPN
  • 48 Validators
    • For MEV Builders
  • Puissant Builder
    • Auction Transaction Feed
      • Code Example
    • Send Bundle
    • Send PrivateTransaction
    • 48 SoulPoint Benefits
    • Bundle Submission and On-Chain Status Query
    • Private Transaction Status Query
    • For Validators
  • Privacy RPC
    • 0Gas (membership required)
    • 0Gas sponsorship
    • Cash Back
  • BSC Snapshots
  • Trouble Shooting
  • RoadMap
  • Partnership
  • Terms of Use
Powered by GitBook
On this page
  • Endpoint
  • Request Example
  • Reponse Example
  • Detailed Field Descriptions
  1. Puissant Builder

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 4 months ago