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

# wxdai_v1_gnosis

> Tables in tt-contracts.wxdai_v1_gnosis

## Tables

### wxDAI\_Deposit\_event

Wrapped xDAI (wxDAI) deposit events on Gnosis Chain, recording when users wrap native xDAI into the ERC-20 wxDAI token. Contains recipient addresses and deposit amounts in wei for tracking wrapped token minting activity.

<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_dst`           | `STRING`    | Address of the account receiving tokens or assets in the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                       |
  | `in_wad`           | `STRING`    | Token amount denominated in WAD units. String-encoded integer representing value with 18 decimal places of precision.                                |
</Accordion>

<Accordion title="Sample Data">
  | in\_dst                                    | in\_wad               | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | --------------------- | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x1b02da8cb0d097eb8d57a175b88c7d8b47997506 | 15600000000000000000  | 0xe91d153e0b41518a2ce8dd3d7944fa863463a97d | false   | 82         | 22767549      | 2022-06-21T01:13:35.000Z | 0xba1d36c580bd298d853eaf439db9541b0a21cb2d959bcf47fbd1f825c61fb90c |
  | 0x1b02da8cb0d097eb8d57a175b88c7d8b47997506 | 628809086227756467208 | 0xe91d153e0b41518a2ce8dd3d7944fa863463a97d | false   | 56         | 22776420      | 2022-06-21T13:58:40.000Z | 0x306f0868e2c6cf8422a8f95b9b93879c1e8a904135d15b6ddcd6084119db22a8 |
  | 0x1b02da8cb0d097eb8d57a175b88c7d8b47997506 | 111903061272000821865 | 0xe91d153e0b41518a2ce8dd3d7944fa863463a97d | false   | 104        | 22776255      | 2022-06-21T13:44:25.000Z | 0x25c1ddc93333a8bb5f5b8b75fdc17d36bb55db134c8c5170278bd131ab84b059 |
</Accordion>

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

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

***

### wxDAI\_Withdrawal\_event

Withdrawal events from the Wrapped xDAI (wxDAI) token contract on Gnosis Chain, recording unwrapping transactions where users convert wxDAI back to native xDAI. Useful for tracking liquidity flows and user unwrapping behavior with wei-denominated amounts.

<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_src`           | `STRING`    | Address of the account from which tokens or assets are being withdrawn or transferred. Hex-encoded, 0x-prefixed, 42-character string.                |
  | `in_wad`           | `STRING`    | Token amount denominated in WAD units. String-encoded integer representing value with 18 decimal places of precision.                                |
</Accordion>

<Accordion title="Sample Data">
  | in\_src                                    | in\_wad              | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | -------------------- | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xcf1c10a8c24a048e2126eda25d96f5b8b03001e7 | 1000000000000000000  | 0xe91d153e0b41518a2ce8dd3d7944fa863463a97d | false   | 0          | 12462667      | 2020-10-11T15:53:40.000Z | 0x9e4af5b00e1bbafb0d5dbdbe4c32b78bae449d49d3e85eaa18d20264c2ea8b70 |
  | 0x4d9cd3ca596064522253b38afbb1b3a83f450c42 | 117132173553647336   | 0xe91d153e0b41518a2ce8dd3d7944fa863463a97d | false   | 0          | 12454516      | 2020-10-11T04:21:10.000Z | 0xe2fd975601c7f2d1d5da4e75594f0daf0977455ec5bf25f9018cb440e5f0fa88 |
  | 0x12ee31c0fb66c2a1d03232dbd0d1dc40e6b608af | 41022050086555870001 | 0xe91d153e0b41518a2ce8dd3d7944fa863463a97d | false   | 0          | 12456831      | 2020-10-11T07:36:20.000Z | 0x3dcaacb901f8efa195c84e48a0799c8035082a615b35d2c3f2d67a6410165a2f |
</Accordion>

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

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

***
