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

# wombat_v3_bsc

> Tables in tt-contracts.wombat_v3_bsc

## Tables

### MasterWombatV3\_Harvest\_event

Harvest events from Wombat Exchange V3 staking pools on BNB Smart Chain, recording reward claims by users from specific pool IDs with token amounts. Used for analyzing staking reward distribution patterns and user claiming behavior across different 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_user`          | `STRING`    | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.                    |
  | `in_pid`           | `STRING`    | Pool identifier referencing a specific staking or liquidity pool within the protocol. Numeric string representation of the pool ID.                  |
  | `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">
  | in\_pid | address                                    | in\_user                                   | removed | in\_amount           | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------- | ------------------------------------------ | ------------------------------------------ | ------- | -------------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 36      | 0x489833311676b566f888119c29bd997dc6c95830 | 0x84d7bd6699cf400329989980ce87e3db3f03e869 | false   | 22991443742714889394 | 388        | 27743973      | 2023-04-28T13:17:40.000Z | 0x9b5d07df67584a1970e096de5eb4767bc95f3438f67002236ffa4ded6d37eb7b |
  | 0       | 0x489833311676b566f888119c29bd997dc6c95830 | 0x7f5e95fa60ba1dedf71cd22934d345e20ef70410 | false   | 72530330335284334188 | 1813       | 27742427      | 2023-04-28T12:00:17.000Z | 0xd868a241e8bc3d81e6936c10dad4a6c4c1c3f026d6f72fca9ea055d74ec93405 |
  | 22      | 0x489833311676b566f888119c29bd997dc6c95830 | 0x4c8f8089607ba1d370c7c62743a309bcb01d1eec | false   | 120112211312869198   | 303        | 27731375      | 2023-04-28T02:46:49.000Z | 0x5d2a8b977b3bf38615739c5fe97ec81fcae815619a8b32102aab74ee48d92d73 |
</Accordion>

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

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

***
