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

# ton.jetton_events

> TON Jetton token events — transfers, mints, and burns.

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 `ton.jetton_events` table tracks events related to Jettons (TON's equivalent of fungible tokens), including transfers, mints, and burns. This table is partitioned by block\_date.

## Column Descriptions

| **Column**                | **Type**      | **Description**                                              |
| ------------------------- | ------------- | ------------------------------------------------------------ |
| **block\_time**           | timestamp     | Timestamp of when the block containing the event was created |
| **block\_date**           | date          | Date of when the block containing the event was created      |
| **type**                  | string        | Type of the Jetton event                                     |
| **tx\_hash**              | string        | Transaction hash of the event                                |
| **tx\_lt**                | bigint        | Logical time of the transaction                              |
| **utime**                 | int           | Unix timestamp of the event                                  |
| **trace\_id**             | string        | Trace identifier for event tracking                          |
| **tx\_aborted**           | boolean       | Whether the transaction was aborted                          |
| **query\_id**             | decimal(20,0) | Query identifier                                             |
| **amount**                | decimal(38,0) | Amount of Jettons involved in the event                      |
| **source**                | string        | Source address of the event                                  |
| **destination**           | string        | Destination address of the event                             |
| **jetton\_wallet**        | string        | Address of the Jetton wallet                                 |
| **jetton\_master**        | string        | Address of the Jetton master contract                        |
| **response\_destination** | string        | Destination address for the response                         |
| **custom\_payload**       | binary        | Custom payload data                                          |
| **forward\_ton\_amount**  | decimal(38,0) | Amount of TON to forward                                     |
| **forward\_payload**      | binary        | Payload to forward                                           |
| **comment**               | string        | Comment attached to the event                                |
| **updated\_at**           | timestamp     | Last time the record was updated                             |
| **ingested\_at**          | timestamp     | Time when the record was ingested                            |

## Table Sample

<TableSample tableSchema="ton" tableName="jetton_events" />
