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

# euler_v1_ethereum

> Tables in tt-contracts.euler_v1_ethereum

## Tables

### Euler\_AssetStatus\_event

Asset-level state snapshots from Euler V1 lending protocol on Ethereum, emitted when market conditions change. Tracks total balances, borrows, interest rates, and reserve levels for each underlying token to analyze lending pool health and utilization.

<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_underlying`          | `STRING`    | Contract address of the underlying asset. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                 |
  | `in_totalBalances`       | `STRING`    | Total token balances deposited in the Euler pool for the underlying asset, denominated in the smallest unit of that token. This represents the sum of all user deposits and accumulated interest before accounting for borrows.                          |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                                                                                                                    |
  | `in_reserveBalance`      | `STRING`    | Reserve balance held by the Euler protocol for this asset, denominated in the underlying token's smallest unit (wei-like precision). Represents protocol reserves accumulated from interest fees, typically a small fraction of total pool value.        |
  | `in_poolSize`            | `STRING`    | Total available liquidity in the asset pool at the time of the event, denominated in the smallest unit of the underlying token. This represents the balance of tokens currently depositable or withdrawable from the Euler pool for this specific asset. |
  | `in_interestAccumulator` | `STRING`    | Cumulative interest multiplier used to calculate accrued interest on borrows. Numeric string representation with 27 decimal places of precision.                                                                                                         |
  | `in_interestRate`        | `STRING`    | Annual interest rate applied to borrows. Numeric string representation with 18 decimal places of precision.                                                                                                                                              |
  | `in_timestamp`           | `STRING`    | Unix timestamp when the event or operation occurred. Numeric string representation of seconds since epoch.                                                                                                                                               |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_poolSize            | block\_number | in\_timestamp | in\_underlying                             | block\_timestamp         | in\_interestRate   | in\_totalBorrows        | in\_totalBalances       | transaction\_hash                                                  | in\_reserveBalance   | in\_interestAccumulator      |
  | ------------------------------------------ | ------- | ---------- | ----------------------- | ------------- | ------------- | ------------------------------------------ | ------------------------ | ------------------ | ----------------------- | ----------------------- | ------------------------------------------------------------------ | -------------------- | ---------------------------- |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 427        | 75289011537258440665    | 15585552      | 1663809431    | 0xc2544a32872a91f4a553b404c6950e89de901fdb | 2022-09-22T01:17:11.000Z | 0                  | 0                       | 75289011537258440665    | 0x019314aa36b6036af122d5071a7ca65067bbee7ee7f1dd128641e5dbd7c24c73 | 1000000              | 1000000000000000000000000000 |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 64         | 65206808122946339380331 | 15585491      | 1663808675    | 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0 | 2022-09-22T01:04:35.000Z | 959821108930238720 | 29964842741132130630622 | 94433392259762247332148 | 0xc6b0016885ac879711dfc19bd663ec4163d89c89a9f9a4ee5c41e0d4546c8520 | 37803844296224835900 | 1017268021716176470369190407 |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 467        | 65206808122946339380331 | 15585745      | 1663811747    | 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0 | 2022-09-22T01:55:47.000Z | 958808713885423731 | 29918734779276779351047 | 94387563100135637650039 | 0xda89348dc0ddc2a79ffc0d2d2b294c58bea199a42725eb79ad800b3491fb5dab | 37812611109899908236 | 1017271021207022271580285316 |
</Accordion>

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

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

***

### Euler\_Borrow\_event

Borrow events from Euler Protocol v1 on Ethereum recording loans taken against deposited collateral, including borrowed amount, borrower account, and underlying asset address. Used for analyzing borrowing activity, collateralization ratios, and protocol utilization across different asset markets.

<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_underlying`    | `STRING`    | Contract address of the underlying asset. Hex-encoded, 0x-prefixed, 42-character string.                                                             |
  | `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\_amount                | log\_index | in\_account                                | block\_number | in\_underlying                             | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------- | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 2049346448094214716553687 | 329        | 0x43faf3f8bef053d901c572edc32f055c20efb765 | 14552980      | 0x1a7e4e63778b4f12a199c062f3efdd288afcbce8 | 2022-04-09T17:49:39.000Z | 0x7eb925d1855b8575b17d717e8b1229c0bca8ae99ae682acbbe60afcf92f0f5db |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 330000000000000000000000  | 41         | 0x3f2c45d08bb784d48da5514b821573a4c3db04c9 | 14552002      | 0x1a7e4e63778b4f12a199c062f3efdd288afcbce8 | 2022-04-09T14:18:01.000Z | 0x6a33ad07930f05b8790780c0a90d48d0e2421775cb403a5141f8a0a0c315a709 |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 7000000000000000000000    | 158        | 0x2e15d7aa0650de1009710fdd45c3468d75ae1392 | 14552946      | 0x514910771af9ca656af840dff83e8264ecf986ca | 2022-04-09T17:41:57.000Z | 0x27a7744149fe090397b26b9a8326951d62914df1f18208630b778e7cc4b2ff71 |
</Accordion>

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

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

***

### Euler\_Deposit\_event

Deposit events from Euler v1 lending protocol on Ethereum, recording when users supply assets as collateral or liquidity. Captures depositor address, underlying token contract, and deposit amount for tracking protocol TVL (Total Value Locked) and user positions.

<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_underlying`    | `STRING`    | Contract address of the underlying asset. Hex-encoded, 0x-prefixed, 42-character string.                                                             |
  | `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\_amount             | log\_index | in\_account                                | block\_number | in\_underlying                             | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------------------- | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 1756799999999997487776 | 266        | 0x7bfee91193d9df2ac0bfe90191d40f23c773c060 | 13823633      | 0x111111111117dc0aa78b770fa6a738034120c302 | 2021-12-17T16:15:21.000Z | 0x5157becfc6f7190d9190b1c16a90ec32d1348d991165edb9ccacc20bda783b2f |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 4546940655177390       | 347        | 0xc79a1415847ed193b64d400c94a220bfb33d0e73 | 13822131      | 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599 | 2021-12-17T10:29:29.000Z | 0xa8cc71d631e4e29a109194569d13eb39e0feff97c02128215708d62d1d07304c |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 1525199999298356413483 | 31         | 0x7bfee91193d9df2ac0bfe90191d40f23c773c060 | 13823596      | 0x6243d8cea23066d098a15582d81a598b4e8391f4 | 2021-12-17T16:08:43.000Z | 0xe0ea90921fd2d310bb48e9c5a757eafbf018d73764854f6cd6a32c2c9c347bcf |
</Accordion>

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

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

***

### Euler\_EnterMarket\_event

Market entry events from Euler Protocol v1 on Ethereum recording when accounts activate collateral markets for borrowing. Tracks account-asset pairs enabling cross-collateralization and risk management 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_underlying`    | `STRING`    | Contract address of the underlying asset. Hex-encoded, 0x-prefixed, 42-character string.                                                             |
  | `in_account`       | `STRING`    | Account address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                             |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_account                                | block\_number | in\_underlying                             | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 217        | 0x46ca9cc4881e65cf98994513c9c56e452fb68835 | 13957358      | 0x24a6a37576377f63f194caa5f518a60f45b42921 | 2022-01-07T08:51:42.000Z | 0xa7c0f6449c23593f51bf9da4d959ca9bbc54df03243d9b90656983af5101f54a |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 55         | 0x2b7ba0a703ede3923fc00fef818d7537e903ce15 | 13958661      | 0x3b484b82567a09e2588a13d54d032153f0c0aee0 | 2022-01-07T13:38:25.000Z | 0xe719477de1fda690898ec6efacef37fbc793b1865fab66f8f641311ea6e5082c |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 354        | 0x584313319d0bfead2a9d98a7154f5dcb5a62887f | 13960605      | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 2022-01-07T20:59:12.000Z | 0x30294added65efd6b5457937a4a9e86bbdd4de448330e02c155f92b64569bffc |
