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

# xdc_v1_xdc

> Tables in tt-contracts.xdc_v1_xdc

## Tables

### Distributor\_Claimed\_event

Token distribution claim events from a Distributor contract on XDC Network. Records successful token claims by users, capturing the claimant address, token contract, and claimed amount for analyzing airdrop or reward distribution patterns.

<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_user`          | `STRING`    | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.                    |
  | `in_token`         | `STRING`    | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                               |
  | `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">
  | address                                    | in\_user                                   | removed | in\_token                                  | in\_amount              | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------------------------ | ----------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xdd8098da94cf3aea5253545162f1feb371278f5a | 0x7783b4f4ed3a10c31bbb985b63c54348babd64a5 | false   | 0x951857744785e80e2de051c32ee7b25f9c458c42 | 93120000000000000000    | 0          | 95012302      | 2025-10-20T06:29:00.000Z | 0xc170195f5d4915230de80725a3b7836560a250da2e58cdfd91369f2a7021dd7a |
  | 0xdd8098da94cf3aea5253545162f1feb371278f5a | 0x85ca0dff027102ea3fbf1c077524eab21d1f7927 | false   | 0x951857744785e80e2de051c32ee7b25f9c458c42 | 5720472081925196475108  | 0          | 97373047      | 2025-12-17T17:40:22.000Z | 0xb8bc5fab52c647b6f28465e6e81e894cb6d398549357fc4c597c5d9cf8b58315 |
  | 0xdd8098da94cf3aea5253545162f1feb371278f5a | 0xe4262c0d9058c8a4d1462269494c25f1782cfbd2 | false   | 0x951857744785e80e2de051c32ee7b25f9c458c42 | 18475255517361587694959 | 0          | 97378253      | 2025-12-17T20:55:11.000Z | 0xde41297b6c3431fd401ad4561e3e8a727a3cf8894dbcf56ed319921ab3c88e28 |
</Accordion>

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

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

***
