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

# wazero_v1_alephzeroevm

> Tables in tt-contracts.wazero_v1_alephzeroevm

## Tables

### WAZERO\_Deposit\_event

Deposit events from the WAZERO wrapped token contract on Aleph Zero EVM, recording native token wrapping transactions with destination addresses and amounts in wei. Used for tracking WAZERO token minting and user deposit 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                                                  |
  | ------------------------------------------ | ------------------- | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xa2912af34e7ee82f3e32ef8e692679662e0627a0 | 1000000000000000000 | 0xb7da55d7040ef9c887e20374d76a88f93a59119e | false   | 0          | 173           | 2024-08-08T16:24:44.000Z | 0xef0f402ba45fc20338505f40f71a4a240e1bed24d736204fd984baaf80fc22c2 |
  | 0x18e621b64d7808c3c47bccbbd7485d23f257d26f | 10000000000000000   | 0xb7da55d7040ef9c887e20374d76a88f93a59119e | false   | 0          | 2757042       | 2024-09-07T23:02:15.000Z | 0xbde4f4cc1d036e36a03998defc2ec67c8e4e283707d08f44de4a0f3f492ebbb4 |
  | 0x2b59eb03865d18d8b62a5956bbbfae352fc1c148 | 10000000000000000   | 0xb7da55d7040ef9c887e20374d76a88f93a59119e | false   | 0          | 2757038       | 2024-09-07T23:02:03.000Z | 0xed7a3a4ee515c0a2fb3a7e90234e956f5f7f085fbc6a7e54fdd587c2402f6c59 |
</Accordion>

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

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

***

### WAZERO\_Withdrawal\_event

Withdrawal events from the WAZERO wrapped token contract on Aleph Zero EVM, recording when users unwrap tokens back to native assets. Contains withdrawal amounts in WAD format (18 decimals), source addresses, and transaction details for tracking token redemption 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_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                                                  |
  | ------------------------------------------ | -------------------- | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xa2912af34e7ee82f3e32ef8e692679662e0627a0 | 500000000000000000   | 0xb7da55d7040ef9c887e20374d76a88f93a59119e | false   | 0          | 174           | 2024-08-08T16:26:12.000Z | 0x07c346b645208ec9990deb39a246af0d04eca528d49a591694d31a76fa1ae40e |
  | 0xaa71b090199f58063d1b1f08ff8f7d8874f0b064 | 5000000000000000000  | 0xb7da55d7040ef9c887e20374d76a88f93a59119e | false   | 0          | 3482808       | 2024-10-02T21:01:46.000Z | 0xfb4e6befc2ee510e956bd063bbaf18d9f7953def4d5a65616be9163ab30f1585 |
  | 0x99040226ec104ed684a8925baa5bd223318ce906 | 18000000000000000000 | 0xb7da55d7040ef9c887e20374d76a88f93a59119e | false   | 0          | 4186385       | 2024-11-03T13:27:52.000Z | 0xfd0e5aeeec6fbeef71315fd6784449533d617a20bc38ad4486910ae3530e4090 |
</Accordion>

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

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

***
