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

# polygon_v1_polygon

> Tables in tt-contracts.polygon_v1_polygon

## Tables

### ERC1155\_TransferSingle\_event

ERC-1155 (Multi Token Standard) single token transfer events emitted when one token ID is transferred between addresses. Contains operator, sender, recipient, token ID, and transfer amount for tracking individual NFT and semi-fungible token movements within multi-token contracts.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_operator`      | `STRING`    | Address authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string.                             |
  | `in_from`          | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                        |
  | `in_to`            | `STRING`    | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.                                      |
  | `in_id`            | `STRING`    | Unique identifier for the position, record, or entity within the protocol. Numeric string representation.                                            |
  | `in_amount`        | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                      |
</Accordion>

<Accordion title="Sample Data">
  | in\_id                                  | in\_to                                     | address                                    | in\_from                                   | removed | in\_amount | log\_index | in\_operator                               | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | --------------------------------------- | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ------- | ---------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 340282366920938463463374607431768211456 | 0x4a90ba04d34a98058bf8176c601fa372842ecd9e | 0xddead819fa3e2bea0c2e33ab71204240ebc0739e | 0x0000000000000000000000000000000000000000 | false   | 1          | 0          | 0x4162207c13b4d97f93b1701a78265832acdb1fe8 | 2371952       | 2020-07-26T07:25:50.000Z | 0x8ddd6c0d2ebac71ca9c054a4b9409b62cf6562c78a2b29a56f251745941c2178 |
  | 680564733841876926926749214863536422912 | 0x4a90ba04d34a98058bf8176c601fa372842ecd9e | 0xddead819fa3e2bea0c2e33ab71204240ebc0739e | 0x0000000000000000000000000000000000000000 | false   | 1          | 1          | 0x4162207c13b4d97f93b1701a78265832acdb1fe8 | 2371952       | 2020-07-26T07:25:50.000Z | 0x8ddd6c0d2ebac71ca9c054a4b9409b62cf6562c78a2b29a56f251745941c2178 |
  | 680564733841876926926749214863536422912 | 0x34ef922bf7f2193a2f3535fb877dbfb167915af4 | 0xddead819fa3e2bea0c2e33ab71204240ebc0739e | 0x0000000000000000000000000000000000000000 | false   | 1          | 1          | 0x4162207c13b4d97f93b1701a78265832acdb1fe8 | 2390291       | 2020-07-26T17:56:16.000Z | 0x6f9bfdffb55c6aadec72124260aaa9a0e4e902145012016f7114c8d2e1ae590e |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.polygon_v1_polygon.ERC1155_TransferSingle_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### ERC721\_Transfer\_event

Non-fungible token (NFT) transfer events emitted by ERC-721 compliant smart contracts, capturing the movement of unique tokens between addresses. Contains sender, recipient, token ID, and contract address for tracking NFT ownership changes and marketplace activity across chains.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_from`          | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                        |
  | `in_to`            | `STRING`    | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.                                      |
  | `in_tokenId`       | `STRING`    | Unique identifier for a non-fungible token within its contract. Numeric string representation of the token's ID.                                     |
</Accordion>

<Accordion title="Sample Data">
  | in\_to                                     | address                                    | in\_from                                   | removed | log\_index | in\_tokenId | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ------- | ---------- | ----------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x969cbd9439207c2ff6732c63fdb8c48fb2b8ce68 | 0xf556faf23fc2feefa33ee6db2d1ee4c70e534513 | 0x56d6d11df2aa6a0dbc5569a56c9299fcdb418911 | false   | 0          | 66          | 2834434       | 2020-08-06T08:23:42.000Z | 0xb0a746907530cf3d6abc79e69b9fefe4746185ca26c559dcfb0405eed5451555 |
  | 0x3fad9ab6e95f22fdf8b646623d282b7137410642 | 0xf556faf23fc2feefa33ee6db2d1ee4c70e534513 | 0x56d6d11df2aa6a0dbc5569a56c9299fcdb418911 | false   | 0          | 322         | 2837506       | 2020-08-06T10:09:18.000Z | 0xee4ea6f973b82790323e40f1d1cccd07ae83e558197eeffc6bb7ce2cb39667c1 |
  | 0x08928ea95a6d400e782282a97e32265c0740cef4 | 0xf556faf23fc2feefa33ee6db2d1ee4c70e534513 | 0x56d6d11df2aa6a0dbc5569a56c9299fcdb418911 | false   | 0          | 42          | 2825943       | 2020-08-06T03:31:48.000Z | 0x3f674148b13b61e1ce7772eb2c7ddd88d8e07e72783ac3d969815d5b826dc787 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.polygon_v1_polygon.ERC721_Transfer_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***
