Skip to content

Get transaction finalization status

GET
/tx/{chainId}/{txHash}

Returns the current finalization status for a transaction: the set of domain milestones (e.g. collection going live, sale going live) it must complete, and whether each is done. Overall is Ready only when every expected milestone is done. Use the /ws variant for live push updates instead of polling.

chainId
required
integer
> 0 <= 9007199254740991
txHash
required
string
/^0x[0-9a-fA-F]{64}$/

Current transaction status snapshot

object
chainId
required
integer
<= 9007199254740991
txHash
required
string
initialized
required
boolean
finalized
required
boolean
overall
required
string
Allowed values: Pending Finalizing Ready Failed
milestones
required
Array<object>
object
key
required
string
Allowed values: collection:live sale:live sale:updated bid:recorded dutch:synced auction:synced edition:updated tokens:ready
status
required
string
Allowed values: Pending Done Failed
units
Array<object>
object
id
required
string
ref
string
status
required
string
Allowed values: Pending Done Failed

Unauthorized