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

# flow.cadence_token_transfers

> Flow Cadence token transfers — fungible and NFT movement events.

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 `flow.cadence_token_transfers` table contains token transfer events on the Flow Cadence blockchain including NFT and fungible token transfers.

## Column Descriptions

| Column            | Type          | Description                                      |
| ----------------- | ------------- | ------------------------------------------------ |
| block\_date       | date          | The date of the transfer                         |
| timestamp         | timestamp     | Timestamp when the transfer occurred             |
| block\_height     | bigint        | The block number containing this transfer        |
| block\_hash       | string        | Hash of the block containing this transfer       |
| transaction\_hash | string        | Hash of the transaction containing this transfer |
| contract\_address | string        | Address of the token contract                    |
| token\_id         | string        | Identifier of the token being transferred        |
| from              | string        | Address of the sender                            |
| to                | string        | Address of the recipient                         |
| amount            | decimal(38,9) | Amount of tokens transferred                     |
| chain\_specific   | string        | Chain-specific metadata in JSON format           |
| \_updated\_at     | timestamp     | Timestamp when the record was last updated       |
| \_ingested\_at    | timestamp     | Timestamp when the record was ingested           |

## Table Sample

<TableSample tableSchema="flow" tableName="cadence_token_transfers" />
