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.
Supported Protocols
ethereum/mainnet
ethereum/holesky
ethereum/sepolia
polygon/mainnet
polygon/amoy
Schema
{
"data": {
"tx_id": "string",
"tx_hash": "string",
"timestamp": "integer",
"block_hash": "string",
"block_number": "integer"
}
}
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. |
Calls Schema
{
"data": {
"calls": [
{
"type": "string",
"from": "string",
"to": "string",
"value": "string",
"gas": "string",
"gas_used": "string",
"input": "string",
}
]
}
}
The table below shows the schema breakdown:
Field | Type | Description |
---|---|---|
type | string | The type of call indicates the kind of execution (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. |
Ethereum 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": [
{
"type": "DELEGATECALL",
"from": "0x87870bca3f3fd6335c3f4ce8392d69350b4fa4e2",
"to": "0x5faab9e1adbddad0a08734be8a52185fd6558e14",
"value": "0x0",
"gas": "0x25553a",
"gas_used": "0x1c7495",
"input": "0x42b0b77c000000000000000000000000adc0a53095a0af87f3aa29fe0715b5c28016364e000000000000000000000000",
"calls": [
{
"type": "DELEGATECALL",
"from": "0x87870bca3f3fd6335c3f4ce8392d69350b4fa4e2",
"to": "0x0063bcd116694c21f6a94aa78e10ef4d7819a609",
"value": "0x0",
"gas": "0x247ec4",
"gas_used": "0x1c3235",
"input": "0xa1fe0e8d5e14560e314427eb9d0c466a6058089f672317c8e26719a770a709c3f2481e48000000000000000000000000000000000000000000000000000000000000004"
},
{
"type": "CALL",
"from": "0x87870bca3f3fd6335c3f4ce8392d69350b4fa4e2",
"to": "0x6b175474e89094c44da98b954eedeac495271d0f",
"value": "0x0",
"gas": "0x8510c",
"gas_used": "0x12a7",
"input": "0x23b872dd000000000000000000000000adc0a53095a0af87f3aa29fe0715b5c28016364e000000000000000000000000018008bfb33d285247a21d44e50697654f754e630000000000000000000000000000000000000000000009f256b1414eb2ea3170",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
]
}
],
"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.