</Accordion>

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

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

***

### Euler\_ExitMarket\_event

Market exit events from Euler Protocol V1 on Ethereum recording when accounts remove assets from their lending positions. Used for tracking user position management and collateral deactivation across lending markets.

<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_underlying`    | `STRING`    | Contract address of the underlying asset. Hex-encoded, 0x-prefixed, 42-character string.                                                             |
  | `in_account`       | `STRING`    | Account address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                             |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_account                                | block\_number | in\_underlying                             | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 107        | 0xfb704a9d5f1bd6b11f6b9d62142c17e6a9f8ff96 | 15555520      | 0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0 | 2022-09-17T19:56:23.000Z | 0xe0d7a07435dae33973ed43024f7d5f6feb737ea52c0f670bd5b78a9425e5b09e |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 549        | 0x07df2ad9878f8797b4055230bbae5c808b8259b3 | 16161425      | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 2022-12-11T12:19:59.000Z | 0x334356fe1a7e2a9c2faa54930195ef0a163e7a4d493d7bce43ef7f8697777fae |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 105        | 0x07df2ad9878f8797b4055230bbae5c808b8259b3 | 16158972      | 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 | 2022-12-11T04:06:59.000Z | 0x4c6d3c3bdc484b50fdcffc1594c5eb07e80ea779da5dc4707dcfcaa26fba8a1c |
</Accordion>

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

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

***

### Euler\_GovSetReserveFee\_event

Governance events recording reserve fee parameter changes for lending markets on Euler Protocol v1 on Ethereum. Tracks fee adjustments across different underlying assets (eTokens) with new fee values typically ranging from 0 to 600000000 (basis points).

<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_underlying`    | `STRING`    | Contract address of the underlying asset. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                                                   |
  | `in_newReserveFee` | `STRING`    | The new reserve fee percentage being set for the underlying asset, denominated in basis points with 9 decimal precision (e.g., '200000000' = 20%). Values typically range from 0% to 60% as shown in governance updates across different Euler V1 markets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_underlying                             | block\_timestamp         | in\_newReserveFee | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------------------------ | ------------------------ | ----------------- | ------------------------------------------------------------------ |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 321        | 16778154      | 0xae78736cd615f374d3085123a210448e74fc6393 | 2023-03-07T18:18:59.000Z | 200000000         | 0x10b72bb8aa97dc757b7706c9f52929677d666bfcf105ce1146d0b004c17515fb |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 260        | 15619969      | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 2022-09-26T20:37:35.000Z | 200000000         | 0x01bc9d6ed3282e01012c9adb02e20cdba324cc48c5e3e5c03fde7516626553f8 |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 210        | 16197907      | 0x31c8eacbffdd875c74b94b077895bd78cf1e64a3 | 2022-12-16T14:38:47.000Z | 0                 | 0x1b6986fc31b0e973f6ab96cb0c86285d5d007ad6627332a9679fccd01835ae3f |
