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

# etherex_v2_linea

> Tables in tt-contracts.etherex_v2_linea

## Tables

### Factory\_PairCreated\_event

Decentralized exchange (DEX) liquidity pool creation events emitted by Automated Market Maker (AMM) factory contracts. Records new trading pair deployments with token addresses, deployed pair contract address, and creation sequence number for tracking pool instantiation across DEX protocols.

<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_token0`        | `STRING`    | Contract address of the first token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.                                              |
  | `in_token1`        | `STRING`    | Contract address of the second token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.                                             |
  | `in_pair`          | `STRING`    | Contract address of the liquidity pool pair created for trading between two tokens. Hex-encoded, 0x-prefixed, 42-character string.                   |
  | `in_anon3`         | `STRING`    | Sequential counter tracking the total number of pairs created by the factory contract.                                                               |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_pair                                   | removed | in\_anon3 | in\_token0                                 | in\_token1                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | --------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0xa1ac528c40d5d87c700e2748260ca92f4336c194 | false   | 99        | 0x7bf60411d3238c508f6bf4603ec651bc2d98034c | 0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f | 23         | 23450367      | 2025-09-17T14:44:03.000Z | 0x835ea3b9f2e283e9f9d1d95743facadcec7530b1d8566ff3e79d842b7ae2c882 |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0xc3390c8111b3a95568fb2791eac46daadcaa0d98 | false   | 97        | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 0x55aa3fc430f23d7b9658bbe7e2df899d9182b6a0 | 0          | 23437262      | 2025-09-17T07:26:27.000Z | 0x61a1c1ba109e81a1f35d2903b0086f308763e3be1c1e46c99e8d241ba91eb335 |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0x896c3aa716576a46904920c1ca7ffb1d0bd28e38 | false   | 98        | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 0x55aa3fc430f23d7b9658bbe7e2df899d9182b6a0 | 0          | 23437433      | 2025-09-17T07:32:09.000Z | 0xdec6319bad0121f15c944dcff52c6994513b228db35f930e1891393a2c1270a8 |
</Accordion>

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

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

***

### FeeDistributor\_ClaimRewards\_event

Reward claim events from Etherex V2's FeeDistributor contract on Linea, recording when users claim their earned rewards by period with token addresses and amounts. Used for analyzing reward distribution patterns and user claim behavior across different reward periods.

<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_period`        | `STRING`    | Numeric identifier representing a time period for rewards distribution or incentive tracking. Numeric string representation.                         |
  | `in_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.                    |
  | `in_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                |
  | `in_reward`        | `STRING`    | Contract address of the reward token being distributed or claimed. 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                                    | removed | in\_owner                                  | in\_amount            | in\_period | in\_reward                                 | log\_index | in\_receiver                               | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | --------------------- | ---------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x9a587d01df591dc17be6a899606b6ae8cd36dfce | false   | 0xfaaf5645b877f3af3d35220b8c4bc2198e68f4bb | 11067286              | 2908       | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 16         | 0xfaaf5645b877f3af3d35220b8c4bc2198e68f4bb | 24281756      | 2025-10-08T06:34:49.000Z | 0xdd78395adbeada5f097ff75fdd0e88d3309dcc46985d8d644b32c2a45cf3d6a1 |
  | 0x9a587d01df591dc17be6a899606b6ae8cd36dfce | false   | 0xfaaf5645b877f3af3d35220b8c4bc2198e68f4bb | 322260498680278219448 | 2908       | 0x1789e0043623282d5dcc7f213d703c6d8bafbb04 | 18         | 0xfaaf5645b877f3af3d35220b8c4bc2198e68f4bb | 24281756      | 2025-10-08T06:34:49.000Z | 0xdd78395adbeada5f097ff75fdd0e88d3309dcc46985d8d644b32c2a45cf3d6a1 |
  | 0x9a587d01df591dc17be6a899606b6ae8cd36dfce | false   | 0x0c4eece343856503b0dd24c07894465586509699 | 65978                 | 2908       | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 15         | 0x0c4eece343856503b0dd24c07894465586509699 | 24293102      | 2025-10-08T13:22:36.000Z | 0x7a68040f8f3af4c3de2e6581ac491b0af601884aa52c6c959d89dc746107c511 |
</Accordion>

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

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

***

### FeeDistributor\_Deposit\_event

Deposit events from the Etherex V2 FeeDistributor contract on Linea, capturing when users deposit tokens with owner addresses and token amounts in wei. Used for tracking fee distribution deposits and user participation in the protocol's reward system.

<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_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. 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                                    | removed | in\_owner                                  | in\_amount           | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | -------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | false   | 0x3254ef2aea092894c6c81075157af1048fe50e03 | 20000000000000000000 | 0          | 21970727      | 2025-08-13T03:27:40.000Z | 0x118c25f838e8a4f096617cdbcf4139510ed77fc40d9e430c055643662a3ee2ed |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | false   | 0xa3e4134c5a998f4e4cf5a5055472094667638181 | 58024839245833482465 | 0          | 21967542      | 2025-08-13T01:40:58.000Z | 0x16c516cf0e35733b9db6bd7f03bc203e55d18f82072d2fbf91edc625acf3fd0c |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | false   | 0xefb0717a2ee476f69d05a82d0c13716f64f6540f | 753397191416955      | 0          | 21985168      | 2025-08-13T11:31:48.000Z | 0x91315f1aab780c1a5532ac632a6ae4a2df970da7dc3ff2db3de4ffa61e305e89 |
</Accordion>

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

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

***

### FeeDistributor\_NotifyReward\_event

Reward distribution notifications from Etherex V2 FeeDistributor contract on Linea, tracking reward token amounts allocated to addresses by period. Used for analyzing fee sharing mechanisms and reward distribution patterns across liquidity providers.

<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_from`          | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                        |
  | `in_reward`        | `STRING`    | Contract address of the reward token being distributed or claimed. 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.                      |
  | `in_period`        | `STRING`    | Numeric identifier representing a time period for rewards distribution or incentive tracking. Numeric string representation.                         |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_from                                   | removed | in\_amount              | in\_period | in\_reward                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ----------------------- | ---------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x9a587d01df591dc17be6a899606b6ae8cd36dfce | 0x532c15d1803f565ad37b77f5b20d9e3a4254e0f3 | false   | 2513157                 | 2912       | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 177        | 24655981      | 2025-10-18T04:50:08.000Z | 0x12f3a6070b78ecd7725de50dbc62d1b2782c81f30370c324e62f57d243822e36 |
  | 0x9a587d01df591dc17be6a899606b6ae8cd36dfce | 0x532c15d1803f565ad37b77f5b20d9e3a4254e0f3 | false   | 197004574692953999807   | 2912       | 0x1789e0043623282d5dcc7f213d703c6d8bafbb04 | 180        | 24655981      | 2025-10-18T04:50:08.000Z | 0x12f3a6070b78ecd7725de50dbc62d1b2782c81f30370c324e62f57d243822e36 |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | 0x532c15d1803f565ad37b77f5b20d9e3a4254e0f3 | false   | 10013104352683711305176 | 2912       | 0x5fbdf89403270a1846f5ae7d113a989f850d1566 | 194        | 24655981      | 2025-10-18T04:50:08.000Z | 0x12f3a6070b78ecd7725de50dbc62d1b2782c81f30370c324e62f57d243822e36 |
</Accordion>

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

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

***

### FeeDistributor\_RewardsRedirected\_event

Reward redirection events from Etherex V2 protocol's FeeDistributor contract on Linea, capturing when earned rewards are redirected to alternative destination addresses. Tracks reward token addresses, amounts, and destination wallets for analyzing fee distribution patterns and reward routing behavior.

<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_destination`   | `STRING`    | Target address receiving tokens, funds, or messages in the operation. Hex-encoded, 0x-prefixed, 42-character string.                                          |
  | `in__reward`       | `STRING`    | Amount of reward tokens paid to the liquidator or recipient. String-encoded integer representing token quantity in smallest unit.                             |
  | `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 | log\_index | in\_\_amount            | in\_\_reward                               | block\_number | in\_destination                            | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ----------------------- | ------------------------------------------ | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x9a587d01df591dc17be6a899606b6ae8cd36dfce | false   | 60         | 50616157344036713610380 | 0x1789e0043623282d5dcc7f213d703c6d8bafbb04 | 23169244      | 0xde4b22eb9f9c2c55e72e330c87663b28e9d388f7 | 2025-09-10T20:00:31.000Z | 0xddefcd734b683989db2c1a563d1848beb586eb583c35da08fb21055e3539bfea |
  | 0x9a587d01df591dc17be6a899606b6ae8cd36dfce | false   | 77         | 1615684379              | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 23169253      | 0xde4b22eb9f9c2c55e72e330c87663b28e9d388f7 | 2025-09-10T20:00:49.000Z | 0x6647f9ca55522adc0b4103de1182bf822e43d8a3027f93cccc1e68eed75129d5 |
</Accordion>

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

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

***

### FeeDistributor\_RewardsRemoved\_event

*No description available.*

<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__reward`       | `STRING`    | Amount of reward tokens paid to the liquidator or recipient. String-encoded integer representing token quantity in smallest unit.                    |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### FeeDistributor\_VotesIncentivized\_event

Vote incentive deposits from Etherex V2's FeeDistributor contract on Linea, recording reward token amounts contributed by addresses for specific voting periods. Used for analyzing gauge voting incentive programs and bribe marketplace 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_from`          | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                        |
  | `in_reward`        | `STRING`    | Contract address of the reward token being distributed or claimed. 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.                      |
  | `in_period`        | `STRING`    | Numeric identifier representing a time period for rewards distribution or incentive tracking. Numeric string representation.                         |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_from                                   | removed | in\_amount                | in\_period | in\_reward                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------- | ---------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | 0xcee1ad5f9ef7263c6f89fe9333ca9f12f235fa50 | false   | 2750000000000000000000000 | 2902       | 0x5fbdf89403270a1846f5ae7d113a989f850d1566 | 9          | 21809451      | 2025-08-09T08:27:19.000Z | 0xcd34823de302c617a5d4476e86a0621e9f64b1d6865dfcc5e32e64ca6ad8cd7f |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | 0xcee1ad5f9ef7263c6f89fe9333ca9f12f235fa50 | false   | 1200000000000000000       | 2902       | 0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f | 13         | 21809416      | 2025-08-09T08:26:09.000Z | 0x3d34b725a0264e6982f8854124b25da5f082ff9382e820a33abf39fb1cad3544 |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | 0x3f6177ca0b041b1a469f11261f8a8b007633ed48 | false   | 2783771500546670226831281 | 2908       | 0x5fbdf89403270a1846f5ae7d113a989f850d1566 | 318        | 23723271      | 2025-09-24T01:39:12.000Z | 0xc6e5813d4c6bd65b7f6fd8ce3f5163020f6ab56923eb8e0e183f72ffe78f255c |
</Accordion>

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

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

***

### FeeDistributor\_Withdraw\_event

Fee withdrawal events from the Etherex V2 FeeDistributor contract on Linea, recording when users claim accumulated protocol fees. Tracks withdrawal amounts and account addresses for analyzing fee distribution patterns and reward claiming behavior.

