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

# wavax_v1_avalanche

> Tables in tt-contracts.wavax_v1_avalanche

## Tables

### WAVAX\_Deposit\_event

Deposit events from the Wrapped AVAX (WAVAX) contract on Avalanche, recording when users wrap native AVAX into the ERC-20 token standard. Captures recipient address and deposit amount in wei for tracking WAVAX 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                                                  |
  | ------------------------------------------ | -------------------- | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x00323092db739c1384b03b3b3a18b7d3c5e68989 | 14000000000000000000 | 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7 | false   | 53         | 7548812       | 2021-11-28T18:33:24.000Z | 0x9be79595624965d3d3ced4ef0acb7a1611d0c4db56c6766eb872bff0c68e504f |
  | 0x00c7b26fc73ebfc9f2db8336af419d2a8f94f988 | 3650000000000000000  | 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7 | false   | 0          | 7540567       | 2021-11-28T14:01:47.000Z | 0x6af5145b1d19c7c7457d63b1fc40bcf272725ed3d360a9c48b04ce44a0f6cf2c |
  | 0x00d65da4e75d119fceb382c151f519d6b5e97a4a | 100000000000000000   | 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7 | false   | 50         | 7530811       | 2021-11-28T08:34:02.000Z | 0x2f8201768aefc380ad600aaa3a2a71687ca7cc180d2c7342a7293a0d184a9ac8 |
</Accordion>

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

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

***

### WAVAX\_Withdrawal\_event

Withdrawal events from the Wrapped AVAX (WAVAX) token contract on Avalanche, recording conversions from WAVAX back to native AVAX. Tracks unwrapping amounts in wei and source addresses for analyzing liquidity flows and user unwrapping 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_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                                                  |
  | ------------------------------------------ | ------------------- | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xd44b4f0ff68d68d5e1c44c3f906fa2216e648a1a | 907314404344871640  | 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7 | false   | 0          | 5121765       | 2021-10-02T13:57:01.000Z | 0x341102570548c1e5a575e45edcc4f9fe84d97cc86f8cbc27025fcdeea37eebab |
  | 0x25709b09e6571d73d9d889a9d992dd6009e98e19 | 8830579780249457683 | 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7 | false   | 0          | 5114463       | 2021-10-02T09:46:10.000Z | 0x1f0b82dc745d3d7fb807a82c4be6f7cc5ab72f4d6ab8c604c7d282bc0015028d |
  | 0x9b43c48bafa65c8c05bfd150085c5829332cc79e | 180178412068586957  | 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7 | false   | 0          | 5130322       | 2021-10-02T18:53:20.000Z | 0x64b1bf2bf9521591e46e521c88ca211578dc634e6cc4fd1dcaae857672d43368 |
</Accordion>

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

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

***
