> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# berachain.logs_decoded

> ABI-decoded event logs on Berachain — human-readable event names and parsed parameters from verified contracts.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table Description

The `logs_decoded` table contains decoded logs from Berachain transactions. The table matches `topic0` to the event signature and the corresponding event name. The table does not contain the full event data and is not suitable for analysis of smart contract level data. For that, use the specific event tables as described in [Event Logs](/data-catalog/evm/berachain/decoded/event-logs).

The `berachain.logs_decoded` table is great for gaining a high-level understanding of the types of events that are being emitted by a smart contract or smart contracts of a certain protocol.

## Column Descriptions

| Column             | Type        | Description                                    |
| ------------------ | ----------- | ---------------------------------------------- |
| `block_date`       | `date`      | Date of the block (UTC)                        |
| `block_time`       | `timestamp` | Timestamp of the block containing this log     |
| `block_number`     | `bigint`    | Block number containing this log               |
| `namespace`        | `varchar`   | Project namespace (e.g., uniswap\_v3)          |
| `contract_name`    | `varchar`   | Name of the contract that emitted the event    |
| `contract_address` | `varbinary` | Address of the contract that emitted the event |
| `tx_hash`          | `varbinary` | Hash of the transaction containing this log    |
| `tx_from`          | `varbinary` | Address that initiated the transaction         |
| `tx_to`            | `varbinary` | Address the transaction was sent to            |
| `tx_index`         | `integer`   | Position of the transaction within the block   |
| `index`            | `integer`   | Position of the log within the block           |
| `signature`        | `varbinary` | Event signature hash (topic0)                  |
| `event_name`       | `varchar`   | Decoded name of the event                      |
| `created_at`       | `timestamp` | When this record was created in Dune           |

## Table Sample

<TableSample tableSchema="berachain" tableName="logs_decoded" />
