> ## 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.

# Message Events

> Echelon blockchain message events data

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

This table contains data about message-related events in the Echelon blockchain, including message types, attributes, and associated metadata. Because block events run on initia, this table is empty by design at this point.

## Table Schema

| Column name          | Description                                           | Type                        |
| -------------------- | ----------------------------------------------------- | --------------------------- |
| **block\_date**      | The date of the block.                                | date                        |
| **block\_height**    | The height of the block where the event occurred.     | bigint                      |
| **block\_timestamp** | Timestamp when the block was validated.               | timestamp(3) with time zone |
| **chain\_id**        | The ID of the chain where the block belongs.          | varchar                     |
| **tx\_id**           | The hash of the transaction where the event occurred. | varchar                     |
| **tx\_index**        | The index of the transaction in the block.            | bigint                      |
| **message\_index**   | The index of the message in the transaction.          | bigint                      |
| **event\_index**     | A unique index for events within the message.         | bigint                      |
| **event\_type**      | The type of event that was triggered.                 | varchar                     |
| **attribute\_key**   | The key of the event attribute.                       | varchar                     |
| **attribute\_value** | The value of the event attribute.                     | varchar                     |
| **attribute\_index** | A unique index for attributes within the event.       | bigint                      |
| **updated\_at**      | Timestamp of when the record was last updated.        | timestamp(3) with time zone |
| **ingested\_at**     | Timestamp of when the record was ingested into Dune.  | timestamp(3) with time zone |

## Table Sample

<TableSample tableSchema="echelon" tableName="message_events" />
