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

# celol2

> Tables in tt-contracts.celol2

## Tables

### ERC20\_Transfer\_event

ERC-20 token transfer events decoded from transaction logs, containing sender address, recipient address, and token amount. Primary source for tracking fungible token flows and wallet holdings across EVM-compatible blockchains.

<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_value`         | `STRING`    | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.       |
</Accordion>

<Accordion title="Sample Data">
  | in\_to                                     | address                                    | in\_from                                   | removed | in\_value | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ------- | --------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x045d685d23e8aa34dc408a66fb408f20dc84d785 | 0x122013fd7df1c6f636a5bb8f03108e876548b455 | 0x313e1b5edeebab73b6e869a74a896dc999e204cc | false   | 0         | 0          | 35192211      | 2025-05-12T23:36:09.000Z | 0xc2d1519b63bbef82de68ab9b086b816b75c839a068e5d55754009bf99444106d |
  | 0x045d685d23e8aa34dc408a66fb408f20dc84d785 | 0x8e3670fd7b0935d3fe832711debfe13bb689b690 | 0x11ce57aaae0418d120e4415691b6f174219e4b02 | false   | 0         | 0          | 35187368      | 2025-05-12T22:15:26.000Z | 0x2908ba7c31de9e98ff7182d244778d1887b3de206aeee1ccd17242ab3f541003 |
  | 0x045d685d23e8aa34dc408a66fb408f20dc84d785 | 0x471ece3750da237f93b8e339c536989b8978a438 | 0xb460f9ae1fea4f77107146c1960bb1c978118816 | false   | 0         | 0          | 35180773      | 2025-05-12T20:25:31.000Z | 0xe5d5e480b9dc28c6e63ec396daa67ac8d48deae422bf727e4bfbb27da403203a |
</Accordion>

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

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

***