<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_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. 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                                    | removed | in\_owner                                  | in\_amount            | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | --------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | false   | 0x0f53a5a619de13ea6e049efe2613e8eef00544d1 | 561333693545831746370 | 10         | 22018509      | 2025-08-14T06:15:11.000Z | 0xd36ed5887192c8d31f845734f76ade513151fa9cd0ccdc2967d288e5a98d4ebf |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | false   | 0x0f53a5a619de13ea6e049efe2613e8eef00544d1 | 561334535547915736072 | 13         | 22047869      | 2025-08-14T22:39:49.000Z | 0x6ec36c8d50a5e08b3d06b2521cd4ae9f4023b272d5aafcc742da8b21e6395849 |
  | 0x6e8b0ff6f6f2f377493546eadb2839ceec3dd1f2 | false   | 0x1014a66402ff5b51d86a527da1dbe96343bd9d95 | 2110247063515326898   | 53         | 22039547      | 2025-08-14T17:57:26.000Z | 0x50399258a7bfabe10f3040c7bb56288f6dc08d2fd964405fdc2fbff9422fc11f |
</Accordion>

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

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

***

### FeeDistributorFactory\_createFeeDistributor\_function

Function call records for creating new fee distributor contracts on Etherex V2 (Linea), mapping input fee recipient addresses to deployed distributor contract addresses for tracking protocol fee infrastructure deployment.

<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.                                                                                                                                                                                  |
  | `trace_address`    | `STRING`    | Hierarchical position of the internal call within a transaction's execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls. |
  | `status`           | `BOOL`      | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.                                                                                                                             |
  | `from_address`     | `STRING`    | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                              |
  | `to_address`       | `STRING`    | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                   |
  | `value`            | `NUMERIC`   | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).                                                                                                                                     |
  | `gas_used`         | `INT64`     | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.                                                                                                                                                       |
  | `gas`              | `INT64`     | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.                                                                                                                                                     |
  | `signature`        | `STRING`    | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                                                                                                                                       |
  | `in_feeRecipient`  | `STRING`    | Address designated to receive fees collected from the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                              |
  | `out_anon0`        | `STRING`    | Actual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.                                                                                                           |
</Accordion>

<Accordion title="Sample Data">
  | gas     | value | status | gas\_used | out\_anon0                                 | signature  | to\_address                                | block\_number | from\_address                              | trace\_address | block\_timestamp         | in\_feeRecipient                           | transaction\_hash                                                  |
  | ------- | ----- | ------ | --------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | -------------- | ------------------------ | ------------------------------------------ | ------------------------------------------------------------------ |
  | 5393599 | 0     | true   | 1369692   | 0x42bb1f6cd0170ab8d985dda68b6a6707cf781a1c | 0x062e631e | 0xfde48794f3ea7f26cd2b00f078366455b1e6b7bf | 24785619      | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0,0,0,0,3      | 2025-10-22T03:59:16.000Z | 0x3a6e0548371146d484f7456d1af5e0ec0baddbce | 0x1b36bd53f51517731dbb351c53867eb2fff07b6335766f0f29d6f231a1d142c9 |
  | 3615495 | 0     | true   | 1369604   | 0x119294951aa94a099a058f7c962f81bbc1219308 | 0x062e631e | 0xfde48794f3ea7f26cd2b00f078366455b1e6b7bf | 21920417      | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0,0,0,0,3      | 2025-08-11T23:10:47.000Z | 0x532c15d1803f565ad37b77f5b20d9e3a4254e0f3 | 0x9ab6c1954b17b8bed6d3712c7edf8adb7f3d549cfaf9476b428d0f489704dd58 |
  | 5393609 | 0     | true   | 1369692   | 0xdf50bed6cbb300f3b4d69c6891534bec3a67aca9 | 0x062e631e | 0xfde48794f3ea7f26cd2b00f078366455b1e6b7bf | 23158616      | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0,0,0,0,3      | 2025-09-10T14:04:54.000Z | 0xb6cc2ead7be1e613ee9c3ad5a9c36f07aa6464fe | 0x18f8404398c95daea7c73868acfa1dbe4b241a333a1d816046b9f0a1c6692306 |
</Accordion>

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

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

***

### Gauge\_ClaimRewards\_event

Reward distribution events emitted when users claim accrued incentives from liquidity mining gauges. Records the claimer address, reward token contract, and claimed amount for tracking protocol incentive flows.

<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_from`          | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                        |
  | `in_reward`        | `STRING`    | Contract address of the reward token being distributed or claimed. 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\_from                                   | removed | in\_amount             | in\_reward                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ---------------------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xdc917188a8a5fc3b099dc39cc172f9832dedecc8 | 0x016c555668f4db5616d3805c47ae7108e1ac6484 | false   | 921962925458075002     | 0xefd81eec32b9a8222d1842ec3d99c7532c31e348 | 1          | 22301573      | 2025-08-20T23:21:52.000Z | 0xf0dbd8f19db262b588beb8f46c48746feaed99a6c344285f0fa750003402c593 |
  | 0x6df5636b18ad6c1d8087fe1d6d58109309da98b5 | 0x02393b4f282c5abefbf9d35783c601f759653424 | false   | 1230241463797282187848 | 0xefd81eec32b9a8222d1842ec3d99c7532c31e348 | 1          | 22284493      | 2025-08-20T13:33:45.000Z | 0x540e49c7b575d0aa4b96beeb39ca592caa61255d5561e2f20ddc9a87a8f255c6 |
  | 0xdc917188a8a5fc3b099dc39cc172f9832dedecc8 | 0x04a839119e92a2773f9b6262ba3705dfa258e26d | false   | 1354207843202204862    | 0xefd81eec32b9a8222d1842ec3d99c7532c31e348 | 1          | 22268778      | 2025-08-20T04:45:48.000Z | 0x1d36005a42f1a856b2c463b6cc4a9e58fcd612145d44d037dfd7f7cfc6b895e3 |
</Accordion>

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

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

***

### Gauge\_Deposit\_event

Deposit events from Etherex V2 liquidity gauge contracts on Linea, recording when users stake tokens into gauges. Used for tracking liquidity mining participation and reward distribution analysis.

<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_from`          | `STRING`    | Address originating the transfer 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\_from                                   | removed | in\_amount         | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x1e1cfd7c2aca4a77da31119a1f7a4caecf80999a | 0x37aa7c58e56d1e60006f1fd2e699059e2661e229 | false   | 139074862282787486 | 22         | 23334094      | 2025-09-14T21:54:58.000Z | 0x27d58ede9b04d2180e4bd87595306ffd0d37a0c7a33a8d3b6d8264b6369cbb7e |
  | 0x1e1cfd7c2aca4a77da31119a1f7a4caecf80999a | 0x37aa7c58e56d1e60006f1fd2e699059e2661e229 | false   | 140198112261525236 | 66         | 23310031      | 2025-09-14T08:31:50.000Z | 0x3cf0039870f0f6122034c280ac789bd61f64e2fe9a483d6d262cf53722bcb741 |
  | 0x1e1cfd7c2aca4a77da31119a1f7a4caecf80999a | 0x37aa7c58e56d1e60006f1fd2e699059e2661e229 | false   | 140689728496544424 | 98         | 23304172      | 2025-09-14T05:16:32.000Z | 0x6c696f4b91eb2cf1d36c74cc5bd6b2fc4d9de314c39a69a44f571972b4a3d584 |
</Accordion>

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

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

***

### Gauge\_NotifyReward\_event

Reward distribution events from Etherex V2 liquidity gauge contracts on Linea, recording token rewards notified to gauge stakers. Used for tracking incentive allocation amounts, reward token addresses, and distribution timing across different gauge pools.

<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_from`          | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                        |
  | `in_reward`        | `STRING`    | Contract address of the reward token being distributed or claimed. 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\_from                                   | removed | in\_amount               | in\_reward                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xdc917188a8a5fc3b099dc39cc172f9832dedecc8 | 0xde4b22eb9f9c2c55e72e330c87663b28e9d388f7 | false   | 100000000000000000000    | 0xefd81eec32b9a8222d1842ec3d99c7532c31e348 | 44         | 21713250      | 2025-08-07T02:13:13.000Z | 0x8a1da2c447a346fff39d2fe37a3511a179460e6219ba13016a4a46028f5388b9 |
  | 0xdc917188a8a5fc3b099dc39cc172f9832dedecc8 | 0xde4b22eb9f9c2c55e72e330c87663b28e9d388f7 | false   | 249900000000000000000000 | 0xefd81eec32b9a8222d1842ec3d99c7532c31e348 | 2          | 21713512      | 2025-08-07T02:22:20.000Z | 0x8d9b070434461d25e7e5c5b4c04c0bd89f97843323f0e3737df49cf25374ec06 |
  | 0x6df5636b18ad6c1d8087fe1d6d58109309da98b5 | 0xde4b22eb9f9c2c55e72e330c87663b28e9d388f7 | false   | 50000000000000000000000  | 0xefd81eec32b9a8222d1842ec3d99c7532c31e348 | 6          | 21714740      | 2025-08-07T03:03:51.000Z | 0x56e0556e15fe10247ee2f5b11391725de690f03c1ae907f5c9ff7077ea8aa121 |
</Accordion>

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

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

***

### Gauge\_Withdraw\_event

Withdrawal events from Etherex V2 liquidity gauge contracts on Linea, recording when users unstake tokens with withdrawal amounts and user addresses. Used for tracking gauge participation and liquidity provision lifecycle analysis.

<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_from`          | `STRING`    | Address originating the transfer 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\_from                                   | removed | in\_amount           | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | -------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x3f38f4eae1b2fe2163e7eda16a006b3708d89fd7 | 0x6e4aeb2af9ce3b67116d8b19e6f1ca6b318fc629 | false   | 39674216125395541734 | 3          | 21870915      | 2025-08-10T19:07:26.000Z | 0xd1369136bc80de813b4e8dc18e25661297b4eea6c0786b7aad034028308dda8b |
  | 0x6df5636b18ad6c1d8087fe1d6d58109309da98b5 | 0x7a32abea0f841c170905ced3c618591b3f713938 | false   | 10857809227          | 5          | 21841158      | 2025-08-10T02:28:43.000Z | 0xb5ac81caaa433fdf83cff6c985b80573d3b2936a42947ba1963548d41ecf51e9 |
  | 0x6df5636b18ad6c1d8087fe1d6d58109309da98b5 | 0xc1fd374ca9de2437004799136d748db235c5eced | false   | 542868527            | 60         | 21865021      | 2025-08-10T15:48:07.000Z | 0xc91ee5b85a3169f9c59a7e418f5a40affb5ebaab8f1ea9e9448d7ab4a7371551 |
</Accordion>

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

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

***

### GaugeFactory\_GaugeCreated\_event

Gauge creation events from Etherex V2's GaugeFactory contract on Linea, recording when new liquidity mining gauges are deployed for pools with associated fee distributors. Used for tracking reward distribution infrastructure deployment and identifying new incentivized pools.