</Accordion>

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

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

***

### Euler\_Repay\_event

Loan repayment events from Euler Protocol v1 on Ethereum, capturing the amount repaid, borrower account, and underlying asset token address. Used for analyzing borrowing activity, debt reduction patterns, and protocol usage across different collateral types.

<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_underlying`    | `STRING`    | Contract address of the underlying asset. Hex-encoded, 0x-prefixed, 42-character string.                                                             |
  | `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\_amount               | log\_index | in\_account                                | block\_number | in\_underlying                             | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 814349135327195488608640 | 151        | 0xf49d2bcc52f0b46a98204721f98ce9d4e6730bec | 14786486      | 0x6123b0049f904d730db3c36a31167d9d4121fa6b | 2022-05-16T13:16:52.000Z | 0xf848590f02d9c5cc4af47304f4268e46a16994c2b3b9ffbbc3518e18a13745ee |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 400002271817512026707791 | 132        | 0xc029f24c043d9b44e0b4506485ffc61013f1b1f1 | 14787774      | 0x6123b0049f904d730db3c36a31167d9d4121fa6b | 2022-05-16T18:09:40.000Z | 0x3bc00b9930f6eb95a85806f8f756c7ec5f3fef39d92f1f8ce3cb1c97233afffa |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 22678491323097722982638  | 302        | 0x95493d0b6a9139dcc124b581d423cc918ce2e7e1 | 14786032      | 0x6123b0049f904d730db3c36a31167d9d4121fa6b | 2022-05-16T11:39:38.000Z | 0x28056433fc3410addd27ffa2f0ee2a2dad5e5d0f2381b057c143075c18237673 |
