Unified Confirmed Transaction Trace

This event is triggered when:

  • A new transaction is confirmed and traced within the Ethereum blockchain.
  • The trace captures detailed execution information, including internal calls, gas usage, and input/output data.
šŸ“˜

Note

Each call within a transaction trace is flattened and delivered as an individual message if it matches the filter criteria.

Supported Protocols

  • ethereum/mainnet
  • ethereum/sepolia
  • ethereum/hoodi
  • polygon/mainnet
  • polygon/amoy

Schema

{
  "data": {
    "tx_id": "string",
    "tx_hash": "string",
    "timestamp": "integer",
    "block_hash": "string",
    "block_number": "integer",
    "type": "string",
    "from": "string",
    "to": "string",
    "value": "string",
    "gas": "string",
    "gas_used": "string",
    "input": "string",
    "output": "string",
    "calls": []
  }
}

The table below shows the schema breakdown:

FieldTypeDescription
tx_idstring(Required) The transaction identifier, such as the transaction hash or other unique identifier.
tx_hashstringThe transaction hash.
timestampinteger(Required) The UNIX timestamp when the block was mined/validated.
block_hashstring(Required) The block hash.
block_numberinteger(Required) The block number.
typestringThe type of call (e.g., "CALL", "DELEGATECALL").
fromstringThe sender's account address.
tostringThe recipient's account address.
valuestringThe value transferred. The value is in the lowest denomination of the asset. For ETH, the value is in wei.
gasstringThe gas limit set for this call.
gas_usedstringThe actual amount of gas used for the transaction.
inputstringThe data sent with the call.
outputstringThe data returned by the call, if any.
callsarrayAn empty array. Each nested call is delivered as its own individual message.

Example

{
   "protocol":"ethereum",
   "network":"mainnet",
   "event_type":"unified_confirmed_tx_trace",
   "chain_id":"eip155:1",
   "data":{
      "type":"CALL",
      "from":"0xf52e602be034b221d5d56aa544f2df71d92fe77d",
      "to":"0x87870bca3f3fd6335c3f4ce8392d69350b4fa4e2",
      "value":"0x0",
      "gas":"0x26b14a",
      "gas_used":"0x1a0ef0",
      "input":"0x42b0b77c000000000000000000000000adc0a53095a0af87f3aa29fe0715b5c28016364e000000000000000000000000",
      "calls":[],
      "tx_id":"0x5eaaa56e1691f9d305343cfe3680c7705994ccb916c2666b1fab4cc560b22605",
      "tx_hash":"0x5eaaa56e1691f9d305343cfe3680c7705994ccb916c2666b1fab4cc560b22605",
      "timestamp":1721827031,
      "block_hash":"0x570ba481efbfe549e7fad3965af2aa913131af8cabb5516e7c51110130cbbf60",
      "block_number":20376644
   }
}

šŸ‘‹ Need Help?

Contact us through email or our support page for any issues, bugs, or assistance you may need.