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

# TRC1155 Transfers

> Event logs for TRC1155 token transfers on the Tron blockchain.

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 `TRC1155 Transfers` table captures all `Transfer` event logs for TRC1155 token transfers on the Tron blockchain.
This log is emitted when a `transfer` or `TransferFrom` function is called successfully on a TRC1155 token contract.

## Table Schema

| Column             | Type         | Description                                                            |
| ------------------ | ------------ | ---------------------------------------------------------------------- |
| contract\_address  | varbinary    | Address of the TRC1155 token contract that emitted this transfer event |
| evt\_tx\_hash      | varbinary    | Hash of the transaction containing this transfer event                 |
| evt\_tx\_from      | varbinary    | Address of the account that initiated the parent transaction           |
| evt\_tx\_to        | varbinary    | Address of the recipient of the parent transaction                     |
| evt\_tx\_index     | integer      | Position of the parent transaction within its containing block         |
| evt\_index         | bigint       | Index position of this event log within the transaction                |
| evt\_block\_time   | timestamp(3) | Timestamp of the block containing this event                           |
| evt\_block\_number | bigint       | The block number containing this event                                 |
| evt\_block\_date   | date         | The UTC date of the block containing this event                        |
| from               | varbinary    | Address sending the TRC1155 tokens                                     |
| id                 | uint256      | Token type identifier for the specific TRC1155 token being transferred |
| operator           | varbinary    | Address approved to execute the transfer on behalf of the sender       |
| to                 | varbinary    | Address receiving the TRC1155 tokens                                   |
| value              | uint256      | Quantity of the specified token type transferred                       |

## Table Sample

<TableSample tableSchema="erc1155_tron" tableName="evt_transfersingle" />