</Accordion>

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

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

***

### Euler\_Withdraw\_event

Withdrawal events from Euler Protocol v1 on Ethereum, recording when users remove underlying assets from their lending positions. Includes account addresses, token addresses, withdrawal amounts in Wei, and transaction metadata for tracking liquidity movements.

<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_underlying`    | `STRING`    | Contract address of the underlying asset. Hex-encoded, 0x-prefixed, 42-character string.                                                             |
  | `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\_amount              | log\_index | in\_account                                | block\_number | in\_underlying                             | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ----------------------- | ---------- | ------------------------------------------ | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 99999986470956096250    | 497        | 0x1a8a7ae2508a2623789772e6eeaa084ac406d85f | 14447379      | 0x111111111117dc0aa78b770fa6a738034120c302 | 2022-03-24T06:36:09.000Z | 0x149d39398940b0ade4cad8b1f106ae56618459d7e691a465533892a9a4fecf1a |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 49983846785485217957369 | 152        | 0xcfd727653c3d5a1b943f675781d3245b884f1d34 | 14448606      | 0x111111111117dc0aa78b770fa6a738034120c302 | 2022-03-24T11:09:08.000Z | 0x9755cfa07943936e12d84a27a05ec8b82ea156a48c31c9e0a27468808bf2be86 |
  | 0x27182842e098f60e3d576794a5bffb0777e025d3 | false   | 15000256357257027584205 | 527        | 0x56af52a9611afda072a73afd0e1ff4c4e35ee94a | 14448864      | 0x111111111117dc0aa78b770fa6a738034120c302 | 2022-03-24T12:08:16.000Z | 0xd88efd614756682e7cec93b311d6a162539640e34b60f9246b823f4487dd1a02 |
</Accordion>

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

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

***

### EulerSwap\_EulerSwapActivated\_event

Event log emitted when an EulerSwap trading pair is activated between two assets. Records the contract address and the two asset addresses in the activated pair for swap functionality initialization.

<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_asset0`        | `STRING`    | Contract address of the first asset in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.                                              |
  | `in_asset1`        | `STRING`    | Contract address of the second asset in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.                                             |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_asset0                                 | in\_asset1                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x69058613588536167ba0aa94f0cc1fe420ef28a8 | false   | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 | 343        | 22630444      | 2025-06-04T09:40:35.000Z | 0x6b93a7050c2dfdfe6103a906c37e2bf043357423037e37dcbc20b80134556396 |
  | 0x8863dc83c8eee1b67e61523ffcb928f40580e8a8 | false   | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 287        | 22617232      | 2025-06-02T13:17:23.000Z | 0x78acf95b44485956282c7ed58af9e57c9232a4e60a4f6f64697151aa3411c8e6 |
  | 0xac0a5959a6edca7a27ea4b9a125e612a6e1428a8 | false   | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 | 78         | 22626475      | 2025-06-03T20:20:47.000Z | 0x0d8aae9b1bffa9cc15e3e3fc24f657c8255578c6621bc0317d71f484ec4fba67 |
</Accordion>

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

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

***

### EulerSwap\_Swap\_event

EulerSwap token swap events emitted by liquidity pools, recording bidirectional trade amounts, post-swap reserves, sender and recipient addresses. Used for tracking decentralized exchange (DEX) trading activity and liquidity pool state 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_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_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. |
  | `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 | in\_reserve0  | in\_reserve1          | block\_number | in\_amount0In | in\_amount1In   | in\_amount0Out | in\_amount1Out | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | --------------------- | ------------- | ------------- | --------------- | -------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x3eb6f25a0a879e5a11270d3bc3c17efb6d41b518 | 0x69058613588536167ba0aa94f0cc1fe420ef28a8 | false   | 0x3eb6f25a0a879e5a11270d3bc3c17efb6d41b518 | 172        | 723591126977  | 312028583696582952689 | 22637666      | 0             | 419790000000000 | 1000000        | 0              | 2025-06-05T09:57:35.000Z | 0x9e3839f8c51507290a817aeedcccbf30e2bdcf5847e999d6c269578f1df02722 |
  | 0xe08d97e151473a848c3d9ca3f323cb720472d015 | 0x7869dbffeedaf7f5f164dfc6e4c47340fd0ba8a8 | false   | 0x52b26d9046bec495914fae467ff0e95762c5ed74 | 295        | 3350709161334 | 2536935688812         | 22717776      | 160273630119  | 0               | 0              | 160242223239   | 2025-06-16T14:48:23.000Z | 0x4f2a7688ed4dd919d826410da639f510ebf1d9e2b6af0372ea245b4c287e67bc |
  | 0x8476b695c5f8313cbb6b46b5b18da11aed1b6bd9 | 0x7869dbffeedaf7f5f164dfc6e4c47340fd0ba8a8 | false   | 0x52b26d9046bec495914fae467ff0e95762c5ed74 | 88         | 3036889438254 | 2850714124524         | 22625000      | 9999900000    | 0               | 0              | 9999864920     | 2025-06-03T15:24:23.000Z | 0xa250f4f361a23b5d2f627cd9874019783db69db0f8b9fe23e611921c5c0c0546 |