<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_gauge`          | `STRING`    | Contract address of the gauge contract. Hex-encoded, 0x-prefixed, 42-character string.                                                               |
  | `in_creator`        | `STRING`    | Address of the account that initiated the creation event. Hex-encoded, 0x-prefixed, 42-character string.                                             |
  | `in_feeDistributor` | `STRING`    | Contract address of the fee distributor associated with the gauge. Hex-encoded, 0x-prefixed, 42-character string.                                    |
  | `in_pool`           | `STRING`    | Contract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.                                           |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_pool                                   | removed | in\_gauge                                  | log\_index | in\_creator                                | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_feeDistributor                         |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ | ------------------------------------------ |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0x562bae2040b319b2a72384431d679531b9d53f01 | false   | 0x131477df62837097ec4c795d39cc1f059426ee58 | 37         | 0x683035188e3670fda1def2a7aa5742dea28ed5f3 | 22013439      | 2025-08-14T03:25:35.000Z | 0xab9b9db61db7a569f8883a93e0138c8704a0f2feb7a2fd93cb710bcd4bd9ef2f | 0x50037b89ef2fe5e9c507bc2c37c0dad1f3a9bf02 |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0xe5e765ae9bc8bf39beba2c3f5bb3be7fa5676fbd | false   | 0x9d2d4b79d80d28aa0ae8b6e357e0dd630e64fcff | 23         | 0x683035188e3670fda1def2a7aa5742dea28ed5f3 | 21752084      | 2025-08-08T00:03:48.000Z | 0x21748e86ebe4b80b4678b0464e68fc9993ad124decc8361a193a830b1d749e0d | 0x00d9bae66d2a4440215cd1be7e3d02d10a0a170f |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0xa1b7cc6a055b47e3db4b3cd01e0f8c3e8f4bfb73 | false   | 0x95b07e2774657738f7f0d5c5490dfebae057446a | 23         | 0x683035188e3670fda1def2a7aa5742dea28ed5f3 | 21753453      | 2025-08-08T00:49:30.000Z | 0x734ff7763aba07b295470ce432c73c351c9e46979b53a5e85b4e0172fa83b669 | 0xa1845eddc766991218a67374aace461cb7df6258 |
</Accordion>

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

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

***

### Pair\_Swap\_event

Token swap events from decentralized exchange (DEX) liquidity pairs recording input and output amounts for both tokens. Primary source for tracking DEX trading activity and price discovery.

<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_sender`        | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                   |
  | `in_amount0In`     | `STRING`    | Amount of token0 transferred into the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.   |
  | `in_amount1In`     | `STRING`    | Amount of token1 transferred into the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.   |
  | `in_amount0Out`    | `STRING`    | Amount of token0 transferred out of the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token. |
  | `in_amount1Out`    | `STRING`    | Amount of token1 transferred out of the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token. |
  | `in_to`            | `STRING`    | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.                                       |
</Accordion>

<Accordion title="Sample Data">
  | in\_to                                     | address                                    | removed | in\_sender                                 | log\_index | block\_number | in\_amount0In         | in\_amount1In   | in\_amount0Out          | in\_amount1Out  | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | --------------------- | --------------- | ----------------------- | --------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x2ade9f5b627d08aba6051a7d72551464a87bf5d0 | 0xc786a75bbaf27fa9fb476b3dba42c6525d9e6cfc | false   | 0x2ade9f5b627d08aba6051a7d72551464a87bf5d0 | 24         | 21569261      | 250396443897356819689 | 0               | 0                       | 230900410547150 | 2025-08-02T18:39:39.000Z | 0x26e10ea15de65f85421b9264f51e521b7ebc43e0667064afcb31b65018a33658 |
  | 0x2ade9f5b627d08aba6051a7d72551464a87bf5d0 | 0xc786a75bbaf27fa9fb476b3dba42c6525d9e6cfc | false   | 0x2ade9f5b627d08aba6051a7d72551464a87bf5d0 | 6          | 21548303      | 0                     | 727643982135296 | 716477932210811340601   | 0               | 2025-08-02T03:40:41.000Z | 0xa1174f375b6a8ab980403f623d29f546990cb6faa7914bbe51f9360847667e2a |
  | 0x2ade9f5b627d08aba6051a7d72551464a87bf5d0 | 0x5a46ba0378c2c61149348612f94322771085a36c | false   | 0x2ade9f5b627d08aba6051a7d72551464a87bf5d0 | 29         | 21556981      | 0                     | 790307860643840 | 22360718948063936435935 | 0               | 2025-08-02T09:56:38.000Z | 0x9dcae3695dc3c2caa0cabf5ea8b5784d4748df9d2e2efd5931005c732c9d7704 |
</Accordion>

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

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

***

### Pair\_Sync\_event

Liquidity pair reserve synchronization events emitted after each swap, mint, or burn operation. Contains updated reserve balances for both tokens in AMM (Automated Market Maker) pools, enabling real-time price calculation and liquidity 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_reserve0`      | `STRING`    | Reserve amount of the first token in a liquidity pool after a state-changing operation. Stored as decimal string representing the smallest unit of the token.  |
  | `in_reserve1`      | `STRING`    | Reserve amount of the second token in a liquidity pool after a state-changing operation. Stored as decimal string representing the smallest unit of the token. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_reserve0 | in\_reserve1     | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------ | ---------------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x046f1fbc2e9e808cae02bdef09171240c5b077e9 | false   | 2          | 18908776     | 5214616019025502 | 21633923      | 2025-08-04T20:55:21.000Z | 0x4a33d0303ceba04432ed9f5183661c5904520d12292509713ac0ed3b82ef3196 |
  | 0x046f1fbc2e9e808cae02bdef09171240c5b077e9 | false   | 4          | 9229877      | 2133238797282396 | 21623763      | 2025-08-04T13:57:28.000Z | 0x087a8b2a24408f15a5dd38727e58736afe10769eb0632818416506ee6c027bf2 |
  | 0x046f1fbc2e9e808cae02bdef09171240c5b077e9 | false   | 4          | 18804546     | 5243432998942004 | 21625548      | 2025-08-04T15:02:47.000Z | 0x1efbd9fd11e18066622864aa55891c9e74e12613fb6c18b8728b003f727746ef |
</Accordion>

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

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

***

### PairFactory\_FeeSplitWhenNoGauge\_event

Fee split configuration events from Etherex V2 pair factory on Linea, recording when fee distribution settings are toggled for liquidity pools without active gauges. Used to track protocol fee routing changes and governance actions.

<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__caller`       | `STRING`    | Address of the account that initiated the function call which emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                               |
  | `in__status`       | `BOOL`      | Status flag indicating whether fee splitting is enabled (true) or disabled (false) when no gauge is present for the pair. This boolean value determines how trading fees are distributed in the absence of a liquidity gauge. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_\_caller                               | in\_\_status | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | false   | 3          | 0x676f11a28e5f8a3ebf6ae1187f05c30b0a95a8b0 | true         | 21254948      | 2025-07-25T01:42:24.000Z | 0x07f777e5027373a3b2f26215c87ad796567ab29ff28f5887522718a2744213ae |
</Accordion>

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

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

***

### PairFactory\_NewTreasury\_event

Treasury address update events from the Etherex V2 PairFactory contract on Linea. Tracks when protocol administrators change the treasury destination address for fee collection.

<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__caller`       | `STRING`    | Address of the account that initiated the function call which emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `in__newTreasury`  | `STRING`    | Contract address of the newly assigned treasury wallet for the PairFactory contract on Linea. Hex-encoded, 0x-prefixed 40-character Ethereum address that receives protocol fees or revenue. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_\_caller                               | block\_number | block\_timestamp         | in\_\_newTreasury                          | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------ | ------------------------------------------------------------------ |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | false   | 9          | 0x683035188e3670fda1def2a7aa5742dea28ed5f3 | 22016102      | 2025-08-14T04:54:39.000Z | 0x15325a2ec4bf164d47cf48d5d6a9edda385636a5 | 0xa91263ce4f76c6218e85cfe4d69a27add19f4a38eebb359c62220fe6c5c90fd0 |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | false   | 4          | 0x683035188e3670fda1def2a7aa5742dea28ed5f3 | 21604675      | 2025-08-04T00:33:04.000Z | 0xde4b22eb9f9c2c55e72e330c87663b28e9d388f7 | 0xbb5cce1fb44cd856a399659f9346efb68150cc509861d2a6824108a1266f9a4f |
</Accordion>

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

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

***

### PairFactory\_SetFee\_event

Event logs capturing fee tier updates in the Etherex V2 decentralized exchange factory contract on Linea. Records configuration changes where protocol administrators set trading fees (measured in basis points) for liquidity pools.

<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_fee`           | `STRING`    | Fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency. |
</Accordion>

<Accordion title="Sample Data">
  | in\_fee | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------- | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 3000    | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | false   | 2          | 21254948      | 2025-07-25T01:42:24.000Z | 0x07f777e5027373a3b2f26215c87ad796567ab29ff28f5887522718a2744213ae |
</Accordion>

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

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

***

### PairFactory\_SetFeeRecipient\_event

Fee recipient assignment events from Etherex V2 decentralized exchange (DEX) factory contract on Linea. Tracks which addresses are designated to receive trading fees for specific liquidity pairs, useful for analyzing protocol revenue distribution and governance changes.

<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_pair`          | `STRING`    | Contract address of the liquidity pool pair created for trading between two tokens. Hex-encoded, 0x-prefixed, 42-character string.                   |
  | `in_feeRecipient`  | `STRING`    | Address designated to receive fees collected from the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.              |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_pair                                   | removed | log\_index | block\_number | block\_timestamp         | in\_feeRecipient                           | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------ | ------------------------------------------------------------------ |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0xc786a75bbaf27fa9fb476b3dba42c6525d9e6cfc | false   | 10         | 22927039      | 2025-09-04T23:00:22.000Z | 0x15325a2ec4bf164d47cf48d5d6a9edda385636a5 | 0x99633254a3e2b094fbc6ed0e0b1d0dd627088ed5f0544e4c30089df7995946cc |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0xb3453e8158bb99c3a4372f7df1d74b7a4fb6ef74 | false   | 5          | 22927039      | 2025-09-04T23:00:22.000Z | 0x15325a2ec4bf164d47cf48d5d6a9edda385636a5 | 0x99633254a3e2b094fbc6ed0e0b1d0dd627088ed5f0544e4c30089df7995946cc |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0x046f1fbc2e9e808cae02bdef09171240c5b077e9 | false   | 6          | 22927039      | 2025-09-04T23:00:22.000Z | 0x15325a2ec4bf164d47cf48d5d6a9edda385636a5 | 0x99633254a3e2b094fbc6ed0e0b1d0dd627088ed5f0544e4c30089df7995946cc |
</Accordion>

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

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

***

### PairFactory\_SetFeeSplit\_event

Fee split configuration events from Etherex V2 DEX factory contract on Linea, recording changes to protocol revenue sharing parameters. Used for tracking fee distribution adjustments between liquidity providers and protocol treasury.

<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__feeSplit`     | `STRING`    | Fee split ratio expressed in basis points. Integer string representing the percentage allocation multiplied by precision factor.                     |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_\_feeSplit | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | false   | 4          | 21254948      | 50000          | 2025-07-25T01:42:24.000Z | 0x07f777e5027373a3b2f26215c87ad796567ab29ff28f5887522718a2744213ae |
</Accordion>

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

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

***

### PairFactory\_SetPairFee\_event

Fee configuration events from EthereX V2 decentralized exchange on Linea, tracking when trading pair fee parameters are updated by the PairFactory contract. Useful for analyzing fee structure changes and protocol governance decisions across liquidity pools.

