> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Trc10 Token Transfers

### Table Details

| Property            | Value                                    |
| ------------------- | ---------------------------------------- |
| Table Name          | `tron.assets.trc10_token_transfers`      |
| Table Status        | Production-Ready                         |
| Unique Key          | `block_timestamp`, `unique_id`           |
| Clustering Key(s)   | `block_timestamp::date`                  |
| Search Optimization | `token_id`, `from_address`, `to_address` |

### Table Columns

| Column Name                | Data Type          | Description                                                                                                                                             |
| -------------------------- | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| from\_address              | VARCHAR(34)        | Address where the token is being transferred from.                                                                                                      |
| to\_address                | VARCHAR(34)        | Address where the token is being transferred to.                                                                                                        |
| token\_id                  | VARCHAR(134217728) | Identifier for non-fungible tokens (ERC-721) or semi-fungible tokens (ERC-1155). Each unique token\_id within a collection represents a distinct asset. |
| token\_name                | VARCHAR(134217728) | Name of the asset transferred.                                                                                                                          |
| token\_symbol              | VARCHAR(134217728) | Token symbol of the asset transferred.                                                                                                                  |
| raw\_amount\_str           | VARCHAR(134217728) | Amount of tokens transferred (unnormalized) in string to retain precision.                                                                              |
| raw\_amount                | FLOAT              | Amount of tokens transferred (unnormalized).                                                                                                            |
| amount\_str                | VARCHAR(134217728) | Amount of token transferred, normalized in string to retain precision.                                                                                  |
| amount                     | FLOAT              | Amount of token transferred, normalized.                                                                                                                |
| usd\_amount                | FLOAT              | The USD amount of the tokens at the time of the transfer.                                                                                               |
| usd\_exchange\_rate        | FLOAT              | The exchange rate used to calculate the `usd_amount`.                                                                                                   |
| transaction\_from\_address | VARCHAR(34)        | The address of the sending party of this transaction.                                                                                                   |
| transaction\_to\_address   | VARCHAR(34)        | The address of the receiving party of this transaction (could be a contract address).                                                                   |
| transaction\_hash          | VARCHAR(64)        | Transaction hash that this transfer belongs to.                                                                                                         |
| transfer\_type             | VARCHAR(134217728) | The type of transfers, depending on the blockchain. Typically include: `value_transfer`, `gas_burn`, `gas_payment_to_miner`.                            |
| block\_timestamp           | TIMESTAMP\_NTZ(9)  | The time when the block that contains this transaction was included on the blockchain.                                                                  |
| block\_number              | NUMBER(38,0)       | The block number that the corresponding transaction of this transfer belongs to.                                                                        |
| block\_hash                | VARCHAR(64)        | The block hash that the corresponding transaction of this transfer belongs to.                                                                          |
| unique\_id                 | VARCHAR(134217728) | Unique ID generated for each transfer.                                                                                                                  |
| \_created\_at              | TIMESTAMP\_NTZ(9)  | Timestamp of when the entry was created.                                                                                                                |
| \_updated\_at              | TIMESTAMP\_NTZ(9)  | Timestamp of when the entry was last updated.                                                                                                           |

### Related Docs

* [EVM Assets Trc10 Token Transfers](/historical-data/supported-blockchains/evm/core-schemas/assets/transfers/native-token-transfers)
