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

# abracadabra_v1_polygon

> Tables in tt-contracts.abracadabra_v1_polygon

## Tables

### LzIndirectOFTV2\_SendToChain\_event

LayerZero cross-chain token transfer events emitted when tokens are sent to a destination chain via the OFT (Omnichain Fungible Token) V2 protocol. Contains sender address, recipient address, token amount, and LayerZero chain identifier for cross-chain message tracking.

<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__dstChainId`   | `STRING`    | LayerZero chain identifier for the destination blockchain. String-encoded integer representing the target chain in cross-chain message transfers.             |
  | `in__from`         | `STRING`    | Address initiating the transaction or transfer. Hex-encoded, 0x-prefixed, 42-character string.                                                                |
  | `in__toAddress`    | `STRING`    | Destination address for the cross-chain token transfer. 66-character hex string with 0x prefix and 24 leading zeros padding the address.                      |
  | `in__amount`       | `STRING`    | Amount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens). |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_\_from                                 | log\_index | in\_\_amount     | block\_number | in\_\_toAddress                                                    | in\_\_dstChainId | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ---------------- | ------------- | ------------------------------------------------------------------ | ---------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xca0d86afc25c57a6d2acdf331cabd4c9cee05533 | false   | 0x12c3219a5b559fa7d5951e481d8ba478ec624d26 | 253        | 249740000000000  | 52447285      | 0x00000000000000000000000012c3219a5b559fa7d5951e481d8ba478ec624d26 | 167              | 2024-01-17T23:31:01.000Z | 0xad710998dbe60c9cb8760b8729f1f10e945645a18a1c6fa2e1665fb8a74c44d2 |
  | 0xca0d86afc25c57a6d2acdf331cabd4c9cee05533 | false   | 0x1a8cf07fdca856f52d35c16296205bfe0bb9a281 | 499        | 1794570000000000 | 52437743      | 0x0000000000000000000000001a8cf07fdca856f52d35c16296205bfe0bb9a281 | 167              | 2024-01-17T17:30:11.000Z | 0x6243155f84d1cc4ffbb1899aa3968c29f3d3a031bd9c9d7b0888f44c2e0cecb0 |
  | 0xca0d86afc25c57a6d2acdf331cabd4c9cee05533 | false   | 0x1a8cf07fdca856f52d35c16296205bfe0bb9a281 | 291        | 1993960000000000 | 52437688      | 0x0000000000000000000000001a8cf07fdca856f52d35c16296205bfe0bb9a281 | 167              | 2024-01-17T17:28:15.000Z | 0x3d1e2d4d391e31ed33e98ee87dff12ae0e483fa741b97655707dc0ee453ba7bd |
</Accordion>

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

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

***