<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_pair`          | `STRING`    | Contract address of the liquidity pool pair created for trading between two tokens. Hex-encoded, 0x-prefixed, 42-character string.                             |
  | `in_fee`           | `STRING`    | Fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency. |
</Accordion>

<Accordion title="Sample Data">
  | in\_fee | address                                    | in\_pair                                   | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------- | ------------------------------------------ | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 10000   | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0xeacd56565ab642fb0dc2820b51547fe416ee8697 | false   | 40         | 22803067      | 2025-09-02T00:32:24.000Z | 0x64edc8e0fd8847742f226ecd7b98bccad6c9d5e5be527ff9d74acd11d1175dec |
  | 0       | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0xeacd56565ab642fb0dc2820b51547fe416ee8697 | false   | 15         | 22803067      | 2025-09-02T00:32:24.000Z | 0x64edc8e0fd8847742f226ecd7b98bccad6c9d5e5be527ff9d74acd11d1175dec |
  | 10000   | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0xeacd56565ab642fb0dc2820b51547fe416ee8697 | false   | 32         | 22803441      | 2025-09-02T00:45:57.000Z | 0xddeedd871fb2446c0372fa5422a520f9e62efcaf348c8bffb69d8f063708e926 |
</Accordion>

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

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

***

### PairFactory\_SetPairFeeSplit\_event

Fee split configuration events from EthereX V2 decentralized exchange on Linea, recording changes to revenue sharing parameters for specific trading pairs. Used for tracking fee structure updates and protocol economics analysis.

<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_pair`          | `STRING`    | Contract address of the liquidity pool pair created for trading between two tokens. Hex-encoded, 0x-prefixed, 42-character string.                   |
  | `in__feeSplit`     | `STRING`    | Fee split ratio expressed in basis points. Integer string representing the percentage allocation multiplied by precision factor.                     |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_pair                                   | removed | log\_index | block\_number | in\_\_feeSplit | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ---------- | ------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0x5c1bf4b7563c460282617a0304e3cde133200f70 | false   | 9          | 21719606      | 1000000        | 2025-08-07T05:51:05.000Z | 0x12ac7ffe9e0057d16443383f0a0f9a2d719f1d9c412bcb478f7692d526a1cb23 |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0x5c1bf4b7563c460282617a0304e3cde133200f70 | false   | 2          | 21724257      | 1000000        | 2025-08-07T08:27:19.000Z | 0x51deae034d489a1d01f7f1b4b7cc8d39283d49cf80283e4f4859dc72e073c732 |
  | 0xc0b920f6f1d6122b8187c031554dc8194f644592 | 0x7b930713103a964c12e8b808c83f57e40d9ad495 | false   | 3          | 21724257      | 1000000        | 2025-08-07T08:27:19.000Z | 0x51deae034d489a1d01f7f1b4b7cc8d39283d49cf80283e4f4859dc72e073c732 |
</Accordion>

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

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

***

### rex33\_claimed\_incentives\_event

*No description available.*

<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_feeDistributors` | `ARRAY<STRING>` | Array of fee distributor contract addresses from which incentives were claimed. Hex-encoded, 0x-prefixed, 42-character strings.                      |
  | `in_tokens`          | `ARRAY<STRING>` | Array of token contract addresses involved in the operation. Hex-encoded, 0x-prefixed, 42-character strings.                                         |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### rex33\_ClaimedIncentives\_event

Incentive claim events from the Etherex V2 protocol on Linea, tracking when users collect fee distributions and token rewards. Used for analyzing reward distribution patterns and liquidity provider earnings across fee distributor contracts.

<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_feeDistributors` | `ARRAY<STRING>` | Array of fee distributor contract addresses from which incentives were claimed. Hex-encoded, 0x-prefixed, 42-character strings.                      |
  | `in_tokens`          | `ARRAY<STRING>` | Array of token contract addresses involved in the operation. Hex-encoded, 0x-prefixed, 42-character strings.                                         |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_tokens | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_feeDistributors |
  | ------------------------------------------ | ------- | ---------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ------------------- |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | \[]        | 12         | 22917694      | 2025-09-04T17:32:10.000Z | 0xf43e5350013e28d6963a094eedc6156bf774c2a1ccf79ece4c1377c8a02565c5 | \[]                 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | \[]        | 91         | 22916975      | 2025-09-04T17:08:04.000Z | 0x29aa29b621b7456609d7e8cc1554e31e7e7c0c03a7061645f40f6b4c569ebfb5 | \[]                 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | \[]        | 1          | 22922152      | 2025-09-04T20:04:29.000Z | 0x93a851eb7604b6782ffc55fc77a3987851f4b1f5f004145b99bd88381148639f | \[]                 |
</Accordion>

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

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

***

### REX33\_ClaimedIncentives\_event

Incentive claim events from the Etherex V2 protocol on Linea, recording when users claim rewards from fee distributor contracts. Useful for tracking reward distribution activity and user engagement with the protocol's incentive programs.

<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_feeDistributors` | `ARRAY<STRING>` | Array of fee distributor contract addresses from which incentives were claimed. Hex-encoded, 0x-prefixed, 42-character strings.                      |
  | `in_tokens`          | `ARRAY<STRING>` | Array of token contract addresses involved in the operation. Hex-encoded, 0x-prefixed, 42-character strings.                                         |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_tokens | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_feeDistributors |
  | ------------------------------------------ | ------- | ---------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ------------------- |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | \[]        | 16         | 23243144      | 2025-09-12T19:19:03.000Z | 0xc3c739635afa9b0e1be35b59bad1f1cac33e0eee8c5353230b0c8b4d9a697fde | \[]                 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | \[]        | 82         | 23194131      | 2025-09-11T11:37:08.000Z | 0xf73119e831f9875ff6ec8285ed4ccc9565e3378cf82d27a051b5ee44170fbe3f | \[]                 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | \[]        | 177        | 23193892      | 2025-09-11T11:21:01.000Z | 0x676360f69fbb8192c07f5929cbb01777282f02086ba6d8db5a0e834f95460843 | \[]                 |
</Accordion>

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

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

***

### rex33\_Compounded\_event

Compounding events from the REX33 protocol on Linea tracking when rewards or yields are automatically reinvested, recording the compounded amount and the updated ratio representing the new shares-to-assets exchange rate. Used for analyzing yield accrual patterns and protocol growth metrics.

<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_oldRatio`      | `STRING`    | Previous ratio value before the state change. Numeric string representation in wei (18 decimal places).                                              |
  | `in_newRatio`      | `STRING`    | Updated ratio value after the state change. Numeric string representation in wei (18 decimal places).                                                |
  | `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                                    | removed | in\_amount               | log\_index | in\_newRatio        | in\_oldRatio        | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------ | ---------- | ------------------- | ------------------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 560956840554826821478350 | 96         | 1121277250503981273 | 1114524745093010454 | 24348566      | 2025-10-09T22:44:16.000Z | 0x85e1d88eaadad748c800e02d10664be102e70e2583e8a873bf24100007e3892a |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 42343610180526253372     | 85         | 1278624267885097573 | 1278623700036377589 | 27318995      | 2026-01-02T00:30:26.000Z | 0x0ac1ab1a103fcab9a9b0bda381c8f8cc3d8fd04323f517e71f2b373b937128d0 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 500061093185446823705491 | 90         | 1217617346900481385 | 1210836643547781847 | 25854433      | 2025-11-20T18:43:02.000Z | 0xf0e2a94daa86ce22145ac3659f7fa9aac5cd97ce09cc58bc97284c7089caa79b |
</Accordion>

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

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

***

### REX33\_Compounded\_event

Event logs tracking compound interest accrual in Etherex V2's REX33 vault on Linea, recording the amount compounded and ratio changes between old and new exchange rates. Used for analyzing vault yield performance and share price evolution over time.

<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_oldRatio`      | `STRING`    | Previous ratio value before the state change. Numeric string representation in wei (18 decimal places).                                              |
  | `in_newRatio`      | `STRING`    | Updated ratio value after the state change. Numeric string representation in wei (18 decimal places).                                                |
  | `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                                    | removed | in\_amount               | log\_index | in\_newRatio        | in\_oldRatio        | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------ | ---------- | ------------------- | ------------------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 694543831994856778945178 | 229        | 1060870622790129131 | 1052039580900523564 | 23206498      | 2025-09-11T22:57:23.000Z | 0xbc198a3d7c5b9e359a3ee46cb76ab1e5a0140537cdeec7e12c5d07dd4bf3b970 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 38386597628388863225341  | 122        | 1052039580900523564 | 1051555562844885743 | 23206494      | 2025-09-11T22:57:15.000Z | 0x3d756e494a2e107b5b1c71589212cfe77a512a5980d2d5324bf6fc1406b36582 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 356889565469000021645594 | 171        | 1041477339954998270 | 1036883247923155305 | 22635495      | 2025-08-28T22:39:04.000Z | 0xcc1db35058cb23137a7b874a3a8a5c8e5675343d9515b66f54157c961665729c |
</Accordion>

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

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

***

### rex33\_Deposit\_event

Deposit events from the rex33 vault contract on Etherex v2 (Linea), recording when users deposit assets and receive vault shares in return. Useful for tracking liquidity provision, vault TVL changes, and share-to-asset conversion rates over time.

<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_sender`        | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                  |
  | `in_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.                                    |
  | `in_assets`        | `STRING`    | Number of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol's accounting system. |
  | `in_shares`        | `STRING`    | Number of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol's accounting system.      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_owner                                  | in\_assets            | in\_sender                                 | in\_shares            | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | --------------------- | ------------------------------------------ | --------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x69ac7188ecb2e00b50e6e408c877acaba2b9b848 | 210949044527547968755 | 0x69ac7188ecb2e00b50e6e408c877acaba2b9b848 | 167775853587641521260 | 70         | 26722676      | 2025-12-15T15:37:12.000Z | 0x10785ecd574ca56aff39d132ed5883e7c516686fd285c814dcf29bf1374f7666 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x49d8d8a61a7807a8cc78b42a34fa223014518863 | 40452129316994737509  | 0x49d8d8a61a7807a8cc78b42a34fa223014518863 | 32173127594849788373  | 77         | 26700681      | 2025-12-15T03:02:42.000Z | 0x505d2fd084ec93e2c4caecebfd7559a5d15bc02a3f13a5cc3b4e52d744ba2b14 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x49d8d8a61a7807a8cc78b42a34fa223014518863 | 41472003927707769938  | 0x49d8d8a61a7807a8cc78b42a34fa223014518863 | 32984272929724235815  | 74         | 26719753      | 2025-12-15T13:59:18.000Z | 0x9f6cdbf5e1b57d9c7c888667ecd15ecb3f51ce5de04c2f86eee7534929cec693 |
</Accordion>

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

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

***

### REX33\_Deposit\_event

Deposit events from the REX33 vault contract on Linea, recording user deposits with asset amounts and corresponding share allocations. Used for tracking vault participation, share-to-asset conversion ratios, and deposit flow analysis.

<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_sender`        | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                  |
  | `in_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.                                    |
  | `in_assets`        | `STRING`    | Number of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol's accounting system. |
  | `in_shares`        | `STRING`    | Number of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol's accounting system.      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_owner                                  | in\_assets              | in\_sender                                 | in\_shares              | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ----------------------- | ------------------------------------------ | ----------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0xc4a395a81957bfdc8500a141a9bb60cd237c1255 | 9893327078833636215     | 0xc4a395a81957bfdc8500a141a9bb60cd237c1255 | 9499320531794884823     | 81         | 22676638      | 2025-08-29T22:17:02.000Z | 0xb2b7e9c8fefb0ecbf9ad633277c66bda22df2e5a5e9855043c11065b12bef059 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x070c0c3c4dd0c351bb435d88dcec551f80b977ec | 5836991553866956376     | 0x070c0c3c4dd0c351bb435d88dcec551f80b977ec | 5604530535555550296     | 81         | 22670949      | 2025-08-29T18:58:15.000Z | 0x0b33a1766477b5b16bd551a75beb9dc9a5320c0ba9e23a7acee2635ffc00e097 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x36f26e2e5bed062968c17fc770863fd740713205 | 15427870590149262726777 | 0x36f26e2e5bed062968c17fc770863fd740713205 | 14813448164715608233841 | 81         | 22646761      | 2025-08-29T05:19:37.000Z | 0x4becda5cc7d6b56c6f0c606e0cad99aa75b0edb70524063b30ddcfb2cd42db57 |
</Accordion>

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

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

***

### rex33\_Entered\_event

*No description available.*

<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_amount`         | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                      |
  | `in_ratioAtDeposit` | `STRING`    | -                                                                                                                                                    |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### REX33\_Entered\_event

*No description available.*

