Unified Confirmed Transaction Log

This event is triggered when:

  • A log is emitted from a smart contract execution on an EVM-based blockchain.
  • It captures details related to the event logs generated during a transaction execution.

Supported Protocols

  • ethereum/mainnet
  • ethereum/holesky
  • ethereum/sepolia
  • optimism/mainnet
  • polygon/mainnet
  • polygon/amoy

Schema

{
  "data": {
    "block_number": "integer",
    "block_hash": "string",
    "tx_id": "string",
    "tx_hash": "string",
    "timestamp": "integer",
    "status": "string",
    "transfers": [
      "array"
    ]
  }
}

The table below shows the schema breakdown:

FieldTypeDescription
block_hashstring(Required) The block hash.
block_numberinteger(Required) The block number.
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.
statusstring(Required) The transaction status when available. The default status for successful transactions is success and failed for failed transactions.
transfersarray of transfersAn array of transfers took place during the transaction.

See the Transfer schema for reference.

Examples

{
  "chain_id": "eip155:1",
  "protocol": "ethereum",
  "network": "mainnet",
  "event_type": "unified_confirmed_tx_log",
  "chain_id":"eip155:1",
  "data": {
    "block_number": 19639919,
    "block_hash": "0x3160a4d48293477f4b1b156700efb626a34373953f43220f68cba7c97a983e0f",
    "tx_id": "0xdd984b4e5e06cf9bccda14f216cf9c546d7ac7468650f5207d07fc03682525a2",
    "tx_hash": "0xdd984b4e5e06cf9bccda14f216cf9c546d7ac7468650f5207d07fc03682525a2",
    "timestamp": 1712929631,
    "status": "success",
    "transfers": [
      {
        "asset": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "from": "0x8b7b59Ee336c076cd85bC43cD402B5b0526a69e4",
        "to": "0xf89d7b9c864f589bbF53a82105107622B35EaA40",
        "value": 2500000000
      }
    ]
  }
}
{
  "protocol": "polygon",
  "network": "mainnet",
  "event_type": "unified_confirmed_tx_log",
  "chain_id":"eip155:137",
  "data": {
    "block_number": 58385205,
    "block_hash": "0x2086d3d22fc0a18f01631babebbe079c4a7ecf8a276f86b949080d4f131e17ee",
    "tx_id": "0xc89d476bc8556d578d39f9d300c6ddd44a4e24c895a290bd007f81244820875e",
    "tx_hash": "0xc89d476bc8556d578d39f9d300c6ddd44a4e24c895a290bd007f81244820875e",
    "timestamp": 1718877234,
    "status": "success",
    "transfers": [
      {
        "asset": "0xc1fE469dFF8c6b840e000FD23D001D86E7eCc433",
        "from": "0x0000000000000000000000000000000000000000",
        "to": "0x6A015330d24d4B4a74c9a13EdeE3EeC42eE4c426",
        "value": 6
      }
    ]
  }
}

👋 Need Help?

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