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

# etherfi_v1_arbitrum

> Tables in tt-contracts.etherfi_v1_arbitrum

## Tables

### ETHFIRewards\_Claimed\_event

ETHFI token reward claim events from the Ether.fi protocol. Records user reward withdrawals with account addresses, claimed amounts, and liquidity index snapshots at time of claim.

<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`    | Liquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27).                 |
  | `in_account`       | `STRING`    | Account address involved in the transaction 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                                    | removed | in\_index | in\_amount           | log\_index | in\_account                                | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | --------- | -------------------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x4dea1271dfae80f4f3324b3a50c33abdbea89a57 | false   | 23165     | 11800733433335127032 | 1          | 0x1088439ee2465604f0eec1c258d3b8f2f53ebfad | 285284397     | 2024-12-16T07:27:44.000Z | 0xe2308e0ab4df22d8af01e1180e4c79512ca98b9de69c9d83103107897ee35ddf |
  | 0x4dea1271dfae80f4f3324b3a50c33abdbea89a57 | false   | 16380     | 13443106224409605787 | 1          | 0x29c6e10beea3de477d684d3198a8eb79ea9433da | 285444221     | 2024-12-16T18:34:50.000Z | 0x56be069623d8730ba3bfd38509e9900e038459b738e4b97f3692a2fe307c2e5f |
  | 0x4dea1271dfae80f4f3324b3a50c33abdbea89a57 | false   | 10797     | 16352266042432706428 | 1          | 0x0e0a4aa4d1051f76b985633812c475bd4c8c6e23 | 285406306     | 2024-12-16T15:56:27.000Z | 0x9e1c54da9c4663e2ba8e73f0440b2884e98e491668da2d53db037d8fe1c2d8e7 |
</Accordion>

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

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

***