</Accordion>

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

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

***

### EulerSwapFactory\_PoolConfig\_event

Pool configuration events from Euler swap factories capturing liquidity pool parameters including vault addresses, reserve balances, pricing ratios, concentration factors, and fee structures at pool initialization or reconfiguration.

<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_pool`          | `STRING`                                                                                                                                                                                                                                                     | Contract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                        |
  | `in_params`        | `STRUCT<vault0 STRING, vault1 STRING, eulerAccount STRING, equilibriumReserve0 STRING, equilibriumReserve1 STRING, priceX STRING, priceY STRING, concentrationX STRING, concentrationY STRING, fee STRING, protocolFee STRING, protocolFeeRecipient STRING>` | Additional initialization parameters encoded as bytes. Hex-encoded string used for protocol-specific configuration data during contract initialization or cross-chain operations. |
  | `in_initialState`  | `STRUCT<currReserve0 STRING, currReserve1 STRING>`                                                                                                                                                                                                           | Initial reserve balances of the pool at configuration time. Structure contains currReserve0 and currReserve1 as string-encoded token amounts.                                     |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_pool                                   | removed | in\_params                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | log\_index | block\_number | block\_timestamp         | in\_initialState                                                        | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | ------------- | ------------------------ | ----------------------------------------------------------------------- | ------------------------------------------------------------------ |
  | 0xfb9fe66472917f0f8966506a3bf831ac0c10cad4 | 0x69058613588536167ba0aa94f0cc1fe420ef28a8 | false   | \{"fee":"500000000000000","priceX":"379218809252938","priceY":"1000000","vault0":"0x797dd80692c3b2dadabce8e30c07fde5307d48a9","vault1":"0xd8b27cf359b7d15710a5be299af6e7bf904984c2","protocolFee":"0","eulerAccount":"0x0afbf798467f9b3b97f90d05bf7df592d89a6cf1","concentrationX":"850000000000000000","concentrationY":"850000000000000000","equilibriumReserve0":"751024805196","equilibriumReserve1":"301566016943501539193","protocolFeeRecipient":"0x0000000000000000000000000000000000000000"} | 350        | 22630444      | 2025-06-04T09:40:35.000Z | \{"currReserve0":"751024805196","currReserve1":"301566016943501539193"} | 0x6b93a7050c2dfdfe6103a906c37e2bf043357423037e37dcbc20b80134556396 |
  | 0xfb9fe66472917f0f8966506a3bf831ac0c10cad4 | 0xac0a5959a6edca7a27ea4b9a125e612a6e1428a8 | false   | \{"fee":"1000000000000000","priceX":"381679389312977","priceY":"1000000","vault0":"0x797dd80692c3b2dadabce8e30c07fde5307d48a9","vault1":"0xd8b27cf359b7d15710a5be299af6e7bf904984c2","protocolFee":"0","eulerAccount":"0x0afbf798467f9b3b97f90d05bf7df592d89a6cf1","concentrationX":"850000000000000000","concentrationY":"850000000000000000","equilibriumReserve0":"32323567419","equilibriumReserve1":"12955703769546733211","protocolFeeRecipient":"0x0000000000000000000000000000000000000000"}  | 87         | 22626475      | 2025-06-03T20:20:47.000Z | \{"currReserve0":"32323567419","currReserve1":"12955703769546733211"}   | 0x0d8aae9b1bffa9cc15e3e3fc24f657c8255578c6621bc0317d71f484ec4fba67 |
  | 0xfb9fe66472917f0f8966506a3bf831ac0c10cad4 | 0x7869dbffeedaf7f5f164dfc6e4c47340fd0ba8a8 | false   | \{"fee":"10000000000000","priceX":"1000000","priceY":"1000000","vault0":"0x797dd80692c3b2dadabce8e30c07fde5307d48a9","vault1":"0x313603fa690301b0caeef8069c065862f9162162","protocolFee":"0","eulerAccount":"0x0afbf798467f9b3b97f90d05bf7df592d89a6cf0","concentrationX":"999000000000000100","concentrationY":"999000000000000100","equilibriumReserve0":"3026889538254","equilibriumReserve1":"2860713989444","protocolFeeRecipient":"0x0000000000000000000000000000000000000000"}                 | 238        | 22624982      | 2025-06-03T15:20:47.000Z | \{"currReserve0":"3026889538254","currReserve1":"2860713989444"}        | 0xb72fbf09e2637f83875c86ab103f31e06a4cd7d3f37d8b5b5e506be48cc1b39d |
</Accordion>

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

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

***

### EulerSwapFactory\_PoolDeployed\_event

Euler swap pool deployment events emitted when new liquidity pools are created through the factory contract. Contains pool address, paired asset addresses, and associated Euler account identifier for tracking pool creation across 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_asset0`        | `STRING`    | Contract address of the first asset in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.                                              |
  | `in_asset1`        | `STRING`    | Contract address of the second asset in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.                                             |
  | `in_eulerAccount`  | `STRING`    | Contract address of the Euler account associated with the pool deployment. 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\_asset0                                 | in\_asset1                                 | log\_index | block\_number | block\_timestamp         | in\_eulerAccount                           | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------ | ------------------------------------------------------------------ |
  | 0xfb9fe66472917f0f8966506a3bf831ac0c10cad4 | 0x8863dc83c8eee1b67e61523ffcb928f40580e8a8 | false   | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 295        | 22617232      | 2025-06-02T13:17:23.000Z | 0x0afbf798467f9b3b97f90d05bf7df592d89a6cf0 | 0x78acf95b44485956282c7ed58af9e57c9232a4e60a4f6f64697151aa3411c8e6 |
  | 0xfb9fe66472917f0f8966506a3bf831ac0c10cad4 | 0x7869dbffeedaf7f5f164dfc6e4c47340fd0ba8a8 | false   | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 237        | 22624982      | 2025-06-03T15:20:47.000Z | 0x0afbf798467f9b3b97f90d05bf7df592d89a6cf0 | 0xb72fbf09e2637f83875c86ab103f31e06a4cd7d3f37d8b5b5e506be48cc1b39d |
  | 0xfb9fe66472917f0f8966506a3bf831ac0c10cad4 | 0xac0a5959a6edca7a27ea4b9a125e612a6e1428a8 | false   | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 | 86         | 22626475      | 2025-06-03T20:20:47.000Z | 0x0afbf798467f9b3b97f90d05bf7df592d89a6cf1 | 0x0d8aae9b1bffa9cc15e3e3fc24f657c8255578c6621bc0317d71f484ec4fba67 |
</Accordion>

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

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

***