<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_amount`         | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                      |
  | `in_ratioAtDeposit` | `STRING`    | -                                                                                                                                                    |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### rex33\_Exited\_event

*No description available.*

<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__outAmount`        | `STRING`    | -                                                                                                                                                    |
  | `in_ratioAtWithdrawal` | `STRING`    | -                                                                                                                                                    |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### REX33\_Exited\_event

*No description available.*

<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__outAmount`        | `STRING`    | -                                                                                                                                                    |
  | `in_ratioAtWithdrawal` | `STRING`    | -                                                                                                                                                    |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### rex33\_Rebased\_event

Rebase events from the REX33 token contract on Linea, tracking exchange ratio adjustments between old and new ratios with rebased token amounts. Used for analyzing rebase mechanics and token supply changes in elastic supply tokens.

<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_oldRatio`      | `STRING`    | Previous ratio value before the state change. Numeric string representation in wei (18 decimal places).                                              |
  | `in_newRatio`      | `STRING`    | Updated ratio value after the state change. Numeric string representation in wei (18 decimal places).                                                |
  | `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                                    | removed | in\_amount            | log\_index | in\_newRatio        | in\_oldRatio        | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | --------------------- | ---------- | ------------------- | ------------------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 734798268446182772001 | 89         | 1236464696722310786 | 1236455064927528196 | 26338589      | 2025-12-04T21:04:03.000Z | 0x6652452b63fbffcbae4c09591edb7f0e62f7510e7bcb1337d5bf87034557e392 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0                     | 178        | 1244351484505137051 | 1237351455435545101 | 26338596      | 2025-12-04T21:04:17.000Z | 0x4bfe39ce8194bed08406bf773575da6e8de3dc216cf1498544d7bfa7dfc3b19b |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 498793885400496901888 | 51         | 1267262299342900960 | 1267255949743712897 | 27080439      | 2025-12-25T23:44:36.000Z | 0xd809ffe004a4eaf3e1435974886f20f13d689cf3af4cdb9ed7be6a5ee63ace03 |
</Accordion>

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

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

***

### REX33\_Rebased\_event

Rebase events from the REX33 token contract on Linea, tracking ratio adjustments and amounts affected during each rebase operation. Used for analyzing the rebasing mechanism's impact on token supply and holder balances over time.

<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_oldRatio`      | `STRING`    | Previous ratio value before the state change. Numeric string representation in wei (18 decimal places).                                              |
  | `in_newRatio`      | `STRING`    | Updated ratio value after the state change. Numeric string representation in wei (18 decimal places).                                                |
  | `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                                    | removed | in\_amount              | log\_index | in\_newRatio        | in\_oldRatio        | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ----------------------- | ---------- | ------------------- | ------------------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 52810755462411847967607 | 72         | 1018401706617578186 | 1017638206878823329 | 22330739      | 2025-08-21T15:47:27.000Z | 0x01685282c07699824de8bf2db4227e6e11a2e9d86b8fb160be9de106785f902e |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 35582389032030380759902 | 94         | 1041927238098524351 | 1041477339954998270 | 22923295      | 2025-09-04T20:44:16.000Z | 0x701c9132dc78b046e8fa408a6c5ecfc515f4cb718ab485279df6b92a52cc39bc |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 58834694276876741699420 | 85         | 1031332899137077624 | 1030578885198214607 | 22635491      | 2025-08-28T22:38:56.000Z | 0xab1ccd50355fbb5f9c2d1be50e6f7177df8241a13b85b206bc51e9fd6363d45f |
</Accordion>

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

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

***

### rex33\_SwappedBribe\_event

Bribe swap events from the Etherex V2 protocol on Linea, recording token conversions executed by operators with input/output amounts and token addresses. Used for tracking incentive mechanisms and bribe distribution flows in the Etherex ecosystem.

<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_operator`      | `STRING`    | Address authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string.                             |
  | `in_tokenIn`       | `STRING`    | Contract address of the token being swapped in or deposited. Hex-encoded, 0x-prefixed, 42-character string.                                          |
  | `in_amountIn`      | `STRING`    | Amount of input tokens being swapped or deposited in the transaction. Numeric string representing the token quantity in its smallest denomination.   |
  | `in_amountOut`     | `STRING`    | Amount of output tokens received from the swap. Numeric string representing the token quantity in its smallest denomination.                         |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_tokenIn                                | in\_amountIn | in\_operator                               | block\_number | in\_amountOut | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------ | ------------------------------------------ | ------------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 10         | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 378667719    | 0x07712d748c40608810a0305751e35f0eedef70d2 | 24055831      | 0             | 2025-10-02T09:39:39.000Z | 0x14fa67f54f00181a1862944ef16d4a29715c41a7e9c387a80a59a0849a539fb3 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 10         | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 441659389    | 0x07712d748c40608810a0305751e35f0eedef70d2 | 24055735      | 0             | 2025-10-02T09:36:12.000Z | 0xfa4baf36d5046d2515a1273fa3ea71389d29e3fb20de76f8b2776848a43efb56 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 11         | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 782964214    | 0x07712d748c40608810a0305751e35f0eedef70d2 | 24055539      | 0             | 2025-10-02T09:29:28.000Z | 0xfb9734e0791986ad037d97c457fec80fd72ed39f507f30a01cb0cb1a9bfd5783 |
</Accordion>

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

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

***

### REX33\_SwappedBribe\_event

Bribe token swap events from the Etherex V2 REX33 contract on Linea, recording when incentive tokens are exchanged by operators. Used for tracking bribe token flows and operator activity in the protocol's incentive mechanism.

<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_operator`      | `STRING`    | Address authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string.                             |
  | `in_tokenIn`       | `STRING`    | Contract address of the token being swapped in or deposited. Hex-encoded, 0x-prefixed, 42-character string.                                          |
  | `in_amountIn`      | `STRING`    | Amount of input tokens being swapped or deposited in the transaction. Numeric string representing the token quantity in its smallest denomination.   |
  | `in_amountOut`     | `STRING`    | Amount of output tokens received from the swap. Numeric string representing the token quantity in its smallest denomination.                         |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_tokenIn                                | in\_amountIn      | in\_operator                               | block\_number | in\_amountOut | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ----------------- | ------------------------------------------ | ------------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 10         | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 4021226003        | 0x07712d748c40608810a0305751e35f0eedef70d2 | 23205295      | 0             | 2025-09-11T22:17:15.000Z | 0x1cdf0b487cc745e0e15e82437d84df0c94ad16a6a21eca21dc56186be02ee142 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 11         | 0x176211869ca2b568f2a7d4ee941e073a821ee1ff | 1441552913        | 0x07712d748c40608810a0305751e35f0eedef70d2 | 23206004      | 0             | 2025-09-11T22:40:55.000Z | 0x27ec8dad4d2bb846cdcc811b12004b3aec60da08c9f5417874f899ba28225b94 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 11         | 0xb5bedd42000b71fdde22d3ee8a79bd49a568fc8f | 54090880624266816 | 0x07712d748c40608810a0305751e35f0eedef70d2 | 23205664      | 0             | 2025-09-11T22:29:35.000Z | 0xf3095bb6d62f8621d0925a53706e510f399e48efe279e38deb8eda715421013e |
</Accordion>

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

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

***

### rex33\_Unlocked\_event

Unlock event logs from the Rex33 contract on Etherex V2 (Linea), capturing when locked tokens or positions are released. Used for tracking lock expiration timings and analyzing token vesting or staking unlock 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__ts`           | `STRING`    | Timestamp when the data was ingested into the system. Unix epoch time in seconds, stored as a string.                                                |
</Accordion>

<Accordion title="Sample Data">
  | in\_\_ts   | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ---------- | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 1765494196 | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0          | 26581899      | 2025-12-11T23:03:16.000Z | 0x8569848739d57e0d5b7fdbed5357f6533dae92bedb0013280b7ba6ac606be7b0 |
  | 1759438659 | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 5          | 24074954      | 2025-10-02T20:57:39.000Z | 0xcf04fbf730555c3d793e8f1bcacdf335e3b8dce856508144c480437d44fa0b57 |
  | 1756420750 | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0          | 22635498      | 2025-08-28T22:39:10.000Z | 0x6ff8c8c770749f422642f7d373c5b4a76b68743f7366be5ed3244359e55d6b14 |
</Accordion>

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

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

***

### REX33\_Unlocked\_event

Unlock event logs from the REX33 contract (0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4) on Linea, recording when locked tokens or positions are released. Useful for tracking unlock schedules and analyzing vesting or staking unlocks on the EthereX v2 protocol.

<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__ts`           | `STRING`    | Timestamp when the data was ingested into the system. Unix epoch time in seconds, stored as a string.                                                |
</Accordion>

<Accordion title="Sample Data">
  | in\_\_ts   | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ---------- | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 1758201826 | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0          | 23488993      | 2025-09-18T13:23:46.000Z | 0xd666221594ada13771e134415ea59408dced248bc2b0fc703d0014bc8b6efafa |
  | 1755204712 | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 2          | 22044713      | 2025-08-14T20:51:52.000Z | 0x1268dca9c79955d1e5a72f1fee4be81b653d49c4bc94a798a3aa721670f731a8 |
  | 1757631451 | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 75         | 23206502      | 2025-09-11T22:57:31.000Z | 0xd77bf849b046c7dc74036bd205050a649f1e6bcbc1a18af38f5f1650a8cd00f5 |
</Accordion>

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

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

***

### rex33\_UpdatedIndex\_event

*No description available.*

<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__index`        | `STRING`    | -                                                                                                                                                    |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### REX33\_UpdatedIndex\_event

*No description available.*

<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__index`        | `STRING`    | -                                                                                                                                                    |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### rex33\_Withdraw\_event

Withdrawal events from the rex33 vault contract on Linea, recording share redemptions with the corresponding asset amounts, owner, sender, and receiver addresses. Tracks vault exit activity for analyzing user behavior and fund flows in the EthereX v2 protocol.

<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_sender`        | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                  |
  | `in_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                |
  | `in_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.                                    |
  | `in_assets`        | `STRING`    | Number of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol's accounting system. |
  | `in_shares`        | `STRING`    | Number of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol's accounting system.      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_owner                                  | in\_assets             | in\_sender                                 | in\_shares             | log\_index | in\_receiver                               | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------------------- | ------------------------------------------ | ---------------------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x40ef3ef4225e7c69188b8825f26c84983a468e7c | 726471350917449963857  | 0x40ef3ef4225e7c69188b8825f26c84983a468e7c | 651843144489906721883  | 111        | 0x40ef3ef4225e7c69188b8825f26c84983a468e7c | 24084959      | 2025-10-03T03:45:34.000Z | 0x4a21598cd5256a0756b1dda6442db560f161e4971540fc5f0aeeafcedfd54508 |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x65f853b6624e8ef6be6f4b2490a5d62fd711e43d | 18432278242572397175   | 0x65f853b6624e8ef6be6f4b2490a5d62fd711e43d | 16538786002473152469   | 113        | 0x65f853b6624e8ef6be6f4b2490a5d62fd711e43d | 24097380      | 2025-10-03T11:31:23.000Z | 0x67a949299802f2071c71d63e1186b878494479560262e99c5e781f1ab1981b5b |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x754434a0c5bb55fde28add4474b409a7e9cd7995 | 2993505874951324011969 | 0x754434a0c5bb55fde28add4474b409a7e9cd7995 | 2685992063022192437344 | 125        | 0x754434a0c5bb55fde28add4474b409a7e9cd7995 | 24098581      | 2025-10-03T12:15:12.000Z | 0x571849cfae9fb3857de74472a1fba70f980b6372e61db0399931f37a1a510a08 |
</Accordion>

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

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

***

