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

# near.ft_transfers

> NEAR fungible token transfers — NEP-141 token movements.

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 `near.ft_transfers` table tracks all Fungible Token (FT) transfers in NEAR.

## Column Descriptions

| Column                | Description                                                        | Type                        |
| --------------------- | ------------------------------------------------------------------ | --------------------------- |
| block\_date           | The date when the FT transfer occurred.                            | date                        |
| block\_height         | The block height at the time of the FT transfer.                   | bigint                      |
| block\_time           | Timestamp when the block containing the FT transfer was produced.  | timestamp(3) with time zone |
| block\_hash           | The unique hash of the block containing the FT transfer.           | varchar                     |
| chunk\_hash           | The hash of the chunk within the block containing the FT transfer. | varchar                     |
| shard\_id             | Shard ID where the FT transfer was executed.                       | bigint                      |
| standard              | The FT standard associated with the transfer (e.g., "nep141").     | varchar                     |
| token\_id             | ID of the Fungible Token involved in the transfer (e.g., "near").  | varchar                     |
| receipt\_id           | The receipt ID associated with the FT transfer.                    | varchar                     |
| contract\_account\_id | The contract account handling the FT transfer.                     | varchar                     |
| cause                 | The function name invoked to cause the FT transfer.                | varchar                     |
| status                | The status of the FT transfer (e.g., "SUCCESS\_VALUE").            | varchar                     |
| event\_memo           | Memo attached to the FT transfer event.                            | varchar                     |
| event\_index          | Event index of the FT transfer event.                              | uint256                     |
| affected\_account\_id | The account affected by the FT transfer, i.e. the "to" account.    | varchar                     |
| involved\_account\_id | The account involved in the FT transfer, i.e. the "from" account.  | varchar                     |
| delta\_amount         | The amount of FT tokens transferred.                               | decimal(38,0)               |
| processed\_time       | Timestamp when the FT transfer data was processed.                 | timestamp(3) with time zone |
| updated\_at           | Timestamp when the FT transfer record was last updated.            | timestamp(3) with time zone |
| ingested\_at          | Timestamp when the FT transfer data was ingested into Dune.        | timestamp(3) with time zone |

## Table Sample

<TableSample tableSchema="near" tableName="ft_transfers" />
