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.
NoteEach call within a transaction trace is flattened and delivered as an individual message if it matches the filter criteria.
Supported Protocols
ethereum/mainnetethereum/sepoliaethereum/hoodipolygon/mainnetpolygon/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:
| Field | Type | Description |
|---|---|---|
| tx_id | string | (Required) The transaction identifier, such as the transaction hash or other unique identifier. |
| tx_hash | string | The transaction hash. |
| timestamp | integer | (Required) The UNIX timestamp when the block was mined/validated. |
| block_hash | string | (Required) The block hash. |
| block_number | integer | (Required) The block number. |
| type | string | The type of call (e.g., "CALL", "DELEGATECALL"). |
| from | string | The sender's account address. |
| to | string | The recipient's account address. |
| value | string | The value transferred. The value is in the lowest denomination of the asset. For ETH, the value is in wei. |
| gas | string | The gas limit set for this call. |
| gas_used | string | The actual amount of gas used for the transaction. |
| input | string | The data sent with the call. |
| output | string | The data returned by the call, if any. |
| calls | array | An 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.
Updated 8 days ago