### REX33\_Withdraw\_event

Withdrawal events from the REX33 vault contract on Linea, recording share redemptions with corresponding asset amounts and participant addresses. Useful for analyzing vault outflows, redemption patterns, and share-to-asset conversion rates.

<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_sender`        | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                  |
  | `in_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                |
  | `in_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.                                    |
  | `in_assets`        | `STRING`    | Number of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol's accounting system. |
  | `in_shares`        | `STRING`    | Number of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol's accounting system.      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_owner                                  | in\_assets               | in\_sender                                 | in\_shares               | log\_index | in\_receiver                               | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------ | ------------------------------------------ | ------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x0607faa20f91cf9e9415ddab1c392d9e27dae517 | 168676186430029343258707 | 0x0607faa20f91cf9e9415ddab1c392d9e27dae517 | 158997886081909506948841 | 109        | 0x0607faa20f91cf9e9415ddab1c392d9e27dae517 | 23234396      | 2025-09-12T14:27:25.000Z | 0x2eec5d72bbeaebbadbd1b59ed5bcf043c6bce2f9be1de60803d420fe13b09bac |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x303f2d38ab911296deca9dc19968a854d9cbcadc | 27073027588889098114538  | 0x303f2d38ab911296deca9dc19968a854d9cbcadc | 25519631713135792412763  | 118        | 0x303f2d38ab911296deca9dc19968a854d9cbcadc | 23209953      | 2025-09-12T00:52:39.000Z | 0xda82ac9d53cf427466acf6692509a94e25a8fc6dc5d161dfe015d663f78119eb |
  | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | false   | 0x321006c1f11e1d76c28d1f9f2fae22e58b6c5f9e | 53043531139506456585     | 0x321006c1f11e1d76c28d1f9f2fae22e58b6c5f9e | 50000000000000000000     | 159        | 0x321006c1f11e1d76c28d1f9f2fae22e58b6c5f9e | 23214273      | 2025-09-12T03:16:39.000Z | 0x319facdb0ef8dff2960e719e658fcc51f6b6f5116b85b6e5955b68aca509e0b4 |
</Accordion>

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

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

***

### VoteModule\_ClaimRewards\_event

Reward claim events from the Etherex v2 VoteModule contract on Linea, capturing user addresses claiming voting or staking incentives with token amounts. Useful for analyzing participant engagement, reward distribution patterns, and governance incentive effectiveness.

<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_from`          | `STRING`    | Address originating the transfer 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\_from                                   | removed | in\_amount           | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | -------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0xf2b0d79bffab4ddbb705e591a096d5f73eccf345 | false   | 36946433026163977    | 5          | 22861506      | 2025-09-03T10:03:52.000Z | 0xa8c82b199d915bcd47d1878de5b26cb1540253c034069e06ddee927dadb7dfa5 |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0x152e18ef307efbe018f2d6b0915a4ac8ad543b4d | false   | 7105294954870541248  | 5          | 22849521      | 2025-09-03T03:22:03.000Z | 0x4e89f2e4dc6a4cccddd6033e2dbe91e01482f87915968906fd125f7cd297de62 |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0x3d6a18349e745442705afa3377f8f725c80a6e1b | false   | 16634888683073239603 | 5          | 22857788      | 2025-09-03T07:59:46.000Z | 0x2d996077f718a0e1566ed1119e43539ecca53f37ff2db0d389514c525bf4f00b |
</Accordion>

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

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

***

### VoteModule\_Deposit\_event

Deposit events from the EthereX v2 VoteModule governance contract on Linea, capturing user deposits with amounts and depositor addresses. Used for tracking governance participation and voting power accumulation in the protocol.

<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_from`          | `STRING`    | Address originating the transfer 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\_from                                   | removed | in\_amount           | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | -------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0x9494b61f45bde7ce8d41d47752e83a3f20bea1e2 | false   | 145617651604618      | 1          | 23383364      | 2025-09-16T01:21:10.000Z | 0xc397afbbbcba1bf175a82c70133fe0cf62c788d05d647ceb00e4bd877d85a20e |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0x39ff773ff91f91fd9ea81906b2132943874544f2 | false   | 4441741233155032853  | 1          | 23415453      | 2025-09-16T19:11:21.000Z | 0xd0537c5ea16ebc9f6be78a9215882f458c18dc1a7c0617d0c01ef111368683ac |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0x220663ea522724a87154a5801986a40630844056 | false   | 37500000000000000000 | 1          | 23421703      | 2025-09-16T22:42:18.000Z | 0x20bdb72064ed754eb9e9d24d9770fad0ecd678eb0d097c5f3c73647cb9def08d |
</Accordion>

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

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

***

### VoteModule\_NotifyReward\_event

Reward notification events from the Etherex V2 VoteModule contract on Linea, recording reward distributions with token amounts and source addresses. Used for tracking voting incentive programs and analyzing reward distribution patterns across governance participants.

<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_from`          | `STRING`    | Address originating the transfer 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\_from                                   | removed | in\_amount               | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | 191957654445687670690548 | 42         | 22596070      | 2025-08-28T00:08:55.000Z | 0x89eca6b2085527f7f53d27255764ff664f19a7efe18d8e111370096d89a05049 |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | 114525307832470843632090 | 54         | 22886387      | 2025-09-04T00:00:15.000Z | 0x43f56948ed9869e0f26cd806676495f2e9a9eda59029272e6eace568234b0a71 |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | 8721728624536387705646   | 91         | 23176438      | 2025-09-11T00:00:19.000Z | 0xdd0b61e5c78979a33429ab4c0bae4925943f34a3a766e3f1f4eb9e9d3e41934e |
</Accordion>

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

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

***

### VoteModule\_Withdraw\_event

Withdrawal events from Etherex V2 VoteModule governance contract on Linea, capturing user stake withdrawals with amounts and addresses. Used for analyzing governance participation patterns and token unstaking behavior.

<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_from`          | `STRING`    | Address originating the transfer 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\_from                                   | removed | in\_amount            | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | --------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0x038eb6066cb5604e27388df25e719d9779a37941 | false   | 14428529327138074456  | 148        | 23147377      | 2025-09-10T07:49:46.000Z | 0xcd0c84aaf9c0d5d19c0ac52bccbf5b50ef2a6fad822433a2583b2fc10b5c1e83 |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0x03d6edd0b7538c2d2b00fe424c6bccc9c6df2a0d | false   | 13100000000000000000  | 160        | 23168817      | 2025-09-10T19:46:17.000Z | 0x4d3f426061379a96ca977c046f82f9931e4e5491c9c0dbdaeeab2ad119165682 |
  | 0xedd7cbc9c47547d0b552d5bc2be76135f49c15b1 | 0x0955dcbc07c907e982c88c18235a5ae5bd1a4f23 | false   | 695099952842315000000 | 138        | 23158418      | 2025-09-10T13:58:18.000Z | 0xad3850698f10233c7d7ec4898d6c4975c3704f0e38229990e055f30bc731811d |
</Accordion>

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

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

***

### Voter\_claimIncentives\_function

Incentive claim transactions from the Etherex V2 Voter contract on Linea, capturing user reward withdrawals from fee distributor pools. Used for analyzing reward distribution patterns and voter participation in the protocol's incentive mechanism.

<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.                                                                                                                                                                                  |
  | `trace_address`       | `STRING`        | Hierarchical position of the internal call within a transaction's execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls. |
  | `status`              | `BOOL`          | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.                                                                                                                             |
  | `from_address`        | `STRING`        | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                              |
  | `to_address`          | `STRING`        | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                   |
  | `value`               | `NUMERIC`       | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).                                                                                                                                     |
  | `gas_used`            | `INT64`         | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.                                                                                                                                                       |
  | `gas`                 | `INT64`         | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.                                                                                                                                                     |
  | `signature`           | `STRING`        | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                                                                                                                                       |
  | `in_owner`            | `STRING`        | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                    |
  | `in__feeDistributors` | `ARRAY<STRING>` | Array of fee distributor contract addresses for claiming incentives or rewards. Each element is a hex-encoded, 0x-prefixed, 42-character string.                                                                                                                     |
  | `in__tokens`          | `ARRAY<STRING>` | Array of token contract addresses involved in the operation. Each element is a hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                        |
</Accordion>

<Accordion title="Sample Data">
  | gas    | value | status | gas\_used | in\_owner | signature  | in\_\_tokens | to\_address                                | block\_number | from\_address                              | trace\_address | block\_timestamp         | transaction\_hash                                                  | in\_\_feeDistributors |
  | ------ | ----- | ------ | --------- | --------- | ---------- | ------------ | ------------------------------------------ | ------------- | ------------------------------------------ | -------------- | ------------------------ | ------------------------------------------------------------------ | --------------------- |
  | 173016 | 0     | true   | 104762    |           | 0x307f38fa | \[]          | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 22498760      | 0x9c7804909513a7d200a9b0408c06fadbb5ef38a9 |                | 2025-08-25T16:11:07.000Z | 0x77522e7bfccb8eb32f1f9ed5e76b8bec3f2acfdcab016859f0e5030571ccd711 | \[]                   |
  | 115356 | 0     | true   | 104774    |           | 0x307f38fa | \[]          | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 22484271      | 0xf979a3ed486c7bb5b29fe2e6e4acb76bc1448a02 |                | 2025-08-25T07:59:31.000Z | 0xc8a6406bd9bbef28e9451b058c29135d6ac5f5b7c9e4962dd0509eb95007daef | \[]                   |
  | 218894 | 0     | true   | 204260    |           | 0x307f38fa | \[]          | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 22508176      | 0xabb3b5d0655718c464a6ff20342f9aec97a6c61e |                | 2025-08-25T21:36:02.000Z | 0xc784635a42e28d87616b9294320d711e35b2b47974d05520310a10608b4413ec | \[]                   |
</Accordion>

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

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

***

### Voter\_claimLegacyIncentives\_function

Function call records for claiming legacy incentives from EtheRex v2 Voter contract on Linea. Users call this function to withdraw accumulated trading fee rewards from specified fee distributor contracts and token addresses.

<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.                                                                                                                                                                                  |
  | `trace_address`       | `STRING`        | Hierarchical position of the internal call within a transaction's execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls. |
  | `status`              | `BOOL`          | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.                                                                                                                             |
  | `from_address`        | `STRING`        | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                              |
  | `to_address`          | `STRING`        | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                   |
  | `value`               | `NUMERIC`       | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).                                                                                                                                     |
  | `gas_used`            | `INT64`         | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.                                                                                                                                                       |
  | `gas`                 | `INT64`         | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.                                                                                                                                                     |
  | `signature`           | `STRING`        | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                                                                                                                                       |
  | `in_owner`            | `STRING`        | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                    |
  | `in__feeDistributors` | `ARRAY<STRING>` | Array of fee distributor contract addresses for claiming incentives or rewards. Each element is a hex-encoded, 0x-prefixed, 42-character string.                                                                                                                     |
  | `in__tokens`          | `ARRAY<STRING>` | Array of token contract addresses involved in the operation. Each element is a hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                        |
</Accordion>

<Accordion title="Sample Data">
  | gas     | value | status | gas\_used | in\_owner | signature  | in\_\_tokens | to\_address                                | block\_number | from\_address                              | trace\_address | block\_timestamp         | transaction\_hash                                                  | in\_\_feeDistributors |
  | ------- | ----- | ------ | --------- | --------- | ---------- | ------------ | ------------------------------------------ | ------------- | ------------------------------------------ | -------------- | ------------------------ | ------------------------------------------------------------------ | --------------------- |
  | 3470297 | 0     | true   | 2067447   |           | 0xbb7041c2 | \[]          | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 24535991      | 0x950a89611a5858a4d8501776001584c806eccd14 |                | 2025-10-14T20:51:42.000Z | 0x8752e31e97380e0061e7549b8644cc5859b3d2cc8cb42119709d38e483daa4b0 | \[]                   |
  | 1241190 | 0     | true   | 740300    |           | 0xbb7041c2 | \[]          | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 24528486      | 0x0fd57369d49ba8713b59b3599fb8c15632c4152e |                | 2025-10-14T15:57:21.000Z | 0xb7a9e1c2779452dedcd7ab53f7d7bc9f44a4317c3c18ba6b3541df172748581b | \[]                   |
  | 1600325 | 0     | true   | 1429985   |           | 0xbb7041c2 | \[]          | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 24512876      | 0xeaab7dc3a448f10e2f47f39d1d54dce1d2b2fd05 |                | 2025-10-14T06:31:09.000Z | 0x64d627ee87b3b38b81a31287131ed0a703ac6082b432f0e6389c0e5d6c944f3b | \[]                   |
</Accordion>

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

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

***

### Voter\_claimRewards\_function

User transactions calling the claimRewards function on Etherex V2's Voter contract on Linea, recording when liquidity providers and stakers claim their accumulated protocol rewards from specified gauges and tokens.

<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.                                                                                                                                                                                  |
  | `trace_address`    | `STRING`        | Hierarchical position of the internal call within a transaction's execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls. |
  | `status`           | `BOOL`          | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.                                                                                                                             |
  | `from_address`     | `STRING`        | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                              |
  | `to_address`       | `STRING`        | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                   |
  | `value`            | `NUMERIC`       | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).                                                                                                                                     |
  | `gas_used`         | `INT64`         | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.                                                                                                                                                       |
  | `gas`              | `INT64`         | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.                                                                                                                                                     |
  | `signature`        | `STRING`        | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                                                                                                                                       |
  | `in__gauges`       | `ARRAY<STRING>` | Array of gauge contract addresses for claiming rewards. Each element is a hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                             |
  | `in__tokens`       | `ARRAY<STRING>` | Array of token contract addresses involved in the operation. Each element is a hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                        |
</Accordion>

<Accordion title="Sample Data">
  | gas    | value | status | gas\_used | signature  | in\_\_gauges | in\_\_tokens | to\_address                                | block\_number | from\_address                              | trace\_address | block\_timestamp         | transaction\_hash                                                  |
  | ------ | ----- | ------ | --------- | ---------- | ------------ | ------------ | ------------------------------------------ | ------------- | ------------------------------------------ | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 184898 | 0     | true   | 67375     | 0x20b1cb6f | \[]          | \[]          | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 21991901      | 0x55dc2cde9388102c7c3dd58884cfa67540f7465c |                | 2025-08-13T15:19:02.000Z | 0x08ed0b1896b9ec9ef908c6840b8fc13028748c75ab0acdb408ae1dda5fc36e6c |
  | 123265 | 0     | true   | 89259     | 0x20b1cb6f | \[]          | \[]          | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 22003791      | 0xc63f7a6fb63013440ae67cd52f67551d84763dd9 |                | 2025-08-13T21:58:02.000Z | 0xd009ddc3762643700364c1ee30ea4bdb5f0f94bfc8d5e7fe057a3bf3a6604c01 |
  | 184898 | 0     | true   | 89259     | 0x20b1cb6f | \[]          | \[]          | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 22005249      | 0x329cfe850ff4cf637aa2353ef2d3672156e54d6c |                | 2025-08-13T22:47:50.000Z | 0xc1b87af4abdf7d5389c73903826b5d1884a413b72bfed3ee671c311122ba5a70 |
</Accordion>

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

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

***

### Voter\_Deposit\_event

*No description available.*

<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_lp`            | `STRING`    | Liquidity pool contract address. Hex-encoded, 0x-prefixed, 42-character string.                                                                      |
  | `in_gauge`         | `STRING`    | Contract address of the gauge contract. Hex-encoded, 0x-prefixed, 42-character string.                                                               |
  | `in_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. 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">
  *No sample data available.*
</Accordion>

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

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

***

### Voter\_DistributeReward\_event

Reward distribution events emitted when a Voter contract allocates tokens to gauge contracts. Records the sender address, target gauge contract, and token amount distributed for liquidity mining incentives.

<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_sender`        | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                  |
  | `in_gauge`         | `STRING`    | Contract address of the gauge contract. 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                                    | removed | in\_gauge                                  | in\_amount               | in\_sender                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 0x8e019479d6165797b800073d5275bc36ec9d0268 | 11081706424144433203673  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 123        | 23465063      | 2025-09-18T00:00:57.000Z | 0x0b005d30f657695b3d51dfe5ec5678790d87ae9ba4921d0fd5d907b5ae460ba5 |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 0x12f2739ad0845d961f885136b346d5bd7de133e8 | 26514334640268355724475  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 129        | 23465063      | 2025-09-18T00:00:57.000Z | 0x0b005d30f657695b3d51dfe5ec5678790d87ae9ba4921d0fd5d907b5ae460ba5 |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 0x640f551d349f199710b89fe1a209ad75499eb520 | 647040889986246122672578 | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 99         | 23465063      | 2025-09-18T00:00:57.000Z | 0x0b005d30f657695b3d51dfe5ec5678790d87ae9ba4921d0fd5d907b5ae460ba5 |
