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

> TON Jetton token metadata — name, symbol, decimals, and master contract.

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_metadata` table contains metadata information for Jettons (TON's equivalent of fungible tokens), including name, symbol, decimals, and other token-specific details. This table has no partitioning.

## Column Descriptions

| **Column**                     | **Type**  | **Description**                         |
| ------------------------------ | --------- | --------------------------------------- |
| **address**                    | string    | Contract address of the Jetton          |
| **update\_time\_onchain**      | int       | Last update time recorded on-chain      |
| **update\_time\_metadata**     | int       | Last update time of the metadata        |
| **mintable**                   | boolean   | Whether the Jetton can be minted        |
| **admin\_address**             | string    | Address of the Jetton administrator     |
| **jetton\_content\_onchain**   | string    | On-chain content of the Jetton          |
| **jetton\_wallet\_code\_hash** | string    | Hash of the Jetton wallet code          |
| **code\_hash**                 | string    | Hash of the Jetton contract code        |
| **metadata\_status**           | int       | Status of the metadata                  |
| **symbol**                     | string    | Symbol/ticker of the Jetton             |
| **name**                       | string    | Name of the Jetton                      |
| **description**                | string    | Description of the Jetton               |
| **image**                      | string    | Image URL of the Jetton                 |
| **image\_data**                | string    | Raw image data of the Jetton            |
| **decimals**                   | int       | Number of decimal places for the Jetton |
| **sources**                    | struct    | Raw metadata sources                    |
| **tonapi\_image\_url**         | string    | TON API image URL for the Jetton        |
| **adding\_date**               | int       | Date when the Jetton was added          |
| **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_metadata" />