</Accordion>

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

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

***

### Voter\_EmissionsRatio\_event

Emissions ratio update events from the Etherex V2 Voter contract on Linea, tracking changes to token emission parameters. Used for monitoring governance decisions that affect protocol incentive distribution rates.

<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_caller`        | `STRING`    | Address that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.                                       |
  | `in_oldRatio`      | `STRING`    | Previous ratio value before the state change. Numeric string representation in wei (18 decimal places).                                              |
  | `in_newRatio`      | `STRING`    | Updated ratio value after the state change. Numeric string representation in wei (18 decimal places).                                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_caller                                 | log\_index | in\_newRatio | in\_oldRatio | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------ | ------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 0x0000000000000000000000000000000000000000 | 3          | 0            | 0            | 21609440      | 2025-08-04T04:13:27.000Z | 0xf2445bded5c17e33f5348b09b6d4c169b86b87e5d3f2d345fc88db3b2c9e405c |
</Accordion>

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

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

***

### Voter\_EmissionsRedirected\_event

Emissions redirection events from Etherex V2 Voter contract on Linea, recording when token emissions are redirected from source gauges to destination gauges. Used for analyzing governance voting allocation changes and liquidity mining reward redistribution across pools.

<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_sourceGauge`      | `STRING`    | Contract address of the gauge from which emissions are being redirected in this Voter contract event. Hex-encoded, 0x-prefixed 40-character Ethereum address on Linea chain.                                   |
  | `in_destinationGauge` | `STRING`    | Contract address of the gauge receiving redirected emissions in this Voter contract event. Hex-encoded, 0x-prefixed 40-character address on Linea, often matching the source gauge in single-gauge operations. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_sourceGauge                            | block\_timestamp         | transaction\_hash                                                  | in\_destinationGauge                       |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ | ------------------------------------------ |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 27         | 23281212      | 0xb5d99257600d7591c1be31f6f6c35542ae2a9955 | 2025-09-13T16:29:25.000Z | 0x8db3278e410faadbb653ee1bc39436c298b7bb891ae0dcbc27f90dabdea1108f | 0xb5d99257600d7591c1be31f6f6c35542ae2a9955 |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 28         | 23281235      | 0xbb4762aaff6d097a1f84a3fbf5b7e6e99b9194a5 | 2025-09-13T16:30:11.000Z | 0x5ed440b39b538b3e55fb27c6bddccce07c1752ed31ea600c851aa5324e147414 | 0xbb4762aaff6d097a1f84a3fbf5b7e6e99b9194a5 |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 13         | 23281220      | 0x27652d9f8cf34d5763167ad09af597b4b2f39f2c | 2025-09-13T16:29:41.000Z | 0xc186fb833c4933defb9948a3d0da3d1ed8588319d7551d8320f80a28fc6cb374 | 0x27652d9f8cf34d5763167ad09af597b4b2f39f2c |
</Accordion>

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

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

***

### Voter\_GaugeCreated\_event

Gauge creation events emitted when new liquidity mining gauges are deployed for liquidity pools in vote-escrowed token (veToken) protocols. Links pool addresses to their corresponding gauge contracts and associated reward distribution mechanisms for governance-driven liquidity incentives.

<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_gauge`          | `STRING`    | Contract address of the gauge contract. Hex-encoded, 0x-prefixed, 42-character string.                                                               |
  | `in_creator`        | `STRING`    | Address of the account that initiated the creation event. Hex-encoded, 0x-prefixed, 42-character string.                                             |
  | `in_feeDistributor` | `STRING`    | Contract address of the fee distributor associated with the gauge. Hex-encoded, 0x-prefixed, 42-character string.                                    |
  | `in_pool`           | `STRING`    | Contract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.                                           |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_pool                                   | removed | in\_gauge                                  | log\_index | in\_creator                                | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_feeDistributor                         |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ | ------------------------------------------ |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0x59ec66c141906012a4e17b63e2c60358c4d00f25 | false   | 0x1e1cfd7c2aca4a77da31119a1f7a4caecf80999a | 50         | 0x683035188e3670fda1def2a7aa5742dea28ed5f3 | 21995412      | 2025-08-13T17:16:20.000Z | 0x2b7cf4461b51e753165bcd81be03347ee03a64e889111e2da3657924d27c4dec | 0xec6271e42c18245e48b9b5af34c7864a91029f56 |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0x76e5d2033268f053cbe8b65abbd00db66fa6d39b | false   | 0x27652d9f8cf34d5763167ad09af597b4b2f39f2c | 14         | 0x683035188e3670fda1def2a7aa5742dea28ed5f3 | 23281220      | 2025-09-13T16:29:41.000Z | 0xc186fb833c4933defb9948a3d0da3d1ed8588319d7551d8320f80a28fc6cb374 | 0x6868baa12388b97ee289707d1c21972385432088 |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0x6667f117b936f17aa62d0fd3228ad0db046985e6 | false   | 0xbb4762aaff6d097a1f84a3fbf5b7e6e99b9194a5 | 29         | 0x683035188e3670fda1def2a7aa5742dea28ed5f3 | 23281235      | 2025-09-13T16:30:11.000Z | 0x5ed440b39b538b3e55fb27c6bddccce07c1752ed31ea600c851aa5324e147414 | 0x16b0be9f403e3ec0d4f7d44d85d5b15e2c7af15d |
</Accordion>

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

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

***

### Voter\_GaugeKilled\_event

Event logs recording the deactivation of gauge contracts from voting eligibility. Contains the gauge address that was removed from the active reward distribution set.

<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_gauge`         | `STRING`    | Contract address of the gauge contract. Hex-encoded, 0x-prefixed, 42-character string.                                                               |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_gauge                                  | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 0x2d3d068d80999a238283e5072ac898f3b8a8a4a7 | 143        | 23171087      | 2025-09-10T21:01:57.000Z | 0x8e5d35565594fe9e36d14a4d1dfea34d2b6d665636c789663687a75ee87486bd |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 0xb9dd7c8a93b6658cf7b07c716bd1a3af7943ba3d | 11         | 23162491      | 2025-09-10T16:14:04.000Z | 0xbeab9c023c122a83b63e6cd5fe8bb1af70c55d93fb22812fd2d3029fbdb0b0e5 |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 0x4b3d68471d1444e6890778eca47727bdd7d9e0e9 | 18         | 23525858      | 2025-09-19T10:20:01.000Z | 0x3833fb09fac6e689afd768566cbb55db776ae98a6065b275670bee9f2f7154f8 |
</Accordion>

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

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

***

### Voter\_GaugeRevived\_event

Events emitted when gauges are revived in the Etherex V2 voting system on Linea, tracking which gauge addresses were reactivated. Used to monitor governance actions and gauge lifecycle management in the protocol's reward distribution mechanism.

<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_gauge`         | `STRING`    | Contract address of the gauge contract. Hex-encoded, 0x-prefixed, 42-character string.                                                               |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_gauge                                  | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 0xb9dd7c8a93b6658cf7b07c716bd1a3af7943ba3d | 24         | 23525976      | 2025-09-19T10:23:57.000Z | 0x935e1a556a4274da0cd7138fc7af950ea546607299c236dcc16f2c51daf2070d |
</Accordion>

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

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

***

### Voter\_NotifyReward\_event

Reward distribution events emitted when tokens are allocated to voting gauges in Decentralized Exchange (DEX) voter contracts. Records the sender address, reward token contract, and token amount distributed to incentivize liquidity provision and governance participation.

<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_sender`        | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                  |
  | `in_reward`        | `STRING`    | Contract address of the reward token being distributed or claimed. 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                                    | removed | in\_amount                | in\_reward                                 | in\_sender                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 5035800000000000000000000 | 0xefd81eec32b9a8222d1842ec3d99c7532c31e348 | 0x0b6d3b42861ee8abfcaac818033694e758ecc3eb | 15         | 22596002      | 2025-08-28T00:06:39.000Z | 0x8ee5fab6cc7afdb6bf588d48d57779a7d7738245eaf3ef887b2839677f342c0e |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 3172554000000000000000000 | 0xefd81eec32b9a8222d1842ec3d99c7532c31e348 | 0x0b6d3b42861ee8abfcaac818033694e758ecc3eb | 87         | 23176438      | 2025-09-11T00:00:19.000Z | 0xdd0b61e5c78979a33429ab4c0bae4925943f34a3a766e3f1f4eb9e9d3e41934e |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | false   | 3140828460000000000000000 | 0xefd81eec32b9a8222d1842ec3d99c7532c31e348 | 0x0b6d3b42861ee8abfcaac818033694e758ecc3eb | 12         | 23465041      | 2025-09-18T00:00:13.000Z | 0x22635b263590c2c9e7b3a9c58ea7b48a6bc38c852c3eac734bbbb945ef1cac1d |
</Accordion>

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

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

***

### Voter\_Voted\_event

Governance voting events recording weight allocation to liquidity pools or gauges. Contains voter address, target pool, and voting power in wei-denominated values for tracking vote distribution in vote-escrowed token systems.

<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_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.                    |
  | `in_weight`        | `STRING`    | Voting power or gauge weight allocated to a pool or account. Numeric string representation of wei-denominated value.                                 |
  | `in_pool`          | `STRING`    | Contract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.                                           |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_pool                                   | removed | in\_owner                                  | in\_weight             | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------------------------ | ---------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0x09666eaf650dc52cece84b1bcd2dd78997d239c7 | false   | 0xfd7e6c923ef60c663adffcbe4e2cded29e7cffd0 | 1001030174442193302290 | 21         | 23381177      | 2025-09-16T00:08:14.000Z | 0xfb69ad510ced49c4d81c8b9de7fb5f722ffdb6a0576dd55193905b7718c157ad |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0x09666eaf650dc52cece84b1bcd2dd78997d239c7 | false   | 0xa8834c214791db3342ef97b6213baca6012e67b0 | 5010522145116192058328 | 36         | 23381778      | 2025-09-16T00:28:18.000Z | 0xcbe6e02b7bbb53a43c40bc4eb4e7ad23dbdf607dcddd87d0db7e810d10def63b |
  | 0x942117ec0458a8aa08669e94b52001bd43f889c1 | 0x76e5d2033268f053cbe8b65abbd00db66fa6d39b | false   | 0xef8c1312507e2a25377d7f4eb3a0e5477312e74f | 160000000000000000000  | 161        | 23383515      | 2025-09-16T01:26:14.000Z | 0x20ad3822a1611d1db3548b751297910ac5429a3fd1c35d9ddcbd8aeb6c730380 |
</Accordion>

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

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

***

### Voter\_Withdraw\_event

*No description available.*

<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_lp`            | `STRING`    | Liquidity pool contract address. Hex-encoded, 0x-prefixed, 42-character string.                                                                      |
  | `in_gauge`         | `STRING`    | Contract address of the gauge contract. Hex-encoded, 0x-prefixed, 42-character string.                                                               |
  | `in_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. 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">
  *No sample data available.*
</Accordion>

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

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

***

### xRex\_Converted\_event

Token conversion events from the xRex protocol on Linea, tracking user addresses and conversion amounts. Used for analyzing token exchange activity and user conversion patterns within the Etherex V2 ecosystem.

<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_anon1`         | `STRING`    | Token amount involved in the protocol operation. Numeric string representation in wei (smallest unit), with 18 decimal places of precision.          |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_user                                   | removed | in\_anon1              | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ---------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | 0x26f9de68e15213373bbfa9ed96f8fa5c234230c3 | false   | 102954461061673928344  | 2          | 22005676      | 2025-08-13T23:02:34.000Z | 0x1423b61ecec850486e01e2faf95c92642c78e35acc4c6f8331ecad8c362bd064 |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | 0x3a08ca9e3a394c7b947b9ca56493e38176f3428c | false   | 100000000000000000000  | 2          | 21972059      | 2025-08-13T04:14:27.000Z | 0x27a2aa1b83c560ca8f568087a0187dab80b325bfb2a3436331b219f19633daac |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | 0x5e014aa0649102e07c074f498845f01bcd520317 | false   | 1968755603825877200334 | 2          | 21972417      | 2025-08-13T04:26:23.000Z | 0xab1f31826e418e981f5a195431ec44c4cbde155ec1c4ea18bcedb93bce17c9e2 |
</Accordion>

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

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

***

### xRex\_Exemption\_event

Exemption status change events from the xRex contract on EthereX v2 (Linea), tracking candidate addresses being granted or revoked exemption privileges. Records success/failure outcomes for analyzing access control modifications and exemption policy changes.

<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_candidate`     | `STRING`    | Address of the candidate account being granted or revoked exemption status in the xRex contract. Hex-encoded, 0x-prefixed 40-character Ethereum address on Linea. |
  | `in_status`        | `BOOL`      | Status code representing the state of the entity or operation. Integer value with meaning specific to the contract context.                                       |
  | `in_success`       | `BOOL`      | Boolean flag indicating whether the operation completed successfully.                                                                                             |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_status | log\_index | in\_success | block\_number | in\_candidate                              | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ---------- | ----------- | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | true       | 14         | false       | 22017240      | 0xe4eeb461ad1e4ef8b8ef71a33694ccd84af051c4 | 2025-08-14T05:32:43.000Z | 0x44c5eae677b478bfdd7d9407a7436d887e9de283c17272df3fe852e49f552356 |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | false      | 19         | true        | 21913624      | 0xc4b578ffc2403b3911e233dc939157147f31509c | 2025-08-11T19:12:42.000Z | 0x27710b7af0c3cf91627846ff25a40c10b8f452d4663fb06d94b6d546ca935436 |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | true       | 54         | true        | 21913029      | 0xc4b578ffc2403b3911e233dc939157147f31509c | 2025-08-11T18:52:44.000Z | 0x2f52e4046f6f89981da19480cfa84105d04abe9ffeca8eed4c524049e7c1dd45 |
</Accordion>

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

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

***

### xRex\_InstantExit\_event

InstantExit event emissions from the xRex (Etherex) protocol contract on Linea, recording user withdrawal amounts (in\_anon1) with block-level metadata. Used for tracking liquidity exit patterns and user redemption behavior in the protocol.

<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_anon1`         | `STRING`    | Token amount involved in the protocol operation. Numeric string representation in wei (smallest unit), with 18 decimal places of precision.          |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_user                                   | removed | in\_anon1            | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | -------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | 0xc18fe557999abfa41ef2f94901c1510ea6e617c1 | false   | 35383617460003876239 | 26         | 23465123      | 2025-09-18T00:02:57.000Z | 0x1d96ba819957da0b8a7737eacb62e25cbb7b0ef50f8d60c18136a8a4a4dc2864 |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | 0x91065596a77ef36e4354fd0dd42737e181ffaa10 | false   | 24605386746026274147 | 18         | 23492385      | 2025-09-18T15:16:54.000Z | 0xe5d74edd02ce01914f26044aeeddeb633f736c89073bbedff93726fca3d88252 |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | 0x5d51e855840fe937af62b5b76d12e787a993b1e6 | false   | 80221536335207451769 | 62         | 23479525      | 2025-09-18T08:06:41.000Z | 0xe691f34b3728373256645a33047a56059fe9d9950bc9d8a6c2d39f185bb723c1 |
</Accordion>

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

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

***

### xRex\_NewSlashingPenalty\_event

*No description available.*

<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_penalty`       | `STRING`    | Penalty amount assessed in the operation. Numeric string representation of token quantity in smallest denomination.                                  |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

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

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

***

### xRex\_Rebase\_event

Rebase events from the xRex token contract on Linea, recording supply adjustments with rebased amounts and triggering caller addresses. Used for tracking xRex token supply changes and analyzing rebase mechanics in the Etherex V2 protocol.

<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_caller`        | `STRING`    | Address that initiated or requested the contract function call. 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                                    | removed | in\_amount                | in\_caller                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | 2520274777311857563161661 | 0x0b6d3b42861ee8abfcaac818033694e758ecc3eb | 25         | 22007813      | 2025-08-14T00:16:45.000Z | 0x341a998e1a1dd6a7a08238e1522c67c93facc2d7efb2929ac6708e9cd7049682 |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | 193972940394470573145104  | 0x0b6d3b42861ee8abfcaac818033694e758ecc3eb | 21         | 22302637      | 2025-08-21T00:00:28.000Z | 0x3b107ae63f3e2e154c8635a07856cfbed9bff92444df39e5ec8aaa94a414fb26 |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | 114525307832470843632090  | 0x0b6d3b42861ee8abfcaac818033694e758ecc3eb | 55         | 22886387      | 2025-09-04T00:00:15.000Z | 0x43f56948ed9869e0f26cd806676495f2e9a9eda59029272e6eace568234b0a71 |
</Accordion>

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

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

***

### xRex\_XRamRedeemed\_event

xRam token redemption events from the xRex protocol on Linea, capturing user withdrawals with redemption amounts. Useful for tracking xRam supply changes and user exit behavior from the protocol.

<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_anon1`         | `STRING`    | Token amount involved in the protocol operation. Numeric string representation in wei (smallest unit), with 18 decimal places of precision.          |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_user                                   | removed | in\_anon1                | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | 713224008419285648169059 | 78         | 22330744      | 2025-08-21T15:47:37.000Z | 0x34b1ded6b8997c8760cdce942eb751221e5aeb8217ed514e6f604ffbf4100a02 |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | 58455011536745024000000  | 2          | 23053839      | 2025-09-08T00:47:11.000Z | 0x7ad585ee31fe95407219c691c3b1a81e78d668290f3d9a09c1be13df6823274f |
  | 0xc93b315971a4f260875103f5da84cb1e30f366cc | 0xc93b315971a4f260875103f5da84cb1e30f366cc | false   | 5000000000000000000      | 22         | 21913813      | 2025-08-11T19:19:09.000Z | 0xacb65f26a9bd395bc6d62fd08db8b28814c67b495fb6a83284f824411dd95e2e |
</Accordion>

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

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

***
