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

# ironbank_v1_ethereum

> Tables in tt-contracts.ironbank_v1_ethereum

## Tables

### iAAVE\_AccrueInterest\_event

Interest accrual events for the AAVE lending pool on Iron Bank v1 Ethereum, tracking accumulated interest, total borrows, cash reserves, and borrow index updates at each accrual block. Used for analyzing lending pool utilization rates, interest rate dynamics, and protocol revenue 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior          | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ---------------------- | ------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 280        | 15587573      | 9496092621600635332446 | 1065131741302670743 | 2022-09-22T08:05:11.000Z | 2118929092739699453494 | 0x9a7ad430abcfdca2e04341386f7fbddbd3f802eb224ee9deaef6f1c226b87734 | 348518222495530764      |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 295        | 17198699      | 2936364240516983572925 | 1106074922066160739 | 2023-05-06T02:50:35.000Z | 14329260944981743069   | 0x2c68c25c53da205a0e796a8d0b4ed6b6011f4d4b0471c96bbff072627b5253be | 722607896717536         |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 216        | 13348980      | 1157898004905594131793 | 1000000000000000000 | 2021-10-03T22:41:49.000Z | 0                      | 0xbf9f85c6c89d49f931c013f2406d944c40257b420df3c60e9226acf1ec6f379d | 0                       |
</Accordion>

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

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

***

### iAAVE\_Borrow\_event

Borrow event logs from Iron Bank v1's iAAVE market on Ethereum, tracking individual borrow transactions with borrower addresses, amounts, and cumulative account/total borrows. Used for analyzing borrowing patterns, utilization rates, and individual account debt positions in the AAVE lending pool.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount       | in\_totalBorrows       | transaction\_hash                                                  | in\_accountBorrows     |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------------- | ---------------------- | ------------------------------------------------------------------ | ---------------------- |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 17         | 0x16388463d60ffe0661cf7f1f31a7d658ac790ff7 | 14830718      | 2022-05-23T16:51:11.000Z | 2000000000000000000000 | 7692183067265539541687 | 0x06d5ec0bd955ee5f8b9a9ebcd09dba626adc04aac614fad74e64f7a32e9efa97 | 2000000000000000000000 |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 122        | 0xfddc49410084e011b49888a39e4201c14ce2845b | 15628847      | 2022-09-28T02:26:59.000Z | 1888279670234772639    | 2402770857059280458791 | 0x004db4f1d4365b95488ee1f947dd059f8c75ecdc5a44dcd70aa32ca654005f6e | 1888279670234772639    |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 100        | 0x3af015f6e3ac79d217198f00ef36af099d223e29 | 14457606      | 2022-03-25T20:40:08.000Z | 967559724100000000000  | 6204617607110787580655 | 0x71ff8b264e91251b083c2b4cac1e43aea5c1fa508966c5f6fdf8e2154a200cdc | 1972168531720413349456 |
</Accordion>

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

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

***

### iAAVE\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iAAVE_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iAAVE\_Mint\_event

Interest-bearing iAAVE token minting events from Iron Bank v1 on Ethereum, recording deposits of AAVE tokens into the protocol. Captures minter addresses, underlying AAVE deposit amounts, and corresponding iAAVE tokens received for analyzing supply activity and liquidity provision.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount         | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ---------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 0x588daca8d8b81701d8f8ab6124039759ab1f0678 | 68         | 13948475      | 6690397670862567505424 | 66332157618429 | 2022-01-05T23:37:11.000Z | 0xab4b386975b3c495a24540d06fa5b49948bdf449fb1af093bf2b710f885f2aee |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 0x1a929b5d550c45ca8a0cfdb82f7c9c15fc278f31 | 213        | 15978825      | 17876424600619757441   | 174504160200   | 2022-11-15T23:51:11.000Z | 0xd7ed1605e93190899f2125ffc47fe0022ce7d8abb4520a77cfe4a187ed5d053e |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 0x588daca8d8b81701d8f8ab6124039759ab1f0678 | 128        | 16183868      | 103174687763497513468  | 1003724031610  | 2022-12-14T15:36:23.000Z | 0x8a2c87f6e84f88997982dddcd46ccd44d6d031aebb76a8be0c7006ecc906c942 |
</Accordion>

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

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

***

### iAAVE\_NewReserveFactor\_event

Reserve factor adjustment events for Iron Bank's iAAVE market on Ethereum, tracking changes to the protocol's reserve allocation percentage. Useful for monitoring Iron Bank governance decisions and risk parameter updates 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 125        | 13217741      | 2021-09-13T13:55:52.000Z | 0x8f0dfdec5894e9d134f2b82c4fea79ad6d5f65b34692ec5578edd835b3bf2d35 | 200000000000000000           | 0                            |
</Accordion>

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

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

***

### iAAVE\_Redeem\_event

AAVE token redemption events from Iron Bank v1 (Cream Finance fork) on Ethereum, tracking withdrawals where users burn ibAAVE tokens to receive underlying AAVE. Records redeemer addresses, amounts withdrawn, and corresponding ibToken amounts burned for analyzing lending protocol 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount      | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 384        | 0x588daca8d8b81701d8f8ab6124039759ab1f0678 | 14737845      | 2022-05-08T19:04:42.000Z | 9270307393383014371   | 91217807523      | 0x11329ea086e491f23844b957f91c2e0606063314da88d3f2507078537f94e1e6 |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 198        | 0x6dd91bdab368282dc4ea4f4befc831b78a7c38c0 | 14734602      | 2022-05-08T06:53:00.000Z | 186101018611106577927 | 1831255694598    | 0xa5c2687a5174f4abf3f9aa4ce7e7d82b0d0129b8d5a4e2d8137ed32cf4154ce2 |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 232        | 0x588daca8d8b81701d8f8ab6124039759ab1f0678 | 15270789      | 2022-08-03T17:26:18.000Z | 19762360703476570558  | 193759532696     | 0xf5f6eaa4c0ec5fc494fe11d56a1be737082a26547144bbab302ff7e9a16d84c4 |
</Accordion>

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

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

***

### iAAVE\_RepayBorrow\_event

Loan repayment events for AAVE token borrows on Iron Bank v1 (Ethereum), tracking repayment amounts, payer and borrower addresses, and updated borrow balances. Used to analyze debt repayment patterns and borrower health across AAVE market 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount       | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_accountBorrows   |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | -------------------- |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 0x16388463d60ffe0661cf7f1f31a7d658ac790ff7 | 108        | 0x16388463d60ffe0661cf7f1f31a7d658ac790ff7 | 13948475      | 800458555638772685937 | 2022-01-05T23:37:11.000Z | 210283355503788858640  | 0xab4b386975b3c495a24540d06fa5b49948bdf449fb1af093bf2b710f885f2aee | 0                    |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 0x16388463d60ffe0661cf7f1f31a7d658ac790ff7 | 335        | 0x16388463d60ffe0661cf7f1f31a7d658ac790ff7 | 14012730      | 800000000000000000000 | 2022-01-15T22:14:23.000Z | 180517844741975285834  | 0xa2a153eaf6c1ce1e28cdbf3be68350a1766e4926d9b350b3293f8c75a43e18f8 | 0                    |
  | 0x30190a3b52b5ab1daf70d46d72536f5171f22340 | false   | 0x3444a6bb4030270b66117fa654aa60149a0212ed | 23         | 0x4583dffaa7a5e0302232313681561402910cf2f8 | 16539081      | 92640062552029420276  | 2023-02-02T05:37:59.000Z | 1281592353978728984892 | 0xae16b629b1ca074181adae76e79ff28b9ac2b2a713236f639ed2c190ba64a0a2 | 92677127613020941535 |
</Accordion>

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

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

***

### iAUD\_AccrueInterest\_event

Interest accrual events for the iAUD (Iron Bank Australian Dollar) lending market on Iron Bank v1 Ethereum, tracking periodic updates to borrow index, total borrows, cash reserves, and accumulated interest for the AUD-pegged asset market.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior              | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows          | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | -------------------------- | ------------------- | ------------------------ | ------------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 336        | 15351687      | 91335950213889787049650209 | 1027804086086914382 | 2022-08-16T09:53:45.000Z | 4678768072576904865306793 | 0x350b2c230b02f1c34bc877214a1a04ff065ffd253ad132420e44415cdb0f2cfa | 95706142235702627276    |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 402        | 15355130      | 91310950213889787049650209 | 1027814807340845077 | 2022-08-16T22:51:50.000Z | 4703817138632021650167862 | 0x8d33219fa433649ba8778507b0058746da737104e9d130eef6b0fdd4e7c05202 | 49066055116784861069    |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 25         | 16303157      | 26915365898084810108784957 | 1036105504565720733 | 2022-12-31T07:09:11.000Z | 1089453650636727057214219 | 0x7563bac068b219955c3510242e004e18220fbe40ec75ad7a41d8f6f6f3e2e1ff | 102849530910836976518   |
</Accordion>

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

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

***

### iAUD\_Borrow\_event

Borrow event records from Iron Bank v1's iAUD market on Ethereum, tracking when users borrow Australian Dollar-pegged tokens with borrower addresses, amounts borrowed, and cumulative account and protocol-wide borrow balances. Used for analyzing borrowing activity, debt positions, and utilization rates in the iAUD lending pool.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount        | in\_totalBorrows           | transaction\_hash                                                  | in\_accountBorrows         |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | -------------------------- | ------------------------------------------------------------------ | -------------------------- |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 51         | 0x8338aa899fb3168598d871edc1fe2b4f0ca6bbef | 14074382      | 2022-01-25T11:02:22.000Z | 13392219718073267354452 | 20867151158686763708288773 | 0x3d2709210efcee560282480ee374eedcccfc9dab51b25be5a346313d06e0871d | 13112418270710334072170470 |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 225        | 0x8338aa899fb3168598d871edc1fe2b4f0ca6bbef | 14075938      | 2022-01-25T16:53:17.000Z | 35969357359630494053000 | 18893447898683775135832835 | 0xdbf193d77fdba026b96fa15fcc87d400e43d8e08e4e5f367483dfd4ac68bc782 | 13148659196052360519674854 |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 318        | 0xca41275733bba2831487206631cb46ad40bfda5d | 14376929      | 2022-03-13T07:14:56.000Z | 22576336019059795734760 | 23589154554757185272700450 | 0x3000488ec9d66e51fc6e9fb3082e9978836294e6372bd4c49b5b70b124224f3c | 22576336019059795734760    |
</Accordion>

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

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

***

### iAUD\_Flashloan\_event

Flash loan event records for Iron Bank's AUD-denominated market (iAUD) on Ethereum. Captures uncollateralized loan executions with borrower addresses, loan amounts, and fee breakdowns for analyzing flash loan usage patterns and protocol revenue.

<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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount             | log\_index | in\_receiver                               | in\_totalFee        | block\_number | in\_reservesFee    | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------------------- | ---------- | ------------------------------------------ | ------------------- | ------------- | ------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 7000000000000000000000 | 150        | 0xea4bb5fc73f6a10afd69ded9dd7558b505b253ae | 2100000000000000000 | 22764376      | 210000000000000000 | 2025-06-23T03:13:47.000Z | 0x594e961642edae7246712d6973da1111d8ad30c646eadacba0ffc76ba79aa6ea |
</Accordion>

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

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

***

### iAUD\_Mint\_event

Mint events from Iron Bank v1's iAUD (interest-bearing Australian Dollar) market on Ethereum, recording when users deposit AUD stablecoins to receive iAUD tokens. Used for analyzing lending supply, liquidity provision patterns, and interest accrual on AUD-denominated 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount         | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ---------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 0xfcd135a008bd38686846ea8f65fcab314dac194a | 235        | 16889325      | 6125059950126247518973 | 59074028994212 | 2023-03-23T09:22:59.000Z | 0x6a418d70120c5c55d23cfcc19b30605ad7e80b96a618d1e065c66c7653ebfa77 |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 0xd67da12dc33d9730d9341bbfa4f0b67d0688b28b | 573        | 15265813      | 1637215820054050192    | 16263340976    | 2022-08-02T22:33:25.000Z | 0x9e52a21dcccfc8c7d5dde4c944814ad988953a426a0a1a0be49e48cb8dfef7fe |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 0xd67da12dc33d9730d9341bbfa4f0b67d0688b28b | 228        | 15265839      | 1637215822655702793    | 16263340953    | 2022-08-02T22:42:11.000Z | 0xc857b7375d2a95b9f8b0ab8a6589932ee5f9126b5aa3d7e6d143ac95b49e9734 |
</Accordion>

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

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

***

### iAUD\_NewReserveFactor\_event

Reserve factor parameter changes for the iAUD (Iron Bank Australian Dollar) market on Ethereum, tracking adjustments to the protocol's revenue allocation percentage. Used for monitoring governance decisions affecting protocol economics and fee structure 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 152        | 13085408      | 2021-08-24T02:40:46.000Z | 0xcfae4c14ece0646c2d64f20bd7886dd97fdec0a1c66264b2b055f7475676a040 | 100000000000000000           | 0                            |
</Accordion>

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

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

***

### iAUD\_Redeem\_event

Redemption events from Iron Bank's AUD-pegged interest-bearing token (iAUD) on Ethereum, tracking withdrawals where users burn iTokens to receive underlying AUD stablecoin collateral. Contains redeemer addresses, amounts of both underlying assets and iTokens exchanged, useful for analyzing lending position exits and liquidity 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount       | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 303        | 0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967 | 16989413      | 2023-04-06T11:55:59.000Z | 579532750905364378189  | 5575686596196    | 0xe0bb33deb70d43bb78ac4f82bc836b8f921df787f5acdf1de778244bf24dadda |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 257        | 0xd67da12dc33d9730d9341bbfa4f0b67d0688b28b | 15265831      | 2022-08-02T22:39:19.000Z | 1637215822655702793    | 16263340968      | 0x10f44012232d14024072f055430277722650a5b3390c990960ae478733246cc5 |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 62         | 0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967 | 16693879      | 2023-02-23T21:51:23.000Z | 7875472880254706491911 | 77312727168620   | 0x9d0852d89a843f88cec0eb16fe7d4d333da478bf9d6132269911c9e212ca15f8 |
</Accordion>

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

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

***

### iAUD\_RepayBorrow\_event

Loan repayment events from Iron Bank v1's iAUD market on Ethereum, tracking borrower repayments with amount paid, remaining account balance, and protocol-wide total borrows. Used for analyzing borrowing activity and debt management in the AUD-denominated lending pool.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount        | block\_timestamp         | in\_totalBorrows           | transaction\_hash                                                  | in\_accountBorrows   |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ---------------------- | ------------------------ | -------------------------- | ------------------------------------------------------------------ | -------------------- |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 0xea7f097368b777ea552706fe261d8d5ee14af28c | 46         | 0xea7f097368b777ea552706fe261d8d5ee14af28c | 15501662      | 4750319552347599817777 | 2022-09-09T08:12:02.000Z | 3546558560278707831783687  | 0xd4d25db0f28a12a2736f2c5ddc58a07c5fd4ff43e79bab66b3394638d10c796c | 0                    |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 0xc293d420a4821ae485a9582390e46a4f56dcea2e | 113        | 0xc293d420a4821ae485a9582390e46a4f56dcea2e | 15502553      | 6383143232770868219501 | 2022-09-09T11:40:04.000Z | 3540200163751753869223850  | 0xda666247b4b89723234ee29adaedc527c36af9711245e8f34f2c6dbfd365f294 | 64190682646310212520 |
  | 0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa | false   | 0x5ade7e4c73cea272f6eabd36e5d3941b9784f49c | 383        | 0x5ade7e4c73cea272f6eabd36e5d3941b9784f49c | 14398346      | 9807000000000000000000 | 2022-03-16T15:07:08.000Z | 19461263323090123694388825 | 0x758e544a32e65116a35c8a713dbc46c7397bbc8691aa4de9996752eaa08a17bf | 18249342832720094434 |
</Accordion>

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

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

***

### iCHF\_AccrueInterest\_event

Interest accrual events for Iron Bank's iCHF (Swiss Franc) lending market on Ethereum. Tracks periodic interest calculations with cash balances, total borrows, borrow index, and accumulated interest for analyzing lending pool performance.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior              | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows           | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | -------------------------- | ------------------- | ------------------------ | -------------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 370        | 15788255      | 52647162753727730971405675 | 1034624319986946582 | 2022-10-20T08:56:11.000Z | 8390389261551055215131555  | 0xd6bdddbe3c29bfc79bf164aa182432e803e6014eabd27eb991e91dbaae3a561b | 1729852315488723488041  |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 42         | 15710836      | 51881638953569685820402520 | 1033943463604202620 | 2022-10-09T13:28:35.000Z | 9150387859374717226022125  | 0xfc23b60b9b9c111fd00859618a08f2a069184c78e799958d0ee096073baf3c8a | 674045963806522934744   |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 239        | 13452742      | 19068587438775454748699906 | 1005992220611609278 | 2021-10-20T05:23:33.000Z | 18961118476349177377201297 | 0x2c735d0adf7a6e31db41b450cf223ec314abdf0a6624baa3dcf2ed57631a456e | 13806593618954043812459 |
</Accordion>

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

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

***

### iCHF\_Borrow\_event

Borrow event logs from the Iron Bank v1 CHF (Swiss Franc) stablecoin market on Ethereum. Tracks individual borrow transactions with borrower addresses, borrowed amounts, cumulative account borrows, and protocol-wide total borrows for analyzing CHF lending activity and debt 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount           | in\_totalBorrows           | transaction\_hash                                                  | in\_accountBorrows         |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | -------------------------- | -------------------------- | ------------------------------------------------------------------ | -------------------------- |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 17         | 0x0a0b06322825cb979678c722ba9932e0e4b5fd90 | 16164284      | 2022-12-11T21:54:59.000Z | 20010358360528965945467    | 1033288476627406379707287  | 0xf319703ac2944f43128ffe06dd6f0e9551849a364accbaeb769dea65777d6b61 | 961192361847178646654417   |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 33         | 0x0a0b06322825cb979678c722ba9932e0e4b5fd90 | 16164319      | 2022-12-11T22:01:59.000Z | 24694577263647565207442    | 1057983170407081012099273  | 0x05a7738d9090ada1807b10a1c170557f6d5fc07b06d8a2be629742ac729d17cf | 985887047497126632547962   |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 279        | 0xc803698a4be31f0b9035b6eba17623698f3e2f82 | 14564455      | 2022-04-11T12:39:11.000Z | 10000000000000000000000000 | 45520026458445226405125294 | 0x7dbb5af3cd7f1e2f0b38900b352fc4a87fad68879ff241515237c5cda4eb28f1 | 10000141570660166530859481 |
</Accordion>

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

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

***

### iCHF\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iCHF_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iCHF\_Mint\_event

Mint events from the Iron Bank v1 iCHF (Swiss Franc) lending market on Ethereum, capturing when users deposit CHF-pegged stablecoins to receive interest-bearing iCHF tokens. Records minter addresses, underlying CHF amounts deposited, and corresponding iCHF tokens minted for tracking lending protocol supply and liquidity provider 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount          | in\_mintTokens  | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ----------------------- | --------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 0x5275817b74021e97c980e95ede6bbac0d0d6f3a2 | 26         | 14936806      | 87715627310797044926004 | 870183418900849 | 2022-06-10T05:48:45.000Z | 0x03981ea74b8dd46a4721d6f62e52373c3953c8dfeeec1763e191bbda478eb95a |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 0x06355362cd8ab65f6349535d0aac83dd911c3d54 | 157        | 16965355      | 92210006445479450539    | 913026995776    | 2023-04-03T01:49:35.000Z | 0x2f3b5b4c96775a0db38dadb5267c2ff18ec8d69fa0662825470adb16328cb2fc |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 0x24749aedf18208ab74a8110e07e820286bb5acf8 | 544        | 14795393      | 169595779643772514673   | 1682736538495   | 2022-05-17T23:22:23.000Z | 0xc92202b33a03b16b66ee05627585eb256f5291761b7894125f9ad410aa913a34 |
</Accordion>

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

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

***

### iCHF\_NewReserveFactor\_event

Reserve factor parameter changes for Iron Bank's CHF (Swiss Franc) market on Ethereum. Tracks adjustments to the protocol's reserve percentage, which determines how much interest is retained versus distributed to suppliers.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 170        | 13085408      | 2021-08-24T02:40:46.000Z | 0xcfae4c14ece0646c2d64f20bd7886dd97fdec0a1c66264b2b055f7475676a040 | 100000000000000000           | 0                            |
</Accordion>

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

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

***

### iCHF\_Redeem\_event

Redemption events from Iron Bank's iCHF (Swiss Franc) interest-bearing token market on Ethereum, recording when users withdraw underlying CHF stablecoins by burning iCHF tokens. Contains redeemer addresses, token amounts burned, and underlying asset amounts received for tracking supply changes and withdrawal 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount        | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 668        | 0x1cc481ce2bd2ec7bf67d1be64d4878b16078f309 | 13725279      | 2021-12-02T04:30:15.000Z | 9534691129917476180381  | 94968257866797   | 0xce302c689c1a6f653a137420cad699004b25d28b24b9bebd3cae8c9578760f39 |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 41         | 0x1cc481ce2bd2ec7bf67d1be64d4878b16078f309 | 13681931      | 2021-11-25T06:32:03.000Z | 10253209245733980357530 | 102138002532925  | 0xd6d2e958b83d971bb604eb3f13930d5a847ab1cc0a346c9df37fb2c870dc6be4 |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 309        | 0x1cc481ce2bd2ec7bf67d1be64d4878b16078f309 | 16989413      | 2023-04-06T11:55:59.000Z | 536248680659293579464   | 5309398856149    | 0xe0bb33deb70d43bb78ac4f82bc836b8f921df787f5acdf1de778244bf24dadda |
</Accordion>

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

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

***

### iCHF\_RepayBorrow\_event

Loan repayment events for CHF (Swiss Franc) stablecoin borrows on Iron Bank v1 (Ethereum), tracking repayment amounts, updated account balances, and total protocol debt. Used for analyzing borrower repayment behavior and CHF lending pool health.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount           | block\_timestamp         | in\_totalBorrows           | transaction\_hash                                                  | in\_accountBorrows       |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------- | ------------------------ | -------------------------- | ------------------------------------------------------------------ | ------------------------ |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 0x9ae50bd64e45fd87dd05c768ff314b8fe246b3ff | 190        | 0x9ae50bd64e45fd87dd05c768ff314b8fe246b3ff | 15832612      | 1143000000000000000000    | 2022-10-26T13:41:23.000Z | 8391778329679458652444486  | 0xca40c8be67721d649099efeeffc6f828565186404d8f0113cf314f2d5899a875 | 95298777387874985        |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 0x8338aa899fb3168598d871edc1fe2b4f0ca6bbef | 207        | 0x8338aa899fb3168598d871edc1fe2b4f0ca6bbef | 15315098      | 1311422000000000000000000 | 2022-08-10T15:18:48.000Z | 9811495791734799891020229  | 0x42af74da921e803e89da3b69e9d4223b12f0a14c36655e85a8b125a7ddf45fbb | 3336207438803974375      |
  | 0x1b3e95e8ecf7a7cab6c4de1b344f94865abd12d5 | false   | 0x38abab9766e0b27d2912718a884292b8e7eb2803 | 48         | 0x38abab9766e0b27d2912718a884292b8e7eb2803 | 15313912      | 772099000000000000000000  | 2022-08-10T10:51:25.000Z | 10122860280177945325170635 | 0xa2e73fe79fda9ab64119be335664710465565087c480b9d07e0f49166e52766f | 549096462393927759081003 |
</Accordion>

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

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

***

### iCRV\_AccrueInterest\_event

Interest accrual events for the Iron Bank V1 CRV (Curve DAO Token) lending market on Ethereum, tracking accumulated interest, borrow index updates, cash reserves, and total borrows per block. Used for analyzing lending pool yield generation and borrow rate dynamics.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior             | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows         | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------- | ------------------- | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ----------------------- |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 413        | 13388503      | 1076425716340687772845103 | 1003807692918428933 | 2021-10-10T03:26:31.000Z | 798384365912476143517407 | 0xf06e372cab3314c4eeae4d1fdf97ed24be315343d5b853c06f2e3e31c9332b25 | 299693430170001466060   |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 303        | 13390705      | 1061425716340687772845103 | 1003930885222964741 | 2021-10-10T11:43:33.000Z | 813484188513176512967899 | 0x7280968d6efb5f0acb33ab5ca358d6b3386fb2c2b951817dc195cd376e394e07 | 99822600700369450492    |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 3          | 13391958      | 1063448426121635615061342 | 1004000824995407879 | 2021-10-10T16:23:52.000Z | 811518009945685960044376 | 0x396c3811d1f0cf53fd455e39d3faf34ec76fb86c2f15aafb265f429b22ce2654 | 56531213457289292716    |
</Accordion>

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

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

***

### iCRV\_Borrow\_event

CRV token borrow events from Iron Bank v1 lending protocol on Ethereum, tracking borrower addresses, borrowed amounts in wei, account-level borrow balances, and protocol-wide total borrows. Used for analyzing lending activity, borrower behavior, and CRV liquidity utilization in the Iron Bank 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount       | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows     |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------- |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 36         | 0x87d5fe87c5a32146bd59d0a273c1743ad7cd4be3 | 14176601      | 2022-02-10T05:58:19.000Z | 26619904009245101747   | 283436485819972735924401 | 0x8dbd6a8a8d8086b726f80e0bfba1ba5ea90cb2da6955b55f38d26512b0323c8f | 26619904009245101747   |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 63         | 0xff0690db4f3225a5fa6b89324c72a9c6c8811089 | 16134801      | 2022-12-07T19:05:23.000Z | 209797078016357053056  | 12235292660503018000205  | 0x2543c7d4de2cd8cfcdf16999405b5007a942e5243d4b9a1e08b54b1c330c4aad | 209797078016357053056  |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 284        | 0xae7a6eed7d9de7e3ab7b042bc67545b39caaa985 | 18316676      | 2023-10-10T01:07:59.000Z | 1700000000000000000000 | 3958957507708362405287   | 0xbb328a979a481ef01c891a654d875eef6191243204cadc6ee7980ff30f917c77 | 1700006488842106425833 |
</Accordion>

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

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

***

### iCRV\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iCRV_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iCRV\_Mint\_event

Mint events from the Iron Bank CRV (iCRV) interest-bearing token on Ethereum, recording when users deposit CRV tokens and receive iCRV in return. Tracks depositor addresses, underlying CRV amounts deposited, and iCRV tokens minted for analyzing Iron Bank liquidity provision and utilization 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount         | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ---------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 0x2053b0a5ebcff8d642947ea8bf7d7e1fd62ebba6 | 460        | 15225500      | 124473603172196958634  | 1168113390580  | 2022-07-27T16:02:20.000Z | 0x16b7980130ddbe80b9b5c8ba02c2741d9e5fc29a8e6d9c562c02d328f51ca17e |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 0x6dd91bdab368282dc4ea4f4befc831b78a7c38c0 | 69         | 14874930      | 3326490189773572961569 | 31351556992768 | 2022-05-30T21:33:39.000Z | 0x8789d2b5d41757a6c7f80ba25ed8db94cbd9ed0d3dfd72b20e0cc3978fcc0b70 |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 0x6dd91bdab368282dc4ea4f4befc831b78a7c38c0 | 289        | 14871363      | 2010850163928378474127 | 18952555885765 | 2022-05-30T07:40:19.000Z | 0xd4cc0986382e8e0a874bb234cf25c816f602d1a76abf13f695010ad696859326 |
</Accordion>

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

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

***

### iCRV\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank CRV market (iCRV) on Ethereum, tracking adjustments to the protocol's risk management settings. Used for monitoring governance decisions that affect the percentage of interest reserved by 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 115        | 13217741      | 2021-09-13T13:55:52.000Z | 0x8f0dfdec5894e9d134f2b82c4fea79ad6d5f65b34692ec5578edd835b3bf2d35 | 200000000000000000           | 0                            |
</Accordion>

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

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

***

### iCRV\_Redeem\_event

Redemption events from the Iron Bank iCRV (Curve DAO Token) lending market on Ethereum, recording when users withdraw their underlying CRV tokens by burning iCRV tokens. Used for tracking lending market withdrawals, liquidity analysis, and interest-bearing token redemption 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount        | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 361        | 0x535ec24807642ce11ea840ae828d27430f3cba2a | 15386767      | 2022-08-21T23:01:24.000Z | 130535500309003497096   | 1223541592379    | 0xe5193f94852f7b6e257a3193ea17c74c14d545c9edadbde36431d0aff9cc3764 |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 426        | 0x792b2ecdc8c7368b2ff2d17456eff4f42d3c0456 | 14525835      | 2022-04-05T12:17:53.000Z | 723807790342703180519   | 6860463352165    | 0x504526c27ef35a891016024d2b056522c13dc94723003de54884ed74d2147ada |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 87         | 0x4149f044998bac5407ff1a194dc568af905bc480 | 13785132      | 2021-12-11T17:14:43.000Z | 56907425424646600226194 | 563311855358021  | 0xb641605d1369ad8d5dd52dfd1943cfd408ca68982723818713d98b0ef85c531f |
</Accordion>

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

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

***

### iCRV\_RepayBorrow\_event

Borrow repayment events for the iCRV market (CRV token) on Iron Bank v1 Ethereum lending protocol. Tracks debt repayments with payer/borrower addresses, repayment amounts, and updated total borrows for analyzing loan servicing and liquidation 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount         | block\_timestamp         | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows      |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ----------------------- | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ----------------------- |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 0xacdc50e4eb30749555853d3b542bfa303537ada5 | 425        | 0xacdc50e4eb30749555853d3b542bfa303537ada5 | 14423104      | 13712614890507743379895 | 2022-03-20T11:51:55.000Z | 31393849468578215490987  | 0x9ac17236a3ceb87b4a1679d5227b6afad8e0cd618acd850777f80e7e9327dfd9 | 0                       |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 0x35a807f9dd68c7b03a992477f85cf5a08ee9a69e | 368        | 0x35a807f9dd68c7b03a992477f85cf5a08ee9a69e | 13816077      | 552251385357734972976   | 2021-12-16T11:58:53.000Z | 442974301530560809381498 | 0x7d59f2d2b43184b100f0c2c49d5d1b534504a2819c94ec18daa0c3fcb8c107aa | 33126884584167487046891 |
  | 0xb8c5af54bbdcc61453144cf472a9276ae36109f9 | false   | 0xdeb9553eed4a1e9896000071e50a19ec83301574 | 654        | 0xdeb9553eed4a1e9896000071e50a19ec83301574 | 15525142      | 150841391372241274491   | 2022-09-13T05:18:10.000Z | 8768612881416913194675   | 0x75e55b82f7184d12eff0d74b29a6e91184e19419bb7b6b44653e9c74e61167e7 | 504816725422659133147   |
</Accordion>

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

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

***

### iCUSDC\_AccrueInterest\_event

Interest accrual events from Iron Bank v1's iCUSDC market on Ethereum, tracking accumulated interest, borrow index changes, and total borrows for USDC lending pool. Used for analyzing yield generation, utilization rates, and interest rate model behavior 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior    | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ---------------- | ------------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 108        | 12739205      | 4358983664733    | 1000000000000000000 | 2021-07-01T02:43:48.000Z | 0                | 0x5c10c0dd3a3ad862a8ada6741a08e56184d57dbe053397fe1602ca84bd3c4dbc | 0                       |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 207        | 11980870      | 185009969266323  | 1000000000000000000 | 2021-03-05T21:45:15.000Z | 0                | 0xb9a7d605bb6256009a237d32f61329af277526fd75967cdb456fecaa469ecb53 | 0                       |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 486        | 13359273      | 3229144166533476 | 1000023144729755844 | 2021-10-05T13:10:18.000Z | 99345883         | 0x1590b08adeb84b615976d8f9a146856f413182682bf91b33abbe8bf40f070d05 | 0                       |
</Accordion>

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

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

***

### iCUSDC\_Borrow\_event

Borrow event logs from Iron Bank V1's USDC Collateral (iUSDC) market on Ethereum, capturing individual borrow transactions with amounts, borrower addresses, and cumulative borrow balances. Used for tracking borrowing activity, calculating utilization rates, and analyzing user borrowing patterns in the Iron Bank lending 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 201        | 0x7420fa58ba44e1141d5e9adb6903be549f7ce0b5 | 12861287      | 2021-07-20T04:32:43.000Z | 4358900000000    | 4358900000000    | 0xc7033601b74355ea93d4fc6ca0b01507f8bd54afefdedd8e534fd1b1657f236b | 4358900000000      |
</Accordion>

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

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

***

### iCUSDC\_Mint\_event

Mint event logs from Iron Bank v1's iCUSDC (interest-bearing USDC) market on Ethereum, recording deposits where users supply USDC and receive iCUSDC tokens in return. Used for analyzing lending protocol supply activity, user deposit patterns, and market liquidity 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount | in\_mintTokens  | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | -------------- | --------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 0xf5bf3b7b7d03efd34ba1e1bcf1694080975d8a1c | 193        | 12802318      | 668448113190   | 66844811319000  | 2021-07-10T22:36:16.000Z | 0x53c149ead0a217ab696c9d84b9a047e291e8726a827a7d30ebe0d2bd0a1ee9dc |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 0xf5bf3b7b7d03efd34ba1e1bcf1694080975d8a1c | 339        | 12802065      | 612267059950   | 61226705995000  | 2021-07-10T21:34:42.000Z | 0x36cbd342c79ff589433fc2ec7c934ae15020e0f98a57718a2effd8b916c7a99d |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 0xf5bf3b7b7d03efd34ba1e1bcf1694080975d8a1c | 91         | 12802681      | 1261064469164  | 126106446916400 | 2021-07-10T23:54:58.000Z | 0x509c547e97e76243d83a3e2c4f3d8f17382c84b1354ee02c3dda12eff5d58200 |
</Accordion>

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

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

***

### iCUSDC\_NewReserveFactor\_event

Reserve factor adjustment events for Iron Bank's USDC market (iCUSDC) on Ethereum, tracking protocol fee percentage changes. Used for analyzing Iron Bank's risk management and revenue allocation decisions 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 56         | 13307330      | 2021-09-27T10:45:25.000Z | 0x01ba133d499275703b6500da0a1bf7af7d2744595bc20bf686e7ebbb4d394bc2 | 1000000000000000000          | 100000000000000000           |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 232        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 100000000000000000           | 50000000000000000            |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 91         | 11795746      | 2021-02-05T10:40:03.000Z | 0xb727167c14b2c5a06cbe4ebdb489443a08b9e6489b890333c0563e78d30f0005 | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iCUSDC\_Redeem\_event

Withdrawal events from Iron Bank v1's iCUSDC (interest-bearing USDC) market on Ethereum, tracking when users redeem their iTokens for underlying USDC collateral. Records redeemer addresses, amounts redeemed in both underlying tokens and iToken units for analyzing Iron Bank liquidity movements and user redemption 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount | in\_redeemTokens  | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ----------------- | ------------------------------------------------------------------ |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 493        | 0x37be92f21943dc91629d884f8c41c8203024633a | 13359273      | 2021-10-05T13:10:18.000Z | 800000000000000  | 79998390239312302 | 0x1590b08adeb84b615976d8f9a146856f413182682bf91b33abbe8bf40f070d05 |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 478        | 0x37be92f21943dc91629d884f8c41c8203024633a | 13199822      | 2021-09-10T19:02:12.000Z | 817371204211222  | 81735475706082455 | 0x06c63eef705fb80d7b74e18dfaf5e69f2432ca7e610d3a3ece78ec0614bada61 |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 27         | 0x37be92f21943dc91629d884f8c41c8203024633a | 13493800      | 2021-10-26T15:29:38.000Z | 557534258656061  | 55752303994691563 | 0xb5d5fc28d31dd017cb0b9229e18e1100fe29cebb5cbbfbd8a08ae2f18b370b7e |
</Accordion>

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

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

***

### iCUSDC\_RepayBorrow\_event

Borrow repayment events for the USDC market (iCUSDC) on Iron Bank v1 Ethereum lending protocol. Tracks repayment transactions with payer and borrower addresses, repaid amounts, and updated borrow balances for analyzing debt servicing patterns and protocol health.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0x950027632fbd6adadfe82644bfb64647642b6c09 | false   | 0x7420fa58ba44e1141d5e9adb6903be549f7ce0b5 | 224        | 0x7420fa58ba44e1141d5e9adb6903be549f7ce0b5 | 12861366      | 4358900000000   | 2021-07-20T04:49:13.000Z | 99345848         | 0x7bbd85e2d3f685f43905b5ad556f5339f1afac36686187e4619f637c60c4c7c3 | 99345849           |
</Accordion>

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

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

***

### iCVX\_AccrueInterest\_event

Interest accrual events from Iron Bank's CVX (Convex) lending market on Ethereum, tracking cash reserves, outstanding borrows, accumulated interest, and borrow index updates. Used for analyzing lending pool performance and interest rate dynamics for CVX collateral 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior           | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ----------------------- | ------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 343        | 15345069      | 6160242275457694451138  | 1027949563093639090 | 2022-08-15T08:42:57.000Z | 88218200201433891801   | 0xe6ddbb9fab0dc7eee747d19177713dbb48f3fcc9aab7a97fc3b18718786e4261 | 6269852827544196        |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 89         | 16299305      | 7037532776176527855117  | 1065286588407374994 | 2022-12-30T18:13:59.000Z | 5300492144260235606631 | 0x8428e2035a564b3749f926aff7ce49aa283415794a05476d49a96bbd355c037f | 1904915509526910667     |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 425        | 14688469      | 99737573633472639713848 | 1000246141560920028 | 2022-04-30T23:24:07.000Z | 5406769549397777683844 | 0x345aaa1ff0f4ed4013e0c401e39db1131214ec0f62dacec3b96989af3ed3601a | 339520628863730615      |
</Accordion>

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

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

***

### iCVX\_Borrow\_event

Borrow event logs from Iron Bank V1's CVX (Convex Token) market on Ethereum, tracking when users borrow CVX with borrower address, borrow amounts, and cumulative account and protocol-level borrow balances. Used for analyzing CVX borrowing activity, leverage patterns, and debt accumulation trends.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount       | in\_totalBorrows       | transaction\_hash                                                  | in\_accountBorrows     |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------------- | ---------------------- | ------------------------------------------------------------------ | ---------------------- |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 231        | 0x24a30823bd87e785b0c4b3803a2bffd91eb6876f | 15113311      | 2022-07-10T06:36:09.000Z | 1068092104585511613476 | 1128080958328422563123 | 0x374757a8022797ffb7afdc70798bf2f35ec330969046315178ba3e689f39763a | 1068092104585511613476 |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 23         | 0xdc5bb4f6126a5ed7d99af7e56387db717c1042bd | 14639076      | 2022-04-23T04:56:10.000Z | 3000000000000000000000 | 3000000000000000000000 | 0x6779a3a3d4fc211f92803703023d59c2e7abf8c8447a8e339fac50e7a53e1c07 | 3000000000000000000000 |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 143        | 0x71e36f2363499fed2316bc1bd5578cd7d227164f | 15967872      | 2022-11-14T11:07:47.000Z | 1006751025879825738    | 7870474037928971691350 | 0x84c0a9ac58e6fc36dda8025f023fa84d92a4adf17d69a695b2be55d4d33485eb | 1006751025879825738    |
</Accordion>

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

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

***

### iCVX\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iCVX_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iCVX\_Mint\_event

Mint events from Iron Bank's CVX (Convex) interest-bearing token market on Ethereum, recording when users deposit CVX and receive iCVX tokens in return. Captures minter addresses, underlying CVX amounts deposited, and iCVX tokens minted for analyzing Iron Bank liquidity provision and CVX market dynamics.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount         | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ---------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 0xcba1a275e2d858ecffaf7a87f606f74b719a8a93 | 639        | 15566400      | 121072496517926902296  | 1192161861735  | 2022-09-19T08:33:35.000Z | 0x0982f70beb73e0df5a9f6abe1b56b15b711b9f71faa19cc89779af1102ee31c2 |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 238        | 16431617      | 2761000000000000000000 | 26536773473962 | 2023-01-18T05:31:59.000Z | 0xe0f775a75c07162194f4b0392561fabf72593b1b0430d2be1a087f9074b7f54d |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 193        | 16467681      | 1224000000000000000000 | 11717748133900 | 2023-01-23T06:22:47.000Z | 0x50fff82b485ec55c02b165b48d86ad8240e91cf7631df220e3c9c253f73acb56 |
</Accordion>

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

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

***

### iCVX\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank CVX (Convex) market on Ethereum. Tracks adjustments to the protocol's reserve requirements with old and new mantissa values for analyzing risk parameter governance decisions.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 465        | 14486784      | 2022-03-30T09:23:49.000Z | 0x0ce2167561e028a7bba182be5d5dd4a18ce15d37bee255fbcef08a267f2fa096 | 200000000000000000           | 0                            |
</Accordion>

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

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

***

### iCVX\_Redeem\_event

Redemption events from Iron Bank's CVX (Convex) interest-bearing token market on Ethereum, capturing when users withdraw underlying CVX tokens by burning iCVX. Records include redeemer address, amount of underlying CVX withdrawn, and corresponding iCVX tokens burned for analyzing liquidity movements and user exit 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount       | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 429        | 0xcba1a275e2d858ecffaf7a87f606f74b719a8a93 | 14688469      | 2022-04-30T23:24:07.000Z | 5116000000000000000000 | 51159587632459   | 0x345aaa1ff0f4ed4013e0c401e39db1131214ec0f62dacec3b96989af3ed3601a |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 179        | 0x6dd91bdab368282dc4ea4f4befc831b78a7c38c0 | 14881187      | 2022-05-31T22:05:25.000Z | 562523168054922454261  | 5621406741963    | 0xc7a707e207c9138f50ae98c88af2edf154941baa5236af13de88707f88aa7ac2 |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 52         | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 17442681      | 2023-06-09T12:29:59.000Z | 260000000000000000000  | 2347202340050    | 0x632675c76e206204addd5bfccf311360ef48517ff9c7f89546f4dfa82e1d6148 |
</Accordion>

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

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

***

### iCVX\_RepayBorrow\_event

Loan repayment events from Iron Bank's CVX (Convex) market on Ethereum, tracking borrowers repaying debt with amounts, remaining balances, and updated total borrows. Used for analyzing debt repayment patterns and borrower behavior in the CVX lending market.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount        | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_accountBorrows    |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ---------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | --------------------- |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 0x154001a2f9f816389b2f6d9e07563ce0359d813d | 136        | 0x154001a2f9f816389b2f6d9e07563ce0359d813d | 16288379      | 1590000000000000000000 | 2022-12-29T05:38:23.000Z | 5298587228750708695964 | 0x987d5e8a2ad9217a25cc2604b66f32373249f024b5a772654e5f3f48b26e5d4f | 620544616622978958026 |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 0xcd04183a0220e28a6197dfcc78081dc2e0815ac7 | 243        | 0xcd04183a0220e28a6197dfcc78081dc2e0815ac7 | 15049297      | 800043902223038183961  | 2022-06-30T07:45:24.000Z | 4339704092894132976946 | 0x13f2de038f7bbffe74a7b903c00ef909471ee15526e4acd20857382a455360e9 | 0                     |
  | 0xe0b57feed45e7d908f2d0dacd26f113cf26715bf | false   | 0x6e868846b2182235c16fd122fcd44739e55a58e4 | 159        | 0x6e868846b2182235c16fd122fcd44739e55a58e4 | 16277094      | 89467200000000000000   | 2022-12-27T15:51:59.000Z | 6885264221032838691304 | 0x7946a0a9a7fbdea1143a4ebc8e2ee1bac489bae659728128bcbdd6f778e8c15b | 585094349941356564248 |
</Accordion>

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

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

***

### iDAI\_AccrueInterest\_event

Interest accrual events from Iron Bank's DAI lending market (iDAI) on Ethereum, capturing accumulated interest, borrow index updates, cash reserves, and total borrows. Used for tracking lending protocol yield generation and borrowing costs 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior               | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows           | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | --------------------------- | ------------------- | ------------------------ | -------------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 119        | 14410341      | 195998705994880173687397017 | 1087985886823093062 | 2022-03-18T12:11:56.000Z | 16461072806610025295662076 | 0x2030ff267b1b56fdad7257e247e0ec4063c9d3909b0626aaa8271d418d2935d9 | 32914746009294511646    |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 68         | 14409243      | 195998705994880173687397017 | 1087981539480855921 | 2022-03-18T08:07:33.000Z | 16461023835931307919575057 | 0x372c8498575957ff54c0a86a0b6544890652a6bed028cf4f73d3821849e86f44 | 259426420142517579560   |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 442        | 14409603      | 195998705994880173687397017 | 1087982964836522755 | 2022-03-18T09:21:31.000Z | 16461039891864016001150430 | 0xdd2d9d94fda25fd634e99e0119342e92c35d8579885703592bf8f05bed260036 | 16055932708081575373    |
</Accordion>

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

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

***

### iDAI\_Borrow\_event

DAI borrow events from Iron Bank v1 lending protocol on Ethereum, tracking individual borrow transactions with borrower addresses, amounts borrowed, and running account and protocol-wide borrow balances. Used for analyzing lending activity, borrower behavior, and protocol utilization 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount        | in\_totalBorrows           | transaction\_hash                                                  | in\_accountBorrows         |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | -------------------------- | ------------------------------------------------------------------ | -------------------------- |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 170        | 0x1ce99932fd278e00911814dc4bd403e1293d8ed2 | 11852421      | 2021-02-14T03:37:39.000Z | 2000000000000000000000  | 18295270862511612636527888 | 0x99eff3067ce04da225cd971e23955dd7dfca185732fe0fdf32c34f4fbf27dac5 | 18020839052635384796116    |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 483        | 0x468cb54a3821d8b0129c42ea6adf12748d97fd98 | 14207327      | 2022-02-14T23:57:08.000Z | 100000000000000000000   | 24316140688246904024584333 | 0x1ca377f95162e67961c35f9c8683c577ccba0ff0f3c845e0c5a5963ee0cbe0c4 | 100000000000000000000      |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 59         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 14203488      | 2022-02-14T09:29:12.000Z | 30148493363865666101933 | 19264381207375853950946428 | 0x24f4916f6edb9a1f53419d086fbd1ab719fac488d099f83df4d7192422ce89d9 | 12630174433099953006371807 |
</Accordion>

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

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

***

### iDAI\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iDAI_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iDAI\_Mint\_event

Mint event logs from Iron Bank's iDAI (interest-bearing DAI) market on Ethereum, recording when users supply DAI and receive iDAI tokens in exchange. Used for tracking lending market deposits, calculating deposit volumes, and analyzing Iron Bank liquidity provision 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount            | in\_mintTokens    | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------------- | ----------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 226        | 12644573      | 13620900000000000000000   | 131200279249252   | 2021-06-16T09:04:05.000Z | 0x4d4d1a94d09d7b55d6b2907dfd46b21f4eddd7f34f843813dde4b9bd803974ed |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 172        | 12644847      | 1136969746852666478854526 | 10951576550541534 | 2021-06-16T10:04:39.000Z | 0x4b4eb9ebcba24c3d429ac4de7d0c559b1299fc8f6c24bc53e2abc3259e888c52 |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 295        | 12644749      | 2000000000000000000000000 | 19264518682764003 | 2021-06-16T09:43:31.000Z | 0x0eb18ffc3831e02f07847e65c7e46ef5bfcb1bde703d27301fcd380bdbf34eb2 |
</Accordion>

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

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

***

### iDAI\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank DAI (iDAI) lending market on Ethereum. Records governance adjustments to the protocol's fee percentage, useful for analyzing revenue model changes and protocol economics 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 292        | 14925548      | 2022-06-08T07:44:15.000Z | 0x5805e6f9e53c636adc0723f95ac6a478b80bf70a2f4e4cc5de7a489d5e7748d2 | 500000000000000000           | 100000000000000000           |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 119        | 15132514      | 2022-07-13T05:47:06.000Z | 0xb9aacc820e243ac186b2cdc3a3b770b666561f3f733bd953db5edca7d5a853f7 | 100000000000000000           | 500000000000000000           |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 141        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iDAI\_Redeem\_event

Redemption events from Iron Bank's iDAI lending market on Ethereum, tracking when users withdraw their deposited DAI by burning iDAI interest-bearing tokens. Used to analyze lending withdrawals, liquidity movements, and calculate time-weighted deposit durations for Iron Bank's DAI market.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount         | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ---------------- | ------------------------------------------------------------------ |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 123        | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 12695418      | 2021-06-24T06:58:27.000Z | 349229704477771107996027 | 3362255010694817 | 0x1b9be99180017a5ff707a4ad82b7b1f02eaf30a9f614dacd6f121fd13cf52902 |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 173        | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 12697129      | 2021-06-24T13:35:04.000Z | 1546597255932374247934   | 14889791753390   | 0x6d885b477ea44dc130fd7e4f3464fb7659ad925137bd2f58a0d36880c14f5c81 |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 205        | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 12698996      | 2021-06-24T20:32:01.000Z | 61231358877360608601407  | 589491083329433  | 0xa75de7c6110f677563a7ff9bdd50bd5b227d129f0851096b8b53cc03ff5389cc |
</Accordion>

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

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

***

### iDAI\_RepayBorrow\_event

Borrow repayment events for the iDAI market on Iron Bank (Cream Finance fork) on Ethereum. Tracks DAI loan repayments with payer, borrower addresses, repayment amounts, and updated account balances for analyzing lending protocol debt management.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount           | block\_timestamp         | in\_totalBorrows          | transaction\_hash                                                  | in\_accountBorrows        |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------- | ------------------------ | ------------------------- | ------------------------------------------------------------------ | ------------------------- |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 0xcfcce06af0ee209dfa340247199057fe619c98c9 | 56         | 0xcfcce06af0ee209dfa340247199057fe619c98c9 | 15376531      | 170141987378354275390238  | 2022-08-20T08:19:52.000Z | 5249513802462607960110169 | 0x0e6253715bc46b6fee7b98e3a541a718e0dd8afa93bd632e0809a274b752cc66 | 0                         |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 0x2ead6dd0706c2d95c63ca26b39222a54f058d285 | 87         | 0x2ead6dd0706c2d95c63ca26b39222a54f058d285 | 11779496      | 10000000000000000000000   | 2021-02-02T22:32:49.000Z | 8946872325841766261414366 | 0x7f0fee6f19fd4d6e0ecf462c3301331dbaf74edf45304b4b60fdd0dc060ee3a2 | 25969954899923085750384   |
  | 0x8e595470ed749b85c6f7669de83eae304c2ec68f | false   | 0x5f5cd91070960d13ee549c9cc47e7a4cd00457bb | 265        | 0x5f5cd91070960d13ee549c9cc47e7a4cd00457bb | 11778954      | 1006540887757329458373749 | 2021-02-02T20:28:54.000Z | 8110300689562921156233859 | 0xdb8c2bc1b92f172043e62b640cf673c6a8c05228e4c7531e97ead0ff47a4c69e | 7982567833332489563886451 |
</Accordion>

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

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

***

### iDPI\_AccrueInterest\_event

Interest accrual events from Iron Bank's iDPI (DeFi Pulse Index) lending market on Ethereum, capturing periodic updates to borrow index, outstanding debt, and accumulated interest for analyzing lending protocol dynamics and interest rate 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior          | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ---------------------- | ------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 159        | 13712687      | 4926216541928812957637 | 1061926735408471113 | 2021-11-30T04:12:40.000Z | 508311804075175742454  | 0x15836451541150ab0e526d4f5a1d107a4c2609dbcb0a7f219e29daa410dbcb81 | 50435894758004945       |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 187        | 13713352      | 4910188779052076221276 | 1061935294945310786 | 2021-11-30T06:45:03.000Z | 508315901263303649387  | 0xb94d7abfbcd11079b16fb0dd79aad54c463355bf3b8962ec53c85569e8f46e27 | 4097188127906933        |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 203        | 13155637      | 7479881967164128580691 | 1043717056626469398 | 2021-09-03T23:07:13.000Z | 2812619588281530996123 | 0x79c94437bc49c6f068bd371b0b328b8c3f2f5c4f3e31758e2d080887628015b9 | 922704040915756034      |
</Accordion>

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

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

***

### iDPI\_Borrow\_event

Borrow event records from the Iron Bank v1 iDPI (DeFi Pulse Index) market on Ethereum, capturing loan originations with borrowed amounts, account-level debt balances, and protocol-wide total borrows. Used to analyze DPI borrowing activity and debt positions within the Iron Bank lending 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount     | in\_totalBorrows      | transaction\_hash                                                  | in\_accountBorrows    |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | -------------------- | --------------------- | ------------------------------------------------------------------ | --------------------- |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 164        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12497767      | 2021-05-24T15:20:08.000Z | 16673943771696688410 | 468252044544989246824 | 0x52141364c62139fe04390b9170d0b983cf42d7e5b5aacbe95924a45708a041b4 | 468252044544989242604 |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 162        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12497767      | 2021-05-24T15:20:08.000Z | 23391040616381114    | 451578100773292558414 | 0x52141364c62139fe04390b9170d0b983cf42d7e5b5aacbe95924a45708a041b4 | 451578100773292554194 |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 60         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12499434      | 2021-05-24T21:17:54.000Z | 9283586478724363     | 468307746063861593014 | 0xdc9322daf4260111d36bdd0587cf141666db96f7bc2f0ea3a4070265b77a3f1c | 468307746063861588782 |
</Accordion>

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

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

***

### iDPI\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iDPI_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iDPI\_Mint\_event

Iron Bank iDPI (DeFi Pulse Index) token minting events on Ethereum, recording when users deposit underlying assets to receive interest-bearing iDPI tokens. Tracks minter addresses, deposit amounts, and resulting iToken quantities for supply analysis and lending activity monitoring.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount      | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 0xd80ce6816f263c3ca551558b2034b61bc9852b97 | 294        | 12729067      | 2000000000000000000 | 19898762658    | 2021-06-29T12:53:09.000Z | 0x6191c7bcf0ef91370805d0409f5a486de0b0c2ca5b52bd30ac7daf2516e7a011 |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 0x69df3681df7081abb72e0adf097a6bf9664d3286 | 243        | 12728826      | 2000000000000000000 | 19898865997    | 2021-06-29T11:59:16.000Z | 0x5288abf33e5757e3ed59ffac3f98ba0ace604138d89d9aa60fc2af61f41226b6 |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 0xd80ce6816f263c3ca551558b2034b61bc9852b97 | 342        | 15357364      | 366107675714830955  | 3578347118     | 2022-08-17T07:25:24.000Z | 0x48c3be9fb0f8098c1eab65526cbc6221be3f48400933de05d43670420c1cd7ad |
</Accordion>

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

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

***

### iDPI\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank DPI (DeFi Pulse Index) market on Ethereum, tracking protocol fee adjustments over time. Records governance updates to the reserve factor mantissa (scaled by 1e18) that determines what portion of interest accrues to protocol reserves.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 235        | 11735864      | 2021-01-27T05:08:31.000Z | 0xf3ad495ca6d67bb367041dbe515064b2ce0b8b86f00375d352f76c48af8ce4c6 | 50000000000000000            | 0                            |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 222        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 200000000000000000           | 50000000000000000            |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 171        | 16945677      | 2023-03-31T07:23:35.000Z | 0x6d96962d29bd7d9f94cd89e2e70c622fa9d2a4c4036aa21c3287e164066d50ec | 1000000000000000000          | 200000000000000000           |
</Accordion>

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

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

***

### iDPI\_Redeem\_event

Redemption events from the Iron Bank iDPI (DeFi Pulse Index) lending market on Ethereum, recording when users withdraw underlying DPI tokens by burning iDPI tokens. Contains redeemer addresses, amounts withdrawn, and iToken quantities burned for tracking lending market supply 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount      | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 37         | 0xd80ce6816f263c3ca551558b2034b61bc9852b97 | 12808807      | 2021-07-11T22:47:15.000Z | 581844651145956483082 | 5768474751936    | 0xb7c7aa2dd6ee48e168d917c0b3f216c8f788bfc4656c88ffb393d6c4a5825a79 |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 213        | 0xb476a9ea9376b04972b40b40a4ca91d3e5f964a7 | 12490318      | 2021-05-23T11:40:02.000Z | 153048166982096946862 | 1529988483393    | 0x01e66012142815bbe2f92dec3416f96e42f38e7d5b1aa8dbdd3fbaef9fe9b322 |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 342        | 0xd80ce6816f263c3ca551558b2034b61bc9852b97 | 12978222      | 2021-08-07T13:34:00.000Z | 12096737728042064624  | 119173496049     | 0x982adc610e8576e79730cb6d8164051ab526438960e25928623df35dd05aa9e7 |
</Accordion>

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

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

***

### iDPI\_RepayBorrow\_event

Loan repayment events for the DPI (DeFi Pulse Index) market on Iron Bank v1 lending protocol on Ethereum. Tracks repayment transactions with amount paid, updated borrower balances, and protocol-wide total borrows for analyzing debt reduction 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount       | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_accountBorrows     |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | ---------------------- |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 149        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12797736      | 425419800540383376638 | 2021-07-10T05:11:33.000Z | 2692191836805681842205 | 0xf29b6b445de017830254814879520229423a2bdbfaa5fb55dde53c626617e1ff | 2692191836805681654365 |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 360        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13180651      | 2552159078887743781   | 2021-09-07T19:55:34.000Z | 2811234108761132793716 | 0xd48477d1c256856c04f808de1228e3fda7c5f534a881bc6d2d5e24e7ba4c408d | 2811234108761132124522 |
  | 0x7736ffb07104c0c400bb0cc9a7c228452a732992 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 182        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 15012056      | 5452845036606189189   | 2022-06-23T08:28:32.000Z | 170353780731829451197  | 0x501272b0f2c5278e6df457e83a5bb860b3fc1096072690102516275b87017b60 | 74277573269051961466   |
</Accordion>

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

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

***

### iDUSD\_AccrueInterest\_event

Interest accrual events for the DUSD (DUSD stablecoin) market on Iron Bank V1 protocol, tracking borrowing index updates, cash reserves, total borrows, and accumulated interest per block for calculating lending yields and borrower costs.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior           | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ----------------------- | ------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 87         | 13387447      | 11178086153400378355079 | 1042359095925631095 | 2021-10-09T23:19:46.000Z | 221309995685480        | 0xd8183672d4d69ec8c75b4aa7d929e8fab5709f9645a8240ee88f42e6416a4198 | 21702                   |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 166        | 12008984      | 1958530635572021264     | 1026247301623704397 | 2021-03-10T05:48:45.000Z | 2052490495379400668585 | 0x1e852685b6a5205a9548c9e9c2177dfe63bfc06fedb668f5a2effbfe2044a393 | 7005763262606887420     |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 190        | 13286905      | 54007907962973373809    | 1042261226723302584 | 2021-09-24T06:33:11.000Z | 2020675416396397277567 | 0xc3e968863d98536cd2c8b6f932fe973e21712fcf6606844f1befb90cac1d2835 | 17675197042835852230    |
</Accordion>

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

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

***

### iDUSD\_Borrow\_event

Borrow events from Iron Bank's DUSD (Depeg USD) lending market on Ethereum, tracking when users take debt positions with borrowed amounts, account balances, and protocol-wide total borrows. Used for analyzing borrowing activity, debt accumulation patterns, and individual account leverage in Iron Bank v1.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount       | in\_totalBorrows       | transaction\_hash                                                  | in\_accountBorrows     |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------------- | ---------------------- | ------------------------------------------------------------------ | ---------------------- |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 113        | 0xeb66b191f658db14bae39c139ab0f5f7b8c479f9 | 13260584      | 2021-09-20T04:48:47.000Z | 2003000000000000000000 | 2003000219353561425337 | 0xdbe66b764156c9022eed93bdd36fe3b49b65fe827c8c496de0727298220e85e7 | 2003000000000000000000 |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 165        | 0x08f7506e0381f387e901c9d0552cf4052a0740a4 | 11744041      | 2021-01-28T11:31:46.000Z | 100000000000000000000  | 100000000000000000000  | 0x15663e715fd218a997c3ca2f2e075707bd951998e26dae62510e5be6e70c18d3 | 100000000000000000000  |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 72         | 0xb258ad4125e84068f3a47fbbc4f6aced2bc148ec | 12120222      | 2021-03-27T09:09:04.000Z | 9000000000000000000    | 390095058809490932668  | 0x8fc2b8162c5576128d44c56c8157d99ab6bf01bba346b3ae2d26a82303e33af3 | 9000000000000000000    |
</Accordion>

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

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

***

### iDUSD\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iDUSD_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iDUSD\_Mint\_event

Mint events for Iron Bank's iDUSD interest-bearing token on Ethereum, recording the deposit of DUSD stablecoins and the corresponding iDUSD tokens issued to suppliers. Used for tracking lending supply activity and calculating token exchange 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount          | in\_mintTokens  | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ----------------------- | --------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 0x25ba562c31aaca514319f615ed56fa587a9c7ea4 | 193        | 13286905      | 9103213307464536528665  | 88041758478200  | 2021-09-24T06:33:11.000Z | 0xc3e968863d98536cd2c8b6f932fe973e21712fcf6606844f1befb90cac1d2835 |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 0x08f7506e0381f387e901c9d0552cf4052a0740a4 | 164        | 11745104      | 48801000000000000000000 | 488009917990127 | 2021-01-28T15:31:15.000Z | 0x1521c3d0200721d1855199f3ba80fe1934c41aef6134766e4843f97ccf644fbc |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 0x08f7506e0381f387e901c9d0552cf4052a0740a4 | 245        | 11743827      | 1190958530635520561746  | 11909585306355  | 2021-01-28T10:40:42.000Z | 0x2707639be83d69b2cbc0933ed813f776f3057a41e9fd63ee74ebbf9d43b1dfe7 |
</Accordion>

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

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

***

### iDUSD\_NewReserveFactor\_event

Reserve factor adjustment events for the Iron Bank DUSD lending market on Ethereum, tracking changes to the protocol's revenue retention percentage with old and new mantissa values.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 51         | 13307330      | 2021-09-27T10:45:25.000Z | 0x01ba133d499275703b6500da0a1bf7af7d2744595bc20bf686e7ebbb4d394bc2 | 1000000000000000000          | 100000000000000000           |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 216        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 100000000000000000           | 50000000000000000            |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 161        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iDUSD\_Redeem\_event

Redemption events for Iron Bank's interest-bearing DUSD token (iDUSD) on Ethereum, capturing when users withdraw underlying DUSD stablecoins by burning iDUSD tokens. Contains redeemer addresses, amounts redeemed in both underlying and iToken units for tracking lending protocol withdrawals.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount         | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ---------------- | ------------------------------------------------------------------ |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 130        | 0xf704d32ba4851907540ad060ffacab3ba6cb2793 | 11970814      | 2021-03-04T08:46:26.000Z | 159420378574658616041463 | 1564490954033139 | 0xe5f5cae51010a623f08224a3dd1ce48b0628c50fd0f92ddd109003064773e3e8 |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 90         | 0x25ba562c31aaca514319f615ed56fa587a9c7ea4 | 13387447      | 2021-10-09T23:19:46.000Z | 9103352438161719950601   | 88041758478200   | 0xd8183672d4d69ec8c75b4aa7d929e8fab5709f9645a8240ee88f42e6416a4198 |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 108        | 0x08f7506e0381f387e901c9d0552cf4052a0740a4 | 11847269      | 2021-02-13T08:45:05.000Z | 47990000000000000000000  | 479899172179063  | 0x2554388fbc4ea55e2f993ae636a3882bdc0533323bf944d12538958be8c09442 |
</Accordion>

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

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

***

### iDUSD\_RepayBorrow\_event

Borrow repayment events for the Iron Bank V1 DUSD (iDUSD) lending market on Ethereum. Tracks individual loan repayments with payer address, borrower address, repayment amounts, and updated borrow balances for analyzing lending activity and debt 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount       | block\_timestamp         | in\_totalBorrows    | transaction\_hash                                                  | in\_accountBorrows  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------------- | ------------------------ | ------------------- | ------------------------------------------------------------------ | ------------------- |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 0x1ce99932fd278e00911814dc4bd403e1293d8ed2 | 138        | 0x1ce99932fd278e00911814dc4bd403e1293d8ed2 | 12631587      | 382089886392409434890 | 2021-06-14T08:48:42.000Z | 1249110285323516362 | 0x925e4e174d85bd5874a180763c3ea2eaa4ae2c0527d47c9a856d7ae79d428ee4 | 1248890934956814199 |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 0x1ce99932fd278e00911814dc4bd403e1293d8ed2 | 313        | 0x1ce99932fd278e00911814dc4bd403e1293d8ed2 | 12631655      | 1248890934956814199   | 2021-06-14T09:03:27.000Z | 219353560514403     | 0x85a91c9f9c62348706b90298061e1828d038b8d50cfaed4f6156fbf24c6151ed | 3193251389          |
  | 0x297d4da727fbc629252845e96538fc46167e453a | false   | 0x1ce99932fd278e00911814dc4bd403e1293d8ed2 | 151        | 0x1ce99932fd278e00911814dc4bd403e1293d8ed2 | 17048079      | 3221732378            | 2023-04-14T21:38:23.000Z | 221306779308090     | 0x47884bf9e99bf8ce5ed9a6675f88895a4e8d0b5bdc29a10834ea27bc71e9454a | 0                   |
</Accordion>

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

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

***

### iEUR\_AccrueInterest\_event

Interest accrual events from Iron Bank's iEUR (Euro) lending market on Ethereum, capturing periodic updates to borrow index, total borrows, and accumulated interest. Used for calculating time-series interest rates and analyzing EUR market utilization 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior             | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows          | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------- | ------------------- | ------------------------ | ------------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 211        | 12920301      | 2082976642893269189315270 | 1002597601814747430 | 2021-07-29T10:47:56.000Z | 5918429633576223250015995 | 0xe21034cc250ca3559327c0e3ac08a11e442b0e3194a7adc5f0540cb80879d47c | 50084541900660260373    |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 63         | 12919932      | 2593222273521198821692948 | 1002581008787953883 | 2021-07-29T09:28:55.000Z | 5418344112638173742506132 | 0x635a719aee263f1514d6b33316715bb1c383e6d17e268dca7122ff2e5a2c2302 | 41245079504360814509    |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 113        | 12920092      | 1962222273521198821692948 | 1002587993032603779 | 2021-07-29T10:00:31.000Z | 6049383466054430302242093 | 0x04fc8bd6482468a91f52e25730bb75e576a402bf7594555b5bed5271ebbc79b5 | 9321923964140072371     |
</Accordion>

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

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

***

### iEUR\_Borrow\_event

Borrow events for Iron Bank's iEUR (Euro) market on Ethereum, tracking each debt origination with borrower address, borrowed amount, and cumulative account/total borrows. Used for analyzing borrowing patterns, debt positions, and utilization of Euro-denominated 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount         | in\_totalBorrows           | transaction\_hash                                                  | in\_accountBorrows         |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | -------------------------- | ------------------------------------------------------------------ | -------------------------- |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 326        | 0x5c2d3a5b56cb98486a6d898632331bc863dfb8ac | 14763883      | 2022-05-12T23:10:04.000Z | 1395530041826653603868   | 27374352645945650652937733 | 0xa12d4e9a6d22babcff01b7cc320a8f6d3f54858fdefe17f4ac97d276a0e0cc56 | 1966350523020126794062     |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 90         | 0x8338aa899fb3168598d871edc1fe2b4f0ca6bbef | 13783887      | 2021-12-11T12:37:21.000Z | 181516900838681966154840 | 29536776734509612970698404 | 0x2df87ceaec5a99acf8f66e69069f69a6a553356a44d2f4ce59d658bab6959b76 | 10759318802237197632075986 |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 43         | 0x8338aa899fb3168598d871edc1fe2b4f0ca6bbef | 13783323      | 2021-12-11T10:29:09.000Z | 16049102603460463318625  | 29355009459647944573225909 | 0x97f2aa2e752128577eef12aba8cd943b94db537f5d98d17e4ae53249ef52371b | 10577711682240810618591424 |
</Accordion>

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

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

***

### iEUR\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iEUR_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iEUR\_Mint\_event

Mint events for the iEUR interest-bearing token on Iron Bank v1 (Ethereum), recording when users deposit EUR stablecoins and receive iEUR shares in return. Tracks depositor addresses, underlying EUR amounts deposited, and iEUR tokens minted for analyzing lending protocol deposits and share calculations.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount            | in\_mintTokens    | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------------- | ----------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27 | 164        | 12938073      | 5000000000000000000000000 | 49864611729072696 | 2021-08-01T06:37:02.000Z | 0x4e11a3fb23791ca78fb12ed4ec40b215affdbffa0ab37ec82834b104c5486e94 |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 0xd3ad9da43e3660bb1a19641757b955f96c999796 | 23         | 12938929      | 7168865856484730354314    | 71493180345740    | 2021-08-01T09:48:25.000Z | 0xe00a1d50403d30cc92d875c16fb5d4e5367c645515be652b2b397a27dc7ff258 |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 0x7420fa58ba44e1141d5e9adb6903be549f7ce0b5 | 292        | 16681275      | 303924401826141791310     | 2996065713909     | 2023-02-22T03:18:35.000Z | 0x34a19cd92bed0a5516b07c6429e1ca4d4268ebbf4440c2a7e483fd4db172c1b9 |
</Accordion>

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

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

***

### iEUR\_NewReserveFactor\_event

Reserve factor parameter change events for the iEUR market on Iron Bank v1 (Ethereum), tracking adjustments to the protocol's revenue allocation percentage stored as mantissa values (18 decimals).

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 330        | 12862566      | 2021-07-20T09:19:17.000Z | 0xd3b3419fc6fdab6bc446dd34b4efd017f55af5345ccdd02f4922e967374b2575 | 100000000000000000           | 0                            |
</Accordion>

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

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

***

### iEUR\_Redeem\_event

Redemption events from Iron Bank V1's iEUR (interest-bearing EUR) market on Ethereum, recording when users withdraw underlying EUR assets by burning iEUR tokens. Used to track EUR liquidity withdrawals and analyze market supply dynamics.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount        | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 102        | 0xfd76f6c55b83ffca691ee3ae57edbd978bffbade | 14645819      | 2022-04-24T06:14:30.000Z | 1390483122881999498681  | 13760734174326   | 0x62a0f1274c761dac6814d3f7c03bdb9744801a295f647b7267b549c004b26dd4 |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 261        | 0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27 | 17883281      | 2023-08-10T08:25:11.000Z | 9638512253486523348342  | 94661052819017   | 0x75426fbff12aa8dea697abccdaeb90d72b755314145aa9c88ee3cf8762e28d58 |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 458        | 0xa80191fca50be00f8952c69232c93d57eeacaf6f | 13338175      | 2021-10-02T06:09:32.000Z | 20455766050234350461307 | 203743712527657  | 0x5b6e245ec1e029e4015b57b84a696a95dca0316b81db1b8e390683d60df4addb |
</Accordion>

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

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

***

### iEUR\_RepayBorrow\_event

Borrow repayment events for the iEUR (Iron Bank Euro) market on Iron Bank v1 Ethereum, tracking when borrowers or third parties repay EUR-denominated debt. Contains repayment amounts, updated borrow balances, and global market debt totals for analyzing liquidation activity and borrower health.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount         | block\_timestamp         | in\_totalBorrows           | transaction\_hash                                                  | in\_accountBorrows    |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ----------------------- | ------------------------ | -------------------------- | ------------------------------------------------------------------ | --------------------- |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 0xa4851773969f0e594dbd50d9e98de72cb89cf6e8 | 36         | 0xcf63e1c31805254b6fb3ed7829206c2b2505e3a7 | 15104515      | 203778329741872528667   | 2022-07-08T21:54:33.000Z | 8702623799301608878655130  | 0x34e8208a47ea1bc7c988e33c57976f06db3f82161cda33da932cbb5ea9a28134 | 222817105505033334373 |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 0x0b1fdb90501286ebe6087b6660c3a48db9898fad | 328        | 0x0b1fdb90501286ebe6087b6660c3a48db9898fad | 13905087      | 10154486518236962011259 | 2021-12-30T06:24:43.000Z | 36180930729085304185626977 | 0x7cd76548f92f1d6daa7abab975023b008543a33a7fefbb82c191a8e53367fa52 | 2461501647884032      |
  | 0x00e5c0774a5f065c285068170b20393925c84bf3 | false   | 0xdc3b2dce95ebd1e7c18eaa37780d10d240146660 | 158        | 0xdc3b2dce95ebd1e7c18eaa37780d10d240146660 | 13905026      | 5665495524727221        | 2021-12-30T06:10:31.000Z | 36191044065164575857901882 | 0x83ec633e2872e8cce86b860ed78fc2765d964c5308ce2eb19080edc30c5a69e6 | 0                     |
</Accordion>

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

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

***

### iEURS\_AccrueInterest\_event

Interest accrual events for the iEURS (Iron Bank EURS stablecoin) market on Ethereum, recording accumulated interest, total borrows, borrow index, and available cash each time interest is calculated. Used for tracking lending pool interest rates and calculating yield 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------- | ------------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 49         | 11776156      | 19046         | 1000479769659035619 | 2021-02-02T09:59:40.000Z | 10004797         | 0x6369bf61811c41762c489195d07a603717f800c2d1af06687ebdbdb20597beeb | 4797                    |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 285        | 14278584      | 30529623      | 1040014902696606294 | 2022-02-26T00:44:33.000Z | 4901806          | 0x1892556190a807075302b5ac6054e0d5e6be706712fc469de7a8d6e4a2831be9 | 39                      |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 63         | 14316129      | 31029315      | 1040344674517046730 | 2022-03-03T20:13:41.000Z | 4903360          | 0x7598ab3b1977ef0c640a5bae470501cccfd5f737933ec696a96c07087394e268 | 1554                    |
</Accordion>

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

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

***

### iEURS\_Borrow\_event

Borrow event logs from Iron Bank v1's STASIS EURS (Euro Stablecoin) lending market on Ethereum. Tracks individual borrow transactions with borrowed amounts, cumulative account borrows, and protocol-wide total borrows for analyzing EURS borrowing patterns and user leverage 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 39         | 0x37be92f21943dc91629d884f8c41c8203024633a | 12945664      | 2021-08-02T11:22:46.000Z | 1890000          | 7422572          | 0xd106934a91cd14b37464f04aebf915426face962bd600a6155ed779e9c1c4a2f | 1890000            |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 241        | 0x3f7c10cbbb1ea1046a80b738b9eaf3217410c7f6 | 11815326      | 2021-02-08T10:38:18.000Z | 18400000         | 18400046         | 0x93b7fa404e1c5ca9a342f7608af585c19bb9c67e56691aadf4a077e3310c46da | 18400000           |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 203        | 0x4081268183e64cd9cb8dc4452194e0c85e254c63 | 14272429      | 2022-02-25T01:52:06.000Z | 14941510         | 34138457         | 0xc246574f4cde2a70e691a44b63e3477db344d23379fe5cbff5f60c09b5fde3b8 | 34090926           |
</Accordion>

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

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

***

### iEURS\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iEURS_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iEURS\_Mint\_event

Mint events for Iron Bank's iEURS (STASIS EURS) money market on Ethereum, tracking when users supply EURS collateral to receive interest-bearing iEURS tokens. Contains minter addresses, underlying asset amounts, and corresponding iToken quantities for analyzing deposit activity and liquidity provision.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount | in\_mintTokens   | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | -------------- | ---------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 0x7374bb48a5fdc16c9b216f3fcc60b105c73d1806 | 234        | 11986262      | 40645728       | 4038143826658866 | 2021-03-06T17:31:35.000Z | 0x57e8730be035d7ec35a81056dd82e8be64aef57ef5462a3f261a03dab9fd496c |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 0x7374bb48a5fdc16c9b216f3fcc60b105c73d1806 | 91         | 11986101      | 40645729       | 4038164686425995 | 2021-03-06T16:54:43.000Z | 0x878dfa86ac791b8ce38bbdfc54c5a00abb05e78f99b1ce3cdae027f9be8c4bd0 |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 0x5566dc0aa5cab7b0d26ee1968de2920b902cb10d | 526        | 14173014      | 9327632        | 917681584934434  | 2022-02-09T16:40:19.000Z | 0x475dbe4b3afc6f7efad943877b4efc1d5b92b313403732bc683304828a47c9f2 |
</Accordion>

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

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

***

### iEURS\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank EURS (Stasis Euro) market on Ethereum. Tracks governance updates to the protocol's fee allocation between lenders and reserves, with mantissa values representing percentage as 18-decimal fixed-point numbers.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 163        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 75         | 16881854      | 2023-03-22T08:09:47.000Z | 0xdea90ba1876a42bb22a47a0831a0a2446e1744fa900cb836c71c29cf54388973 | 1000000000000000000          | 100000000000000000           |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 218        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 100000000000000000           | 50000000000000000            |
</Accordion>

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

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

***

### iEURS\_Redeem\_event

Redemption events from Iron Bank V1's EURS (STASIS Euro stablecoin) lending market on Ethereum, tracking when users withdraw their deposited EURS by burning iEURS interest-bearing tokens. Records include redeemer address, underlying EURS amount redeemed, and corresponding iEURS tokens burned for analyzing withdrawal patterns and liquidity 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ---------------- | ------------------------------------------------------------------ |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 152        | 0x526517d55589a961ce7ad9072ebbb5f2fba766f0 | 11964395      | 2021-03-03T09:11:14.000Z | 20000000         | 1988960684045792 | 0xf63bdbcf950366b430fa6bbdf3111d13b5b47c5002f2b9505e0de9359aa1d0cb |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 260        | 0x566fd1c3ddb493feee75dada63f54d4ed2d9e0e1 | 13790568      | 2021-12-12T13:20:54.000Z | 14091            | 1392307255766    | 0x0ad6d949114ce1453c053afe097b11009725bb20c0f363eb50e7eea2651868ee |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 105        | 0x0491449f9e3e788dd004a89079ee21388e842312 | 11960847      | 2021-03-02T19:53:04.000Z | 19147            | 1904161724836    | 0x2781409eda08d57732b75f9a1a2e5c16009f13ffc8e45b045ee51a60edd91aff |
</Accordion>

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

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

***

### iEURS\_RepayBorrow\_event

Loan repayment events from Iron Bank V1's STASIS EURS (iEURS) market on Ethereum, tracking borrower addresses, repayment amounts, and updated borrow balances. Used for analyzing debt repayment patterns and borrower behavior in the Euro-pegged stablecoin lending market.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 0x37be92f21943dc91629d884f8c41c8203024633a | 253        | 0x37be92f21943dc91629d884f8c41c8203024633a | 12946296      | 1810938         | 2021-08-02T13:48:09.000Z | 5611654          | 0x6ac3e828f8b95aeb3d052b032e9a0e13e7d63ea1bf3544115caaf42fc76a268e | 79067              |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 0x3f7c10cbbb1ea1046a80b738b9eaf3217410c7f6 | 217        | 0x3f7c10cbbb1ea1046a80b738b9eaf3217410c7f6 | 11990959      | 17825704        | 2021-03-07T11:03:14.000Z | 92256            | 0x8c033cf667d3b75bd7fe2ec85e72301a9f7056fe6e5e2492289531987892bf49 | 92212              |
  | 0xa8caea564811af0e92b1e044f3edd18fa9a73e4f | false   | 0xe434cf044348658ad7b4c7484c12bccf1848f741 | 115        | 0xe434cf044348658ad7b4c7484c12bccf1848f741 | 14054807      | 1006122         | 2022-01-22T10:17:36.000Z | 2934348          | 0x4e5a3c37dd55b6df8f4bc99da711d48598e84dbf5b709afe5e822f9dee475215 | 2887143            |
</Accordion>

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

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

***

### iGBP\_AccrueInterest\_event

Interest accrual events from Iron Bank's iGBP (British Pound) lending market on Ethereum. Records periodic interest calculations with accumulated interest, total borrows, cash reserves, and borrow index updates for analyzing lending pool performance.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior              | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows           | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | -------------------------- | ------------------- | ------------------------ | -------------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 227        | 13708936      | 53419838260693514895850547 | 1009423426955464263 | 2021-11-29T13:45:07.000Z | 16592881672030140985342391 | 0xda77f707fa75bc92c9bb167b04f77e4b3b4470934d85fecb86027487da191318 | 1788774035881907752645  |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 22         | 13711216      | 53383203217669227039778583 | 1009457232084934476 | 2021-11-29T22:34:00.000Z | 16630073629972953221080349 | 0x434c756220b9972d6e17d082a99285fd72945fc0ff379ba87718804f61ed9978 | 556914918524379665994   |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 268        | 14354779      | 59034254884284926195950977 | 1018680455584153743 | 2022-03-09T20:41:26.000Z | 10979968418093801072479887 | 0x687e48dd16ac67762914e55315e8b16896b28b239847cba99a027938b705dce6 | 666172489734925860863   |
</Accordion>

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

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

***

### iGBP\_Borrow\_event

Borrow event logs from Iron Bank's iGBP (British Pound) market on Ethereum, capturing each borrowing transaction with borrower address, amount borrowed, and updated total debt positions. Used for analyzing GBP-denominated lending activity and borrower behavior in Iron Bank's credit 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount          | in\_totalBorrows           | transaction\_hash                                                  | in\_accountBorrows        |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------- | -------------------------- | ------------------------------------------------------------------ | ------------------------- |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 499        | 0x2af33e93f68b8497bb535c492f5867c7e83f2bc4 | 13659660      | 2021-11-21T17:54:30.000Z | 1080000000000000000000000 | 16951407432891745029705690 | 0x2a158ab63f23adfaeda3c2cb90751403523f47a1e29c94b960ab61dfe9c5b746 | 1080055778265123740396271 |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 198        | 0x388d397b6ba2cb3aa20e39d59b779a3ac35c8358 | 15295319      | 2022-08-07T13:04:25.000Z | 55000000000000000000      | 3891540477489592621058582  | 0x8715b73a55a63c41ff9d92b56c6d1e17ca7e5ef3fc81463d7cce346bf5ea47ea | 55000000000000000000      |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 387        | 0xebf6c10b74747f73abe5c22c6599b0e05fcd1c31 | 14939829      | 2022-06-10T18:01:24.000Z | 808000000000000000000     | 4213364552315439679791203  | 0x9ed5d7b91afea9dbb926d587de7a263d1e2cb3f230b2c473792bb66e67af5ce6 | 808000000000000000000     |
</Accordion>

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

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

***

### iGBP\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iGBP_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iGBP\_Mint\_event

Mint events from Iron Bank's iGBP (British Pound) lending market on Ethereum, tracking when users deposit GBP-backed tokens to receive interest-bearing iGBP tokens. Used for analyzing deposit flows, liquidity provider behavior, and collateral activity in the Iron Bank 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount           | in\_mintTokens   | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ---------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 0x8c612b03b3358c1e535706695c635c360034b968 | 781        | 16587671      | 254329878441400603262125 | 2527528634553846 | 2023-02-09T00:39:11.000Z | 0x19239e2598031db0140da82ef897b49e8c47d665ac63f57bd7d100b5d4528d68 |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 0x73545f52645cbe6e24476e88abcc35dc195b8099 | 342        | 16063851      | 18997613917272711564174  | 188845785895732  | 2022-11-27T20:57:11.000Z | 0x7a039ff07009e39b580ca0f729ef1385c73f082dcc0560e459cda2edc695d446 |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 0xc16414ac1fedfdac4f8a09674d994e1bbb9d7113 | 719        | 13738127      | 743834772879506924579853 | 7417468983404717 | 2021-12-04T05:52:57.000Z | 0x7af17e38f81ab316ff3e5629bc44c1f55b21633bb129b030ef5f937fe4435440 |
</Accordion>

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

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

***

### iGBP\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank GBP (British Pound) market on Ethereum. Tracks adjustments to the protocol's reserve percentage, which determines how much interest is retained by the protocol versus distributed to suppliers.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 161        | 13085408      | 2021-08-24T02:40:46.000Z | 0xcfae4c14ece0646c2d64f20bd7886dd97fdec0a1c66264b2b055f7475676a040 | 100000000000000000           | 0                            |
</Accordion>

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

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

***

### iGBP\_Redeem\_event

Redemption events from the Iron Bank iGBP (British Pound) lending market on Ethereum, capturing when users withdraw underlying GBP tokens by burning iGBP tokens. Used for analyzing withdrawal patterns, liquidity flows, and exchange rate tracking between iGBP and underlying assets.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount        | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 340        | 0x69681f8fde45345c3870bcd5eaf4a05a60e7d227 | 17689666      | 2023-07-14T05:36:23.000Z | 1499340674749338955365  | 14772713561476   | 0xb99a433b34b511ad7f29b83bef6a30bf54c28463b6cbfb3d87689713515dea90 |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 414        | 0x69681f8fde45345c3870bcd5eaf4a05a60e7d227 | 14980255      | 2022-06-17T16:54:35.000Z | 1463217654207191055832  | 14554985710795   | 0xb21749b387f8fbcf55e9fd1c86847ef036f9c0a1fc22e060c93726bce4e79f62 |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 150        | 0x73545f52645cbe6e24476e88abcc35dc195b8099 | 16066992      | 2022-11-28T07:28:23.000Z | 18997613917272642162186 | 188845597866504  | 0xfa5f0bc0df2e642e3c424e29accee40b3b2855d31afba601b80cf100586d1260 |
</Accordion>

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

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

***

### iGBP\_RepayBorrow\_event

Borrow repayment events for the iGBP market on Iron Bank v1 (Ethereum), tracking GBP-denominated debt reductions with payer/borrower addresses, repayment amounts, and updated borrow balances for analyzing lending protocol activity and debt management.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount         | block\_timestamp         | in\_totalBorrows           | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ----------------------- | ------------------------ | -------------------------- | ------------------------------------------------------------------ | ------------------ |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 0x5bb674d360eb4222ea7994ea4b725f062dcffe26 | 223        | 0x5bb674d360eb4222ea7994ea4b725f062dcffe26 | 14623938      | 379903355861623771253   | 2022-04-20T20:01:56.000Z | 12427732743252354833285801 | 0xaa2e6d1578f27bc8d2c82bfda1299210772e33ec6e5804f59a6eecfb99c95f51 | 0                  |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 0x76b639ad828aee35ff219e73add6ab4d6c0d233d | 203        | 0x76b639ad828aee35ff219e73add6ab4d6c0d233d | 16287087      | 24756671110802447095830 | 2022-12-29T01:18:47.000Z | 1207022165257816093773036  | 0x9d79888898893d44e14a21726276b2423869001f025001a83e0f827484a5b9f4 | 0                  |
  | 0xecab2c76f1a8359a06fab5fa0ceea51280a97ecf | false   | 0xfbea6f2b10e8ee770f37fff9b8c9e10d9b65741d | 231        | 0xfbea6f2b10e8ee770f37fff9b8c9e10d9b65741d | 18076941      | 844297216417422155632   | 2023-09-06T10:54:11.000Z | 1051901324809035246532666  | 0xe3a6acfd55a766dcca978b0b6bf62a616df887c0d18c3d1366493e78c0df8375 | 0                  |
</Accordion>

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

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

***

### iJPY\_AccrueInterest\_event

Interest accrual events for the Iron Bank Japanese Yen (iJPY) lending market on Ethereum. Tracks cash reserves, total borrows, borrow index updates, and accumulated interest for analyzing lending protocol yield and utilization 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior                | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows             | transaction\_hash                                                  | in\_interestAccumulated  |
  | ------------------------------------------ | ------- | ---------- | ------------- | ---------------------------- | ------------------- | ------------------------ | ---------------------------- | ------------------------------------------------------------------ | ------------------------ |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 299        | 14016212      | 5550670276721769400702446102 | 1014958773274576885 | 2022-01-16T11:20:42.000Z | 2451933609649690055040819404 | 0x67bed08d5ab1a765775ca92daa07f1884bb5441df48be5f0fefdbbef3eb4296a | 418780457291186012589105 |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 377        | 15664062      | 2260067348073163807999426305 | 1028757763228663587 | 2022-10-03T00:31:23.000Z | 393025327811047003344656092  | 0x11a7317868cfc08e661fbecf4bb03c9980b81034f64c82f56615a410b29e6aa1 | 40350061910895715343319  |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 79         | 14320715      | 6374199441350944978689665985 | 1019186626344101859 | 2022-03-04T13:23:39.000Z | 1627688604118737807877689266 | 0x1bc89646c68aa26be76606169e39aa0558bf1497852f6bb70b287b6f88f94a5d | 62606330368877815989890  |
</Accordion>

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

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

***

### iJPY\_Borrow\_event

Borrow event logs from Iron Bank V1's iJPY (Japanese Yen) market on Ethereum, capturing individual borrow transactions with borrower addresses, amounts borrowed, and cumulative account and total borrow balances. Used for tracking JPY-denominated debt positions and analyzing borrowing behavior in Iron Bank's isolated lending 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount            | in\_totalBorrows             | transaction\_hash                                                  | in\_accountBorrows          |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------------- | ---------------------------- | ------------------------------------------------------------------ | --------------------------- |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 178        | 0x2f34ee226e149a1fe2d03e883df9544d84c1c47c | 15082363      | 2022-07-05T11:58:28.000Z | 10000000000000000000000000  | 383156542696080602771567916  | 0x648b7e134e88d14b4412405f9518ee41270d8056666f0f9ea1e7ef9e24c03d49 | 10000000000000000000000000  |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 228        | 0x7063e328abf2411b25bf2057bc8a5154c7486ea5 | 13708050      | 2021-11-29T10:26:53.000Z | 100000000000000000000000000 | 1668026897236022420099269510 | 0xc723ff12c3095d1f25857f8ad3db4917c78450e3b2e3a32c335ebb9ecb019754 | 163014780376586237642033918 |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 251        | 0x9a97664f3aba3d6de05099b513a854d838c99db6 | 17092352      | 2023-04-21T04:19:11.000Z | 50000000000000000000000000  | 251099162158540130116447755  | 0x92938b2279862c8ed416d0156c0d9935e943268f2c9dbc155a1a0bb1d7653053 | 90025422817064645332538642  |
</Accordion>

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

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

***

### iJPY\_Flashloan\_event

Flash loan events from Iron Bank's JPY-pegged synthetic asset market on Ethereum. Records instant borrows with receiver addresses, loan amounts, and protocol fees for analyzing arbitrage activity and JPY stablecoin market dynamics.

<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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount              | log\_index | in\_receiver                               | in\_totalFee         | block\_number | in\_reservesFee     | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ----------------------- | ---------- | ------------------------------------------ | -------------------- | ------------- | ------------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 70000000000000000000000 | 258        | 0xea4bb5fc73f6a10afd69ded9dd7558b505b253ae | 21000000000000000000 | 22764431      | 2100000000000000000 | 2025-06-23T03:24:47.000Z | 0x1649d3b399949e9c42f838c00846cf1194fd50d6ca76080426e5e2b9eaa0caa3 |
</Accordion>

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

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

***

### iJPY\_Mint\_event

Mint events for Iron Bank V1's iJPY (Japanese Yen) token on Ethereum, recording when users deposit JPY-pegged assets to receive iJPY interest-bearing tokens. Tracks minter addresses, underlying asset amounts deposited, and iTokens received for analyzing lending pool supply and exchange rate fluctuations.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount               | in\_mintTokens       | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ---------------------------- | -------------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 0x5555f75e3d5278082200fb451d1b6ba946d8e13b | 269        | 13099013      | 1000000000000000000000000000 | 10000000000000000000 | 2021-08-26T05:10:52.000Z | 0xd775585eb10642dc0bef280b1e16b51a932764b8536913113c984badade32379 |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 0x5555f75e3d5278082200fb451d1b6ba946d8e13b | 52         | 13222984      | 1000000000000000000000000000 | 9999250833742162874  | 2021-09-14T09:22:25.000Z | 0xc69a16aab5c866502d616c08b9a536e8c320ee0c57a61f2ccc7cee8b427fe857 |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 0xe77df8917d62c6ac822b79ac00a48e73f842e53c | 41         | 14841594      | 1000000000000000000000000    | 9940719874514489     | 2022-05-25T11:21:52.000Z | 0x2d1809c08a14af0c30f5d2959bdecdb38a30aee27fa5aaccb2f6bfca35980a9a |
</Accordion>

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

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

***

### iJPY\_NewReserveFactor\_event

Reserve factor parameter changes for Iron Bank's JPY (iJPY) lending market on Ethereum. Tracks protocol fee adjustments where reserve factor determines the percentage of interest allocated to protocol reserves versus 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 143        | 13085408      | 2021-08-24T02:40:46.000Z | 0xcfae4c14ece0646c2d64f20bd7886dd97fdec0a1c66264b2b055f7475676a040 | 100000000000000000           | 0                            |
</Accordion>

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

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

***

### iJPY\_Redeem\_event

Redemption events from Iron Bank v1's iJPY (interest-bearing Japanese Yen) market on Ethereum, capturing when users withdraw underlying JPY stablecoins by burning iJPY tokens. Records the redeemer address, amount of underlying JPY redeemed, and iTokens burned for analyzing withdrawal patterns and market liquidity.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount         | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ---------------- | ------------------------------------------------------------------ |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 261        | 0x5555f75e3d5278082200fb451d1b6ba946d8e13b | 18184784      | 2023-09-21T14:15:59.000Z | 40731478537962622516939  | 403429165607282  | 0x10bcad50bb1f538d2eac997ce2e5d684568af60f86f4d676b5c2d9a6c91522c9 |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 172        | 0xe77df8917d62c6ac822b79ac00a48e73f842e53c | 14841627      | 2022-05-25T11:29:13.000Z | 999999999999999921146932 | 9940719823244695 | 0x4522159502428838373183951c39007bf06c8029fc0603b1c6bd74c207f21244 |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 146        | 0x5555f75e3d5278082200fb451d1b6ba946d8e13b | 16918018      | 2023-03-27T10:07:23.000Z | 269118878242834753211079 | 2670900592224902 | 0xc0619a1801f8273547170d2b58edd24d661548e5ac20863897aed30db76fdb61 |
</Accordion>

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

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

***

### iJPY\_RepayBorrow\_event

Loan repayment events for the iJPY (Iron Bank Japanese Yen) market on Iron Bank v1 Ethereum, tracking borrower addresses, repayment amounts, and updated borrow balances. Used to analyze JPY-denominated debt repayment patterns and borrower account health.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount            | block\_timestamp         | in\_totalBorrows             | transaction\_hash                                                  | in\_accountBorrows         |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | -------------------------- | ------------------------ | ---------------------------- | ------------------------------------------------------------------ | -------------------------- |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 0x83884ec924d43b6c6d1c52d7b6a57ce4121a4a53 | 18         | 0xbdfa4f4492dd7b7cf211209c4791af8d52bf5c50 | 13691423      | 27527641616531160152764776 | 2021-11-26T18:42:22.000Z | 1540718099141910927824121621 | 0x91d04e0d423b2f25314d8fd661c4bf351a99c98f364d1660fbbd52d66b096302 | 27527642283816473512684696 |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 0x47141933b82b5472c1129cf07fb74007a75666b6 | 195        | 0x47141933b82b5472c1129cf07fb74007a75666b6 | 15604978      | 1610021418481520844395345  | 2022-09-24T18:21:35.000Z | 392742219746312636922619190  | 0xc499d983a7f1c3afb33fabfba71394a0e2b200a7b34502ec4f39fa889ba89223 | 0                          |
  | 0x215f34af6557a6598dbda9aa11cc556f5ae264b1 | false   | 0x530defd6c816809f54f6cfa6fe873646f6ecf930 | 453        | 0x530defd6c816809f54f6cfa6fe873646f6ecf930 | 13887800      | 22845494786497344490276846 | 2021-12-27T14:19:45.000Z | 2288521854799224619111078676 | 0xc41aa69593418aaefa7786f1ff0a8a9298f1a8f289919d42f33caba12df46825 | 20711254869494337334385233 |
</Accordion>

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

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

***

### iKRW\_AccrueInterest\_event

Interest accrual events for Iron Bank's iKRW (Korean Won) lending market on Ethereum, tracking cash reserves, borrow amounts, accumulated interest, and borrow index updates per block. Used for analyzing lending protocol interest rate mechanics and reserve changes for the KRW-denominated money market.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior                  | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows              | transaction\_hash                                                  | in\_interestAccumulated  |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------------ | ------------------- | ------------------------ | ----------------------------- | ------------------------------------------------------------------ | ------------------------ |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 158        | 14720241      | 104644717575532465114768935548 | 1026811085409668203 | 2022-05-05T23:56:18.000Z | 15381604265242140202463282744 | 0xa6a6a720670ab430cef63849de4260d7eb7eb27e68395be803ce1b310a853163 | 1950323660065490157018   |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 218        | 14720225      | 104624206742843997645210154203 | 1026810955214278974 | 2022-05-05T23:51:53.000Z | 15402113147606947606531907071 | 0xd244cf9bcf1fa3ecb39b30cc5b988759fa5c5468d24c79745a136b5d212f1439 | 263987821310354934015216 |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 49         | 14718065      | 104624818286226997870050485907 | 1026793355967710218 | 2022-05-05T15:39:10.000Z | 15401849159785637251597891855 | 0xc92ddbae6ed5c04972d2dd398323438646ac04892528875b9e924eabe15803a4 | 204707650644568551934721 |
</Accordion>

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

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

***

### iKRW\_Borrow\_event

Borrow event logs from Iron Bank v1's iKRW (Korean Won stablecoin) market on Ethereum, tracking individual borrow transactions with borrower addresses, amounts, and cumulative account debt. Used for analyzing borrowing behavior and market utilization of KRW-denominated lending 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount            | in\_totalBorrows              | transaction\_hash                                                  | in\_accountBorrows           |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------------- | ----------------------------- | ------------------------------------------------------------------ | ---------------------------- |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 390        | 0x0574215b0a39119c84ca17f1ec83418eeb5ada8e | 13275485      | 2021-09-22T12:07:14.000Z | 141999999994226516268494397 | 8859487984652713282230122923  | 0xefb333a21842cf8a91b5af5e4635f4e78184f7ec9820338f22aa96423f9a85af | 142000000000000126376115249  |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 120        | 0x2af33e93f68b8497bb535c492f5867c7e83f2bc4 | 13275501      | 2021-09-22T12:12:01.000Z | 590639810000000000000000000 | 9450130381532474004736630248  | 0x3464097db43eb47fbe0c4c8fcc988cebe85230f59ab271f193623c758eaa8fd1 | 2127223836693874967022680803 |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 409        | 0x598c5e19a132a5c433a80c908f05d87bfdaac4ae | 13277317      | 2021-09-22T19:10:14.000Z | 500000000000000000000000000 | 10155475091255598189834977152 | 0xebd080eafd5025415f5c7ff84b628de465d3ab47000b6426244f203895ff310a | 1000221226052904413536040191 |
</Accordion>

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

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

***

### iKRW\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iKRW_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iKRW\_Mint\_event

Mint events for the iKRW interest-bearing token on Iron Bank V1 Ethereum, recording when users deposit KRW-pegged assets and receive iKRW tokens in return. Used for tracking lending pool deposits, calculating exchange rates between underlying assets and interest-bearing tokens, and monitoring Iron Bank KRW market supply.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount               | in\_mintTokens       | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ---------------------------- | -------------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 0x3609462f90d6291735dccff4141b3e315e1cdb28 | 233        | 15466742      | 32163393633854105784793440   | 319435697799719965   | 2022-09-03T17:43:15.000Z | 0x8ed32d3037477d84b94b0c5ce85539ce91edd75f6d863464c628a3270f5ad208 |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 0xc803698a4be31f0b9035b6eba17623698f3e2f82 | 243        | 14040528      | 1193053466390420204700255442 | 11862585017596595639 | 2022-01-20T05:27:02.000Z | 0xb27b379ccd7f98df6273ac6a729c13eb91c0377d1adae8c9db4c203a26d18d3e |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 0x1cb9d8f67075846a68c820d3b95a80c025aac3cd | 11         | 13650551      | 100000000000000000000000000  | 995451361730883351   | 2021-11-20T07:25:35.000Z | 0x3edee0d8aed452c8cb7d12246934f1a5e615f0c495991076a3b3ed03d43a1a71 |
</Accordion>

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

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

***

### iKRW\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank Korean Won (iKRW) market on Ethereum. Tracks adjustments to the protocol's reserve ratio (percentage of interest allocated to reserves) with old and new mantissa values for analyzing risk management and protocol governance decisions.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 401        | 12912451      | 2021-07-28T04:50:28.000Z | 0xba78db28c50c2e391a63bf289f28eae74a488acec55444ed35825de17a79eb5e | 100000000000000000           | 0                            |
</Accordion>

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

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

***

### iKRW\_Redeem\_event

Redemption events from Iron Bank's iKRW (Korean Won) lending market on Ethereum, capturing withdrawals where users redeem iKRW tokens for underlying KRW-pegged assets. Used for analyzing withdrawal activity, liquidity dynamics, and user redemption patterns in the KRW lending market.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount           | in\_redeemTokens   | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | -------------------------- | ------------------ | ------------------------------------------------------------------ |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 298        | 0xa101f0538f7faa9646c46a5ef565255ae74e8574 | 15257115      | 2022-08-01T14:07:32.000Z | 25565199092103241075941961 | 253909844594051409 | 0x21d5458b32a78a614560c2ad394a620626a213f886018b3f703c5c05573a3f02 |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 358        | 0x95dfdc8161832e4ff7816ac4b6367ce201538253 | 17689666      | 2023-07-14T05:36:23.000Z | 379424653140430460012445   | 3743215714257531   | 0xb99a433b34b511ad7f29b83bef6a30bf54c28463b6cbfb3d87689713515dea90 |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 94         | 0x95dfdc8161832e4ff7816ac4b6367ce201538253 | 13548315      | 2021-11-04T05:17:01.000Z | 23943482950116565746527244 | 238422361343606955 | 0x7f1db2e3b71600e41f1dc3257b657e74e41bd486256b43c293f9341e319e555f |
</Accordion>

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

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

***

### iKRW\_RepayBorrow\_event

Loan repayment events for the iKRW (Korean Won) market on Iron Bank v1 (Ethereum), tracking repayment amounts, borrower positions, and updated total borrows. Used for analyzing debt repayment patterns and Korean Won stablecoin borrowing activity 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount           | block\_timestamp         | in\_totalBorrows              | transaction\_hash                                                  | in\_accountBorrows        |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------- | ------------------------ | ----------------------------- | ------------------------------------------------------------------ | ------------------------- |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 0x0ea4a285e1353f490ec7f473ab3174cac71cf79a | 68         | 0x0ea4a285e1353f490ec7f473ab3174cac71cf79a | 14390406      | 5132566091232073951998217 | 2022-03-15T09:45:33.000Z | 18884076901666402021231291746 | 0xf5f60bdb0d339a17f7d7dd65ff81ed3df776a3065dcd75a54a965c4c093361c1 | 8699825594624572755250    |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 0x6ee33c4a192118ea664612aec6f7b6e4aef78b87 | 34         | 0x64baeb02876aa58078aa25c1c43b7a5492873559 | 17550285      | 718466604931266738360198  | 2023-06-24T15:31:11.000Z | 1176439303488505632866788891  | 0x7a32500590d8ea33f8f225b9f9d1d8996b83ba8a1388d6b1b54ecc323f27b6ae | 1386611066650151973877897 |
  | 0x3c9f5385c288ce438ed55620938a4b967c080101 | false   | 0xc4805f44d9086e14216c3360ae89da9dc8d926af | 381        | 0xc4805f44d9086e14216c3360ae89da9dc8d926af | 14202835      | 1337616441279555978088533 | 2022-02-14T07:13:05.000Z | 22430444636023058874279728375 | 0x1c511f2a1aff3f4f31205a1a23f6dcb71554685cb96a6f2c434bf81fec5ffa2a | 0                         |
</Accordion>

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

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

***

### iLink\_AccrueInterest\_event

Interest accrual events from Iron Bank (Cream Finance v2) LINK market on Ethereum, recording periodic updates to borrow index, accumulated interest, and total borrows. Used for calculating lending APY and tracking borrower debt growth 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior            | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows         | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------- | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ----------------------- |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 106        | 12815283      | 146792624643413468322574 | 1018377850360414405 | 2021-07-12T23:02:47.000Z | 145965168463579673040315 | 0x39f87e14ce1e1e918fff0213990afb314568af0e38ee84987f1e24cfe1eb177c | 9414289602536714590     |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 222        | 12810038      | 147123729794060036996308 | 1018045983961898029 | 2021-07-12T03:28:32.000Z | 145491897894253865430373 | 0x98d52c246ebfd1452a2626a52d990c12c6eed8d52895a674c586fdd0be981835 | 16434959431322525583    |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 257        | 12810203      | 289685682373856321579536 | 1018046200255615079 | 2021-07-12T04:06:24.000Z | 2929945936952804836024   | 0x2b4d284305b794768c52a45ed4a605129b08dce5b01e3d9a242ab105dead9545 | 622495223988879         |
</Accordion>

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

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

***

### iLink\_Borrow\_event

Borrow event logs from Iron Bank v1's iLINK market on Ethereum, capturing when users take out LINK token loans with borrow amounts, cumulative account borrows, and protocol-wide total borrows. Used for analyzing borrowing patterns, interest accrual, and individual account debt 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount         | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows       |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ------------------------ |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 177        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12682723      | 2021-06-22T07:34:26.000Z | 213969824874017          | 2715714740175691703250   | 0x0130e0b8cc07348611740e8bc4ee8426908c9c164b495ac89ab2f32c9ed9f569 | 2715714740175685259247   |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 179        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12682723      | 2021-06-22T07:34:26.000Z | 132900000000000000000000 | 135615714740175691703250 | 0x0130e0b8cc07348611740e8bc4ee8426908c9c164b495ac89ab2f32c9ed9f569 | 135615714740175685259247 |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 247        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12682461      | 2021-06-22T06:37:39.000Z | 13300410105848042225     | 130793858953752648985492 | 0x00db21fea4e93af44c95f24814d1eead80905def995b7909cbc55a768112d4d9 | 130793858953752642541639 |
</Accordion>

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

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

***

### iLink\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iLink_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iLink\_Mint\_event

Mint events from Iron Bank v1's iLINK market on Ethereum, recording when users deposit LINK collateral to receive iLINK tokens. Contains minter addresses, underlying asset amounts, and corresponding iToken amounts issued for tracking lending pool deposits and exchange rate calculations.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount         | in\_mintTokens      | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ---------------------- | ------------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 0xb59ecdf6c2aea5e67fafbaf912b26658d43295ed | 113        | 13377794      | 7008209787704441411745 | 1123806665871867075 | 2021-10-08T10:54:35.000Z | 0xc2b435b85ff572a89a0417df379ec68a061d4737f63e9eb6cf15945aecefd662 |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 0x002183113f3fedc5b494080954e5e8faeb070fd3 | 155        | 13376886      | 1515493996880456513011 | 243018835771374987  | 2021-10-08T07:35:38.000Z | 0x4e2026e85fa2b2391d297dc90281d99ad8b85e3d8162e58575555ac1d5cee070 |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 0xb59ecdf6c2aea5e67fafbaf912b26658d43295ed | 62         | 12567724      | 200000000000000000000  | 32486383695821067   | 2021-06-04T11:34:19.000Z | 0x179db57bec3f6a743cd7dfbb751350bd8ffdb16b2c49de20daab99e08d6b6aaa |
</Accordion>

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

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

***

### iLink\_NewReserveFactor\_event

Reserve factor parameter change events for the LINK market on Iron Bank (Cream Finance fork) on Ethereum. Tracks adjustments to the protocol's reserve percentage, which determines the portion of interest set aside as reserves rather than distributed to lenders.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 208        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 200000000000000000           | 50000000000000000            |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 145        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iLink\_Redeem\_event

Redemption events from Iron Bank's iLINK (Chainlink) interest-bearing token market on Ethereum. Tracks withdrawals of underlying LINK assets by recording the redeemer address, amount withdrawn, and corresponding iToken amount burned for analyzing lending market 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount      | in\_redeemTokens  | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------- | ----------------- | ------------------------------------------------------------------ |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 58         | 0xb59ecdf6c2aea5e67fafbaf912b26658d43295ed | 15030882      | 2022-06-26T21:02:30.000Z | 6429825340266942020   | 1024413854296376  | 0xc59e1dc9bbe6f4f0b84c682b01f3b87666cd94b4f3b012933403a91863100e32 |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 195        | 0x0e910a91f98ca9b5848b16d5c294645a2c4ba643 | 11692902      | 2021-01-20T14:41:50.000Z | 517807083048837023206 | 5178070830487     | 0xcbc3e4da820936e5decf694c799d93a9a3d753784ffc27d46a40db64b5ed2806 |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 89         | 0xb59ecdf6c2aea5e67fafbaf912b26658d43295ed | 13267946      | 2021-09-21T08:13:17.000Z | 204479125692152560280 | 32794943325115112 | 0xf4c8cef4d965cbc9204bec3438d929733a3de5e690987e321d7db8a6c9b98c8c |
</Accordion>

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

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

***

### iLink\_RepayBorrow\_event

Loan repayment events from Iron Bank V1's iLINK market on Ethereum, recording when borrowers repay LINK token debt. Contains payer and borrower addresses, repayment amounts, and updated borrow balances for tracking lending position 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount          | block\_timestamp         | in\_totalBorrows        | transaction\_hash                                                  | in\_accountBorrows      |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ----------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 309        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13021966      | 118587557732094019585955 | 2021-08-14T07:40:28.000Z | 27074489140698205765704 | 0x9ae0ad3caa75bbb9985f12e5ed8b777a3d9745b8f5a24631928882841813d159 | 27074489140698185473648 |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 171        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 14807347      | 11793351874334379071794  | 2022-05-19T21:49:51.000Z | 60735147658173948495    | 0xba802c13ab3b2d8652c5f4bd2e547f51f44392c1dc63a6d7490ded1b89a10629 | 60735147658150348635    |
  | 0xe7bff2da8a2f619c2586fb83938fa56ce803aa16 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 46         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13227025      | 173318341893435113252    | 2021-09-15T00:16:54.000Z | 32062821907913096040325 | 0x5c5971689588a922e0548906e3e62e6e38ec3c2be659e2f7d4150e660fa05fa9 | 32062821907913073857477 |
</Accordion>

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

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

***

### iMiM\_AccrueInterest\_event

Interest accrual events for the iMiM (Iron Bank MIM/Magic Internet Money) market on Ethereum, recording cash reserves, total borrows, borrow index updates, and accumulated interest. Used for tracking lending protocol interest calculations and borrower debt growth 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior             | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------- | ------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 372        | 13667182      | 3000094735891774982600073 | 1000000000000000000 | 2021-11-22T22:32:45.000Z | 0                      | 0x92c1cf8eae71852c2281cee687a8ee6a0da033793f337a40407b118fea4aef1f | 0                       |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 566        | 16434144      | 1906072637704788678       | 1034918877257369337 | 2023-01-18T13:59:11.000Z | 1435086614518473455559 | 0xd43d0fceac93e2de0020d71af0ab133823dead13bc353b53e6a4436a8600ea30 | 1152738787932511992     |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 326        | 16431807      | 1271906072637704788678    | 1034087574728233540 | 2023-01-18T06:10:11.000Z | 163933875730540943567  | 0x523a5afe8b4085e3344ba18a325f3ba0404d80b3cf5ab4849225aa80defeeb54 | 72044614078290092       |
</Accordion>

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

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

***

### iMiM\_Borrow\_event

Borrow event records from Iron Bank v1's iMiM market (Magic Internet Money) on Ethereum, tracking individual borrow transactions with borrower addresses, amounts borrowed, and cumulative account and market-wide borrow balances. Used for analyzing borrowing behavior, market utilization, and tracking debt positions for the MIM stablecoin market.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount       | in\_totalBorrows       | transaction\_hash                                                  | in\_accountBorrows     |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------------- | ---------------------- | ------------------------------------------------------------------ | ---------------------- |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 68         | 0xdeb9553eed4a1e9896000071e50a19ec83301574 | 15216784      | 2022-07-26T07:30:00.000Z | 210798124777801741544  | 365039836534374500299  | 0x7bc93537253ad76cd59d569b759e02fce40f36eb0a5a117d2a327fbe32579a14 | 210798124777801741544  |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 584        | 0xe173cc94d4755b72eb9196cf50dbcd2cba54e348 | 16355202      | 2023-01-07T13:28:11.000Z | 1000000000000000000000 | 1163861602514050652986 | 0x7ae29b1558c1c2fbaecb656ef0dc804a5ef12d720190a02b34d66b3d0768be1c | 1000000000000000000000 |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 330        | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 16431807      | 2023-01-18T06:10:11.000Z | 1270000000000000000000 | 1433933875730540943567 | 0x523a5afe8b4085e3344ba18a325f3ba0404d80b3cf5ab4849225aa80defeeb54 | 1270000000000000000000 |
</Accordion>

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

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

***

### iMiM\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iMiM_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iMiM\_Mint\_event

Mint events from Iron Bank's iMiM (interest-bearing MIM stablecoin) market on Ethereum, recording when users deposit MIM to receive iMiM tokens. Used for tracking lending pool supply activity and interest-bearing token issuance.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount           | in\_mintTokens   | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ---------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 0x77ee52b29358386e31765b07396d53229a2079af | 486        | 14020325      | 303066839186443369999999 | 3030668391862628 | 2022-01-17T02:24:17.000Z | 0xc9a3652cff6352bce1c494c10067ed928f98c6f50133b3a66ba4b396c0db4aeb |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 0xb0e83c2d71a991017e0116d58c5765abc57384af | 528        | 13857227      | 100486417098720325321785 | 1004864170986604 | 2021-12-22T20:48:14.000Z | 0x1a66c95b87a783e187417c766470d6c695dd5b7e69337699f913517076497c06 |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 0x23ae07851bd347cc1b4550253940a2774d1e76cc | 257        | 13668047      | 3000000000000000000000   | 29999999999982   | 2021-11-23T01:45:33.000Z | 0x82d65e4e56af9a106638ea4c008908bd1fb1b8987efa5421f9707a0ee8eb7c94 |
</Accordion>

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

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

***

### iMiM\_NewReserveFactor\_event

Reserve factor parameter changes for Iron Bank's MiM (Magic Internet Money) market on Ethereum. Tracks protocol fee adjustments where reserve factor determines the percentage of interest allocated to protocol reserves versus 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 395        | 13492071      | 2021-10-26T09:02:27.000Z | 0x442c5bb796adb7c1c0dc13a297007d788f12699acd2e3f560804b96865a92848 | 100000000000000000           | 0                            |
</Accordion>

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

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

***

### iMiM\_Redeem\_event

Redemption events from the Iron Bank iMiM (interest-bearing Magic Internet Money) market on Ethereum, capturing withdrawals where users burn iMiM tokens to receive underlying MIM collateral. Used for tracking lending market outflows and user redemption 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount          | in\_redeemTokens  | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------- | ----------------- | ------------------------------------------------------------------ |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 235        | 0x431e81e5dfb5a24541b5ff8762bdef3f32f96354 | 13618495      | 2021-11-15T05:26:40.000Z | 5808703000000000000000000 | 58087029999965395 | 0xd3c234902d2eca6eec2736c78e970678fdb76c2b39e0c7facc86f26506df0b61 |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 262        | 0x91ff3ed57c7bf84bd6a985a02336a4e176a9efa0 | 14407820      | 2022-03-18T02:54:48.000Z | 99500000000000000000000   | 994999999999407   | 0x423563ac2c9e683af6d5e5c066ae239e2b31b6200d27aea4949aedd89c8c2392 |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 195        | 0x77ee52b29358386e31765b07396d53229a2079af | 14516906      | 2022-04-04T02:37:22.000Z | 303066700000000000000000  | 3030666999998197  | 0x5445d0b74e07ecd91c383a4ef2112b3d445ede2da456cc55723034f4eb00c73a |
</Accordion>

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

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

***

### iMiM\_RepayBorrow\_event

Debt repayment events for the iMiM (Iron Bank MIM) market on Iron Bank v1 Ethereum, tracking when users repay borrowed MIM (Magic Internet Money) stablecoin with payer/borrower addresses, repayment amounts, and updated borrow balances. Used for analyzing lending activity, debt positions, and protocol health 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount       | block\_timestamp         | in\_totalBorrows      | transaction\_hash                                                  | in\_accountBorrows    |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------------- | ------------------------ | --------------------- | ------------------------------------------------------------------ | --------------------- |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 421        | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 16464724      | 1021132934057919533   | 2023-01-22T20:26:59.000Z | 164094670447150512378 | 0x03ad4405a0bf1b3a2bfb7e6a86ac4a4d1c1a25d8806cc19ab9c0113249c0120b | 0                     |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 0xe173cc94d4755b72eb9196cf50dbcd2cba54e348 | 161        | 0xe173cc94d4755b72eb9196cf50dbcd2cba54e348 | 16355256      | 250001026718840005807 | 2023-01-07T13:38:59.000Z | 163861831116462653475 | 0x028a7141f339991cb11955a6a10ba87f02fad0517ad53b2e39edc8ddbe3bdbdd | 0                     |
  | 0x9e8e207083ffd5bdc3d99a1f32d1e6250869c1a9 | false   | 0xe173cc94d4755b72eb9196cf50dbcd2cba54e348 | 262        | 0xe173cc94d4755b72eb9196cf50dbcd2cba54e348 | 16355222      | 400000000000000000000 | 2023-01-07T13:32:11.000Z | 763862523683051103544 | 0x9ba0cb0f420e8739b3867c966c198e61be6167ecab551a74f35d54151e60d515 | 600000791476407899920 |
</Accordion>

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

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

***

### iMUSD\_AccrueInterest\_event

Interest accrual events for Iron Bank's iMUSD (mStable USD) lending market on Ethereum, tracking accumulated interest, borrow index updates, cash reserves, and total borrows. Used for analyzing yield generation, market utilization rates, and protocol revenue 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior             | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows          | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------- | ------------------- | ------------------------ | ------------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 35         | 13468221      | 3018026934880782628305436 | 1005597415757913829 | 2021-10-22T15:32:07.000Z | 1649292507266454335611156 | 0x45540391f68194228f7413d708a9235da3c18b460891b86d0cdda5aad8ddb149 | 229343376201635360057   |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 126        | 13468362      | 3031185731907721272738893 | 1005600489419559748 | 2021-10-22T16:03:43.000Z | 1636138711168668805292329 | 0x0dbfe1bdd58e08a2980f53fecaa69a8a14f223b06f1427bb12698d497341a572 | 5000929153114114630     |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 9          | 14440557      | 206781682058992390652714  | 1020953648443260956 | 2022-03-23T04:56:45.000Z | 132330032226273939725719  | 0x47a8eaca593a1f33c898cf125ba2fe58a2108b9b6c68ed45b33d68c3884a6ea0 | 451846710925226138      |
</Accordion>

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

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

***

### iMUSD\_Borrow\_event

Borrow events from the Iron Bank v1 mUSD market on Ethereum, capturing when users take out loans against their collateral. Used for analyzing borrowing activity, debt positions, and protocol utilization trends.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount        | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows      |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | ------------------------ | ------------------------------------------------------------------ | ----------------------- |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 217        | 0xb655a9ecee1dd4eee62dcb4c2b42a7e2fab63a51 | 12876606      | 2021-07-22T14:01:06.000Z | 47000000000000000000000 | 211621381514301883995531 | 0xf8fe7761522c95511bbe840305e752cc094157772fe49f3988676738cdd10b68 | 76500320675264598512341 |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 459        | 0xb655a9ecee1dd4eee62dcb4c2b42a7e2fab63a51 | 12876613      | 2021-07-22T14:02:06.000Z | 1500000000000000000000  | 213121384384197368833109 | 0xb4ec13431df3725b983025c4a841ec832c6429951295ea62b8697846ebe636a1 | 78000321712720848510488 |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 166        | 0xa22fe318725a3858cf5ea4349802537798f0081a | 12692865      | 2021-06-23T21:33:23.000Z | 24000000000000000000000 | 76002573181981247425730  | 0x4ce5de4e9b81c7902b929ea3b56808059123de781e25e18d4252af597179f9cf | 24000000000000000000000 |
</Accordion>

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

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

***

### iMUSD\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iMUSD_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iMUSD\_Mint\_event

Mint events for Iron Bank's iMUSD (interest-bearing mUSD) token on Ethereum, tracking when users deposit underlying assets to receive iMUSD in return. Records minter addresses, underlying deposit amounts, and corresponding iToken shares issued for analyzing Iron Bank supply dynamics.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount           | in\_mintTokens   | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ---------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 0x2a15794575e754244f9c0a15f504607c201f8afd | 329        | 12955638      | 481140282032374602031183 | 4811192636752399 | 2021-08-04T00:53:19.000Z | 0xa8a49eb2e5a5b5b4758b09f1f918a05cf6de9414631a294ce61de2a224fb7f44 |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 0x2a15794575e754244f9c0a15f504607c201f8afd | 155        | 13458255      | 701717447546476587061692 | 7012410608184392 | 2021-10-21T02:10:32.000Z | 0x7877c218209077a5186e0c9fd8f24659ab420d1b028a38c4d2a87584d270465d |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 0xaf007d4ec9a13116035a2131ea1c9bc0b751e3cf | 167        | 13458362      | 453530652210421095147304 | 4532223323004496 | 2021-10-21T02:33:05.000Z | 0x16f052fd18dab25897de5e75192c32525dc30c96f8a297033f5982eadc81f3f1 |
</Accordion>

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

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

***

### iMUSD\_NewReserveFactor\_event

Reserve factor parameter changes for the mUSD (Iron Bank USD stablecoin) market on Iron Bank v1 Ethereum, showing old and new reserve factor mantissa values (18 decimal precision) used to calculate protocol revenue allocation from interest payments.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 214        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 100000000000000000           | 50000000000000000            |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 159        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iMUSD\_Redeem\_event

Redemption events from Iron Bank's iMUSD (interest-bearing mUSD) token contract on Ethereum, capturing when users withdraw underlying mUSD assets by burning iMUSD tokens. Records include redeemer addresses, underlying token amounts redeemed, and corresponding iToken amounts burned for analyzing withdrawal patterns and liquidity 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount         | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ---------------- | ------------------------------------------------------------------ |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 55         | 0x2a15794575e754244f9c0a15f504607c201f8afd | 13471913      | 2021-10-23T05:22:28.000Z | 327002710342521071537282 | 3267482084898822 | 0xce9f3c24c818da33b84af70c629c145d67714358bd061479c70f7856ff7fb6ba |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 170        | 0xaf007d4ec9a13116035a2131ea1c9bc0b751e3cf | 12632095      | 2021-06-14T10:42:07.000Z | 396780686274515443617052 | 3967805175964407 | 0xe78a07621e10574c05470f52de133eb227cd495f285b392e263b9134937563f2 |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 61         | 0xaf007d4ec9a13116035a2131ea1c9bc0b751e3cf | 13883148      | 2021-12-26T21:07:42.000Z | 639309648686459543022109 | 6380847232330328 | 0x39a193b6791cf170ddffc5cf0f611acf34aae4bebdf523825a6f72b974fb7def |
</Accordion>

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

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

***

### iMUSD\_RepayBorrow\_event

Loan repayment events for the iMUSD market on Iron Bank v1 (Ethereum), tracking when borrowers repay mUSD stablecoin debt. Records payer and borrower addresses, repayment amounts, and updated account and total borrow balances for analyzing deleveraging activity and debt management 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount          | block\_timestamp         | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows      |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ----------------------- |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 0x0cabab448ff897edef2013c6f7da320e83e9f2c3 | 352        | 0x0cabab448ff897edef2013c6f7da320e83e9f2c3 | 12594222      | 15255290000000000000000  | 2021-06-08T13:42:34.000Z | 26745786893655892656811  | 0x37a68f8bee441bec4d9945ed88e4fcbdc0cb1e438d0ea04aed8828b3ed005e6b | 26745786893655892563489 |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 0xa2ee96a65dd1f5b45ba15f04298822fc7172e355 | 50         | 0xa2ee96a65dd1f5b45ba15f04298822fc7172e355 | 14274398      | 203471181975280637544251 | 2022-02-25T09:17:37.000Z | 177234810701400638309441 | 0xc1b0033888ee6adf690e08bd2fc6fdba1dc5aa54c21092adb3bbe944fb33cd86 | 242666839258048773013   |
  | 0xbe86e8918dfc7d3cb10d295fc220f941a1470c5c | false   | 0x811213d2d0e26ecf65714074cef59119dd7f36d9 | 39         | 0xb655a9ecee1dd4eee62dcb4c2b42a7e2fab63a51 | 14382824      | 367226808154534278334    | 2022-03-14T05:19:19.000Z | 132257040409599923792985 | 0x084a0263b4db14507353e7f23ff16188886562b26a7848ca0331214a8a5f1b57 | 1189267396199795378629  |
</Accordion>

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

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

***

### iSEUR\_AccrueInterest\_event

Interest accrual events from Iron Bank's iSEUR (synth EUR) lending market on Ethereum, tracking borrowing costs, cash reserves, and cumulative borrow index updates. Used for analyzing lending rate changes and debt accumulation patterns for EUR-denominated 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior            | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows         | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------- | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ----------------------- |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 7          | 13725515      | 534488804386765640336570 | 1002908656763908601 | 2021-12-02T05:27:18.000Z | 155419502923134954329526 | 0xbd318c85798a37f48e0dbd64bcbcde3203fb4a5a0601e791db7606c40bf7f0e2 | 60193435689568634293    |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 32         | 13726050      | 537339453369818459261938 | 1002915994011302099 | 2021-12-02T07:33:39.000Z | 152569970128897887571294 | 0x9d4f77b854e92b6d947839a46354db0745952e52079c8c30e708382d49fead1a | 1116188815752167136     |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 55         | 12913829      | 0                        | 1000000000000000000 | 2021-07-28T10:13:13.000Z | 0                        | 0x961b458e0932502b2b51c7ce3f003fd3825b3d9411c061e3aa8005399a97794c | 0                       |
</Accordion>

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

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

***

### iSEUR\_Borrow\_event

Borrow events from Iron Bank's sEUR (Synth Euro) lending market on Ethereum, tracking when users borrow sEUR against collateral. Records include borrower address, borrowed amount, and updated total borrows for analyzing lending activity and debt 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount        | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows      |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | ------------------------ | ------------------------------------------------------------------ | ----------------------- |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 321        | 0x587b938a8b21ea570325e91bdd01b161783a75e8 | 12982944      | 2021-08-08T07:07:25.000Z | 11350000000000000000000 | 11350000000000000000000  | 0x79d86da58226a7fddfc226e2be2f37b832b836b61ebb1c7cc3ea4acf843c9698 | 11350000000000000000000 |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 78         | 0x3d842130b194169cbb40b4a2d5544c35f9399d3d | 13448807      | 2021-10-19T14:40:42.000Z | 59500000000000000000000 | 70856900003721336167105  | 0xab45b56f255f257cdc0ec0481de320be4c229fdd11034e50ffb853ab2d8d1149 | 59500000000000000000000 |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 33         | 0x93bcb41bbd351eed6d31e83687d324146bb74d8b | 13918259      | 2022-01-01T07:47:21.000Z | 73878167193565449966875 | 133805118332011334167063 | 0xead2e779fb2ce87c29becbee20d82a6763be6ac4e3799d78f495ee426c93e50d | 73878167193565449966875 |
</Accordion>

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

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

***

### iSEUR\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iSEUR_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iSEUR\_Mint\_event

Mint events for the Iron Bank SEUR (Synth Euro) interest-bearing token on Ethereum, recording when users deposit SEUR collateral to receive iSEUR tokens. Contains minter addresses, underlying amounts deposited, and iTokens received for tracking supply changes and lending 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount           | in\_mintTokens   | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ---------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 0x3609462f90d6291735dccff4141b3e315e1cdb28 | 110        | 14793797      | 158002128098884696306977 | 1574581604096087 | 2022-05-17T17:16:34.000Z | 0x741815e25509eafcb6a840e291728fe7c07b2026ff54c8fff55fdbec88adb683 |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 0xcd7270d1574e3513068606eed084d98e76b27e2c | 33         | 13244594      | 298708321997863486619606 | 2987054205647233 | 2021-09-17T17:27:51.000Z | 0xd8a48acc1949d9245b0819692c1a4673a41567e0d797eb072a54170bc73f8c9f |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 0x8506d946cc63d1f1f3a303d68b0da64597cd64f3 | 314        | 13527175      | 999519896933636583847098 | 9994254890740594 | 2021-10-31T21:23:56.000Z | 0xd8110ce1f2e0e316178be6e59d99d3d78f5219c19c7ac19db1d15158e3d6a99f |
</Accordion>

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

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

***

### iSEUR\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank sEUR (Synth Euro) market on Ethereum. Tracks adjustments to the protocol's reserve retention rate, showing transitions between old and new mantissa values for 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 165        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 220        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 100000000000000000           | 50000000000000000            |
</Accordion>

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

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

***

### iSEUR\_Redeem\_event

Redemption events from the Iron Bank v1 sEUR (Synth Euro) lending market on Ethereum, tracking withdrawals of underlying sEUR tokens in exchange for ibSEUR interest-bearing tokens. Records redeemer addresses, amounts withdrawn, and corresponding ibToken amounts burned for analyzing lending market liquidity 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount        | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 205        | 0xdeb9553eed4a1e9896000071e50a19ec83301574 | 15380777      | 2022-08-21T00:21:54.000Z | 61045159963519432102    | 598636059035     | 0x020ff02acc8f1b590520a11e6da5d353d6b28e7ba7d336afa79df56182a9a630 |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 205        | 0x4081268183e64cd9cb8dc4452194e0c85e254c63 | 14333327      | 2022-03-06T12:29:58.000Z | 23876099433624071334672 | 238362841127870  | 0x66b257f877246e92dfb466a58f3d3111371aace0eccc939b899a65a04e9b07f5 |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 282        | 0x8506d946cc63d1f1f3a303d68b0da64597cd64f3 | 14009781      | 2022-01-15T11:38:06.000Z | 2619859563704864591245  | 26175137830552   | 0x55ee6e78536c156171c6e72674f6a41075bd9dcfbb4c5d979a57671f86039476 |
</Accordion>

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

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

***

### iSEUR\_RepayBorrow\_event

Loan repayment events for the iSEUR market (SEUR stablecoin) on Iron Bank V1 Ethereum, tracking borrower addresses, payer addresses, repayment amounts, and updated borrow balances. Used for analyzing lending protocol debt management and borrower repayment 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount        | block\_timestamp         | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows     |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ---------------------- | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ---------------------- |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 0x83884ec924d43b6c6d1c52d7b6a57ce4121a4a53 | 10         | 0x587b938a8b21ea570325e91bdd01b161783a75e8 | 13725515      | 2850648983052818925368 | 2021-12-02T05:27:18.000Z | 152568853940082135404158 | 0xbd318c85798a37f48e0dbd64bcbcde3203fb4a5a0601e791db7606c40bf7f0e2 | 2855221888991372168860 |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 0x83884ec924d43b6c6d1c52d7b6a57ce4121a4a53 | 35         | 0x587b938a8b21ea570325e91bdd01b161783a75e8 | 13726050      | 1426478301844622400280 | 2021-12-02T07:33:39.000Z | 151143491827053265171014 | 0x9d4f77b854e92b6d947839a46354db0745952e52079c8c30e708382d49fead1a | 1428764475858021299688 |
  | 0xca55f9c4e77f7b8524178583b0f7c798de17fd54 | false   | 0x587b938a8b21ea570325e91bdd01b161783a75e8 | 210        | 0x587b938a8b21ea570325e91bdd01b161783a75e8 | 13765856      | 1260961398129048297416 | 2021-12-08T16:33:32.000Z | 149964034429381828503682 | 0x0ae69337b9c10516da7293829dc1fd8da0051820975f588babe53cd3cdcfb572 | 168573537767221952231  |
</Accordion>

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

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

***

### iSNX\_AccrueInterest\_event

Interest accrual events for the iSNX (Iron Bank Synthetix) market on Ethereum, tracking cash reserves, total borrows, accumulated interest, and borrow index updates. Used for calculating interest rates and analyzing lending pool performance 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior          | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ---------------------- | ------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 322        | 18410531      | 409934044931124841056  | 1446624892402270501 | 2023-10-23T04:14:23.000Z | 1037440706429312200433 | 0xd353bd2e1bff4bde0cd61d5e5ac462d6639e0e44a0ed3266e5e32d5fbe03b129 | 18855312068450186311    |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 205        | 12834081      | 2440918549714776424662 | 1027948579584125125 | 2021-07-15T21:54:56.000Z | 7124691602416240493384 | 0x8b82a9cba645a60f988716779ee473c200d5a911e8620b92ae13d02d4db7680b | 8397846430224767515     |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 280        | 14259749      | 2695132485918181717784 | 1114687682106959630 | 2022-02-23T02:45:10.000Z | 1647597705020087974620 | 0x3e33f26879713a9eda63515e127d25248637e5095b21187af3fc15f8605cd516 | 6769688618526861220     |
</Accordion>

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

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

***

### iSNX\_Borrow\_event

Borrow event logs from Iron Bank's SNX (Synthetix) market on Ethereum, tracking when users borrow SNX tokens with amounts borrowed, account-level debt, and protocol-wide total borrows. Useful for analyzing borrowing activity, leverage patterns, and debt accumulation in the SNX lending market.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount       | in\_totalBorrows       | transaction\_hash                                                  | in\_accountBorrows     |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------------- | ---------------------- | ------------------------------------------------------------------ | ---------------------- |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 340        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 14131604      | 2022-02-03T07:10:09.000Z | 3231295032657230612991 | 4870979554709251843861 | 0x62fe9800b499c90ce8621ae8a4b3841db0db051470f391f95fb56b239cf02c34 | 4856274585135003122449 |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 338        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 14131604      | 2022-02-03T07:10:09.000Z | 215766334816408578     | 1639684522052021230870 | 0x62fe9800b499c90ce8621ae8a4b3841db0db051470f391f95fb56b239cf02c34 | 1624979552477772509458 |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 32         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 14131667      | 2022-02-03T07:23:46.000Z | 2359192200701542       | 4870993745581039222246 | 0x6864469f07971155c8ab0d7276e89ef3a1859832dcd3606c0da545449d780659 | 4856288740288207331701 |
</Accordion>

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

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

***

### iSNX\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iSNX_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iSNX\_Mint\_event

Mint event logs from Iron Bank's iSNX (interest-bearing SNX) market on Ethereum, recording when users deposit SNX tokens to receive iSNX in return. Used for tracking supply changes and collateral deposits in the Iron Bank lending 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount         | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ---------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 0x76d542089f923b08da0b8174e0150ca2217566f9 | 76         | 12821759      | 982419969351194451     | 9701455959     | 2021-07-13T23:47:49.000Z | 0x14a82fb3a10ee334ffed37b71ca28e1b4b543a81c794c60a8e90aa2bba160ad1 |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 0x4d38b1ac1fad488e22282db451613edd10434bdc | 76         | 12552772      | 8210071491427799580508 | 81942712795982 | 2021-06-02T04:05:27.000Z | 0xe285359df2002c3c694d15374d05ff5afb09c025acc62d917b5c26ea31477e06 |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 0x22f1b242594dc6246099af52de25bc3254f196f8 | 253        | 15511742      | 89543090350000000000   | 816047916273   | 2022-09-11T00:13:59.000Z | 0xb758b67281e28186791a857edf04266d48fd791c81925cddf152f03d419e31f8 |
</Accordion>

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

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

***

### iSNX\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank SNX (iSNX) lending market on Ethereum. Tracks adjustments to the protocol's reserve allocation percentage with old and new values in mantissa format (18 decimals).

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 212        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 200000000000000000           | 50000000000000000            |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 149        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iSNX\_Redeem\_event

Redemption events from Iron Bank's SNX (Synthetix) lending market on Ethereum, recording when users withdraw underlying SNX tokens by burning iSNX interest-bearing tokens. Used for tracking lending market withdrawals and calculating net deposits for liquidity 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount      | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 110        | 0x1e18b8b6f27568023e0b577cbee1889391b2f444 | 16043583      | 2022-11-25T01:00:47.000Z | 38850004494644697713  | 342862713105     | 0x58cda33da6b7b6d8730af8843090769ccc0b21ba9934f7ae7fd4820993942f10 |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 138        | 0xc11c91a9791f76bc3c347600baed02e6f034170c | 13416410      | 2021-10-14T12:49:08.000Z | 247130024974884932620 | 2387936539445    | 0x3a4384658c5ce030fd9c4000fcbda36875c9197d55f7cb8b0b011588f11bf356 |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 160        | 0x4d38b1ac1fad488e22282db451613edd10434bdc | 12602915      | 2021-06-09T22:07:31.000Z | 198900583947438620064 | 1980094561846    | 0x27363acf63bd6f7686c99a2a7d6e5bcfb6a77fdfcb8947b6d726dfbcd9803678 |
</Accordion>

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

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

***

### iSNX\_RepayBorrow\_event

Borrow repayment events from Iron Bank V1's iSNX (Synthetix) market on Ethereum. Tracks repayment amounts, updated borrow balances per account, and total market borrows for analyzing debt reduction activity and portfolio health.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount        | block\_timestamp         | in\_totalBorrows       | transaction\_hash                                                  | in\_accountBorrows     |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ---------------------- | ------------------------ | ---------------------- | ------------------------------------------------------------------ | ---------------------- |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 122        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13606860      | 721647019723978894748  | 2021-11-13T09:26:06.000Z | 4622259470568089471226 | 0x478da1cc5e7eb37a751be1bfe633f19355ebf80d84b5a62db70c1cf3827f066c | 4622259470568088940797 |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 157        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13058887      | 5584982196460296991930 | 2021-08-20T00:06:37.000Z | 7480544769364051198413 | 0xa0bb0a2223768960ceb2c7153bd3a8a9ccbbbf6571de569bfcc734eab3ef4ac5 | 7480544769364050886515 |
  | 0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 131        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13117922      | 169842481599410087013  | 2021-08-29T03:10:35.000Z | 7519429215302372354248 | 0xace5050d359dbfc88cb3460df2621ca7a1bc4cb6aa0b4296ae5d56a9a963a456 | 7519429215302372017761 |
</Accordion>

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

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

***

### iSUSD\_AccrueInterest\_event

Interest accrual events for the Iron Bank V1 sUSD (Synthetix USD) lending market on Ethereum, recording periodic updates to total borrows, borrow index, and accumulated interest. Used for tracking lending pool state changes and calculating variable interest rates for borrowers.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior            | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows        | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------- | ------------------------ | ----------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 236        | 12815343      | 24097290121660966239144  | 1021081921880278440 | 2021-07-12T23:17:03.000Z | 24366680061339831667861 | 0x36b4bf1a544d5b8bf34c4cf5c2cdb43671c2ac35dd25668f47f0e499557e19b9 | 748803501764547123      |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 206        | 12814362      | 21983425718856863541957  | 1021050543386500557 | 2021-07-12T19:35:04.000Z | 26479795660642169817925 | 0x9a5560f3d70058cd413eca4e22429cb40c72c0f33e06a4ad0c8d3045f93353d1 | 10000880601512578445    |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 157        | 13734699      | 134671142227355057480585 | 1062621176847751611 | 2021-12-03T16:49:20.000Z | 45227464780225137805566 | 0x27ffcb85b6977869ff64bf9883091282ae475807e365d7ee0721add183fb88b0 | 4965892131693129396     |
</Accordion>

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

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

***

### iSUSD\_Borrow\_event

Borrow event logs from Iron Bank's sUSD (Synthetix USD) lending pool on Ethereum, tracking individual borrow transactions with amounts, borrower addresses, and cumulative account/total borrow balances. Used for analyzing lending activity, borrower behavior, and debt positions in Iron Bank's sUSD market.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount         | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows       |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ------------------------ |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 294        | 0x6e868846b2182235c16fd122fcd44739e55a58e4 | 16004956      | 2022-11-19T15:28:35.000Z | 10000000000000000000000  | 11805466730224719489087  | 0x76659caa230d1c09a463ed109375abe8cd1f8a2eaa06e4ab6a79ebbcd30d3383 | 11065928762241827551767  |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 121        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12565072      | 2021-06-04T01:46:24.000Z | 8133225441463506683      | 297759462939361600425556 | 0xde8d41fb5ffe95fbec40c8edabcafabf6b809a8c5d7b1298c73f73b747b525b8 | 297759462939361596477433 |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 123        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12565072      | 2021-06-04T01:46:24.000Z | 138280882437297556336179 | 436040345376659156761735 | 0xde8d41fb5ffe95fbec40c8edabcafabf6b809a8c5d7b1298c73f73b747b525b8 | 436040345376659152813612 |
</Accordion>

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

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

***

### iSUSD\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iSUSD_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iSUSD\_Mint\_event

Mint events from Iron Bank v1's iSUSD lending market on Ethereum, tracking when users deposit sUSD (Synthetix USD) to receive interest-bearing iSUSD tokens. Records the depositor address, underlying token amount deposited, and iTokens minted for analyzing lending activity and liquidity provision.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount          | in\_mintTokens  | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ----------------------- | --------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 0xc407d9993b29f0ada4a98686f134c78567d0f562 | 107        | 13258971      | 40000000000000000000000 | 391085663380698 | 2021-09-19T22:45:58.000Z | 0x731e86bd25ab89d6b952aeadbfaca5752c92e5d7e8805930bbd0d1b0e43d49f4 |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 0x8897ca3e1b9bc5d5d715b653f186cc7767bd4c66 | 302        | 12560804      | 24923000000000000000000 | 248097319067329 | 2021-06-03T09:41:14.000Z | 0x3e05d752282c15208a76be26e5dc01df7c59fa642e346cbbbb551e01e37c19eb |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 0x8897ca3e1b9bc5d5d715b653f186cc7767bd4c66 | 209        | 12560312      | 2819493965301064357589  | 28071869151671  | 2021-06-03T07:54:24.000Z | 0xa045e2521ac934b3ff5180411002419a835d1c251f629f7d77a6bf772ac76fc7 |
</Accordion>

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

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

***

### iSUSD\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank sUSD (Synth USD) lending market on Ethereum. Tracks governance adjustments to the protocol's reserve requirements, with mantissa values representing 18-decimal precision percentages.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 256        | 11962545      | 2021-03-03T02:12:15.000Z | 0x9523d2d18af4ae1e73e4c208f2f076edc672b2669c2ade25af6d82bd66add55c | 50000000000000000            | 0                            |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 204        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 100000000000000000           | 50000000000000000            |
</Accordion>

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

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

***

### iSUSD\_Redeem\_event

Redemption events from Iron Bank's iSUSD market on Ethereum, tracking withdrawals of underlying sUSD (synthetic USD) tokens in exchange for burning iTokens. Contains redeemer addresses, token amounts, and corresponding iToken quantities for analyzing lending pool exit 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount         | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ---------------- | ------------------------------------------------------------------ |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 148        | 0x178fb34ee5bc91b981b1c5ade8249900139ca877 | 12624245      | 2021-06-13T05:28:01.000Z | 2300134394152877187851   | 22807255273958   | 0xe3be8bd2cabbb32d80d78cf87ffe44fc1cd098ed5a5c34cc05f00bbcf193b34a |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 88         | 0x178fb34ee5bc91b981b1c5ade8249900139ca877 | 12625075      | 2021-06-13T08:40:12.000Z | 100340939837001445586964 | 994942168295386  | 0xf627e8893b5fdc7630e7327f0ff33d0f0d22983efdf9852a3dceed6c5203789a |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 167        | 0x178fb34ee5bc91b981b1c5ade8249900139ca877 | 12626806      | 2021-06-13T14:59:39.000Z | 24848521961036996604819  | 246388148690657  | 0xf92506bae7bd31d5c11a36c60622e57d20291ea55a54dbb5bd92f5495dfa24c7 |
</Accordion>

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

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

***

### iSUSD\_RepayBorrow\_event

Borrow repayment events for the sUSD (Synth USD) market on Iron Bank V1 lending protocol on Ethereum. Tracks borrower addresses, repayment amounts, and remaining account balances for analyzing debt repayment patterns and protocol solvency.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount         | block\_timestamp         | in\_totalBorrows        | transaction\_hash                                                  | in\_accountBorrows      |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ----------------------- | ------------------------ | ----------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 69         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12721250      | 9739513706869912560537  | 2021-06-28T07:40:04.000Z | 36886114012456514000380 | 0x943665e57bc29049378c8ee6af1d0184fc407cec695c4ba984cba955fee5a1f2 | 36883807897028887593031 |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 0xd6e3e771a271c7d773583f9770fc112af15a916f | 363        | 0xd6e3e771a271c7d773583f9770fc112af15a916f | 17666484      | 1693720000000000000000  | 2023-07-10T23:21:23.000Z | 9036537955008079794731  | 0x06d4ff2434c99910f2085d62a46398a2afa6d74392ad5d3f236945d1bd25eb88 | 1211312533055759425499  |
  | 0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 308        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12660536      | 50415845610211431332594 | 2021-06-18T20:18:17.000Z | 49342802843553921706733 | 0x7bb5d424c54e388047570a4e1c7a11179386f9a818926e7a457acc94f0379b11 | 44924321270766643234328 |
</Accordion>

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

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

***

### iSUSHI\_AccrueInterest\_event

Interest accrual events for the Iron Bank SUSHI lending market on Ethereum, capturing cash reserves, total borrows, borrow index, and accumulated interest per block. Used for tracking SUSHI market interest rate calculations and lending protocol accounting 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior            | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows         | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------- | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ----------------------- |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 51         | 12882670      | 137766029595254678225954 | 1022622539051421049 | 2021-07-23T12:37:51.000Z | 110092501823557890482188 | 0x9fb28b24cdc6bfed63357c1be19b684eaa7e7f92ad7eed69915827e33385d4cd | 150851095391443442      |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 256        | 12885100      | 135471424551487163655332 | 1022767369824353709 | 2021-07-23T21:43:41.000Z | 112403023895293866184353 | 0xf359494ec38476e14f84fe60fc567a603475269563b738651bfb329d10ed37c1 | 15917027968461131543    |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 123        | 12882566      | 139697270294062255876004 | 1022616513590031011 | 2021-07-23T12:11:37.000Z | 110091853140301128032050 | 0x670a62f36cea08036e2a12b9a341a24a9ae43695553e636b179c75cdae5cee32 | 15582074908232818307    |
</Accordion>

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

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

***

### iSUSHI\_Borrow\_event

Borrow events from Iron Bank v1's iSUSHI (SUSHI token) lending market on Ethereum, capturing when users take out SUSHI-denominated loans. Contains borrower addresses, loan amounts, cumulative account and protocol-wide borrow balances for tracking lending activity 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount      | in\_totalBorrows        | transaction\_hash                                                  | in\_accountBorrows      |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------- | ----------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 347        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13480322      | 2021-10-24T12:55:02.000Z | 66300859830034406095  | 64901293362420143951894 | 0xb64271943b21126153fcc4844465bfd1c45dc03cdb6d04d896fd15493561cdc2 | 52826758393657951295919 |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 183        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13482615      | 2021-10-24T21:44:09.000Z | 1255919700270644332   | 64588088534539209252111 | 0xf9b9de47945d125e95e32c78781b633b931233deeec7eb341eee72424ed19a65 | 52512109439560356948896 |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 119        | 0xbf0957e763511f6859c5e1cc25f23b306eb0ff5b | 16765178      | 2023-03-05T22:31:23.000Z | 600000000000000000000 | 4058320014431387804799  | 0x9064853fc782416e47d62b73e488affd3895192b2ad1fa01b7f44dad3c3a2b8b | 600000000000000000000   |
</Accordion>

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

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

***

### iSUSHI\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iSUSHI_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iSUSHI\_Mint\_event

Mint events from Iron Bank's iSUSHI (interest-bearing SUSHI) market on Ethereum, recording when users supply SUSHI tokens to receive ibSUSHI tokens. Tracks deposit amounts, minted ibToken quantities, and minter addresses for analyzing lending market activity and supply dynamics.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount          | in\_mintTokens  | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ----------------------- | --------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 0x0ea4a285e1353f490ec7f473ab3174cac71cf79a | 69         | 13719753      | 26275502979496478872159 | 255306223589311 | 2021-12-01T07:25:29.000Z | 0x8215886ce01fee7d70236167ae9912eae3cf510f3908c7c40a1892bc28ecae6a |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 0xd553294b42bdfeb49d8f5a64e8b2d3a65fc673a9 | 292        | 12801838      | 434316959871752750938   | 4317993509747   | 2021-07-10T20:34:45.000Z | 0xdd4dab371e653bddf04afb9aef4fff549d3eed25ac21ae2291bc236a548f562b |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 0xbdfa4f4492dd7b7cf211209c4791af8d52bf5c50 | 243        | 13611609      | 99230400269285400349202 | 964885641467652 | 2021-11-14T03:28:20.000Z | 0x450c495fe75c865aa474eec450b23ebe1ea490ed55c75019b1f9bee706d35b76 |
</Accordion>

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

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

***

### iSUSHI\_NewReserveFactor\_event

Reserve factor adjustment events for the Iron Bank SUSHI lending market on Ethereum. Tracks changes to the protocol's reserve percentage (funds retained from interest) with old and new reserve factor values in mantissa format (18 decimals).

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 80         | 12412970      | 2021-05-11T11:45:48.000Z | 0x584ca6798d6da299ccaa52685ae85840be2a9a80cb20befdde16ce921b54fa0b | 200000000000000000           | 0                            |
</Accordion>

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

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

***

### iSUSHI\_Redeem\_event

Withdrawal events from Iron Bank's SUSHI lending market on Ethereum, recording when users redeem iSUSHI tokens to withdraw underlying SUSHI. Used for analyzing lending protocol withdrawals, liquidity flows, and user position management.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount      | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 318        | 0x8d5e52ef19f234a2dc91e0d6aa3d4d74f8128b9a | 14244541      | 2022-02-20T18:30:37.000Z | 537079582109050068691 | 5146158708533    | 0xad76e599d23c8ca7a6e8adaba5d59858d35230ccce26a78c1f3dce9776f8657e |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 253        | 0x26fad00b5e8bbd2cf4b39196de32af8c35e1f74a | 14241544      | 2022-02-20T07:14:45.000Z | 204860867961302065989 | 1963220328796    | 0x3b6db79431f7fa22947c50078a57f0a3dc97ae9cadf494cf277a60e5f4b24135 |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 198        | 0x2abba23bdc48245f5f68661e390da243755b569f | 13626456      | 2021-11-16T11:56:33.000Z | 217461656670638497870 | 2114410142255    | 0xa5e7d2537e1f043f487bd9a14af0b23d7b9551a5e98ad2e4734ab6c4fe87514d |
</Accordion>

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

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

***

### iSUSHI\_RepayBorrow\_event

Loan repayment events for the SUSHI token market on Iron Bank v1 (Ethereum), tracking borrower repayments with updated debt balances. Contains payer and borrower addresses, repayment amounts, and total outstanding borrow positions for analyzing debt management and liquidation risk.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount         | block\_timestamp         | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows       |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ----------------------- | ------------------------ | ------------------------ | ------------------------------------------------------------------ | ------------------------ |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 502        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13021962      | 27513203859353483297953 | 2021-08-14T07:39:01.000Z | 129125715903758522720437 | 0x337685a15b20b3cb70768e42bd0414947c5e8fa967a5ad9065226271f6f18276 | 129125715903758514244290 |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 0xce66faca3e5e033b9513255d09adb178e4a45a3c | 22         | 0x7420fa58ba44e1141d5e9adb6903be549f7ce0b5 | 18013723      | 1221117795396016019159  | 2023-08-28T14:25:23.000Z | 1629535642888003473154   | 0x2bef6b9459948a4cd90b53ae98d74471a1742b78efd39b72fcb392e9633369c3 | 1271943795865212387771   |
  | 0x226f3738238932ba0db2319a8117d9555446102f | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 144        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12646966      | 1059516721696644285106  | 2021-06-16T17:50:11.000Z | 27949006279029220163846  | 0x662d1f9c4234655b384e7cfc7aef59b38d5a7e7bc00477ab390c374d815fb28e | 27949006279029219644211  |
</Accordion>

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

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

***

### iUNI\_AccrueInterest\_event

Interest accrual events from Iron Bank's UNI (Uniswap token) lending market on Ethereum, recording accumulated interest, borrow index updates, cash reserves, and total borrows for tracking lending protocol 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior          | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows      | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ---------------------- | ------------------- | ------------------------ | --------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 368        | 13514848      | 6250770396161838789150 | 1012703059778970954 | 2021-10-29T22:44:49.000Z | 572383675632377876771 | 0xca96a713e6406c1b090b2a4e4feb103f11d8325b4a3742f0a774cd4a03ee0d6d | 300134223923499873      |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 248        | 12616147      | 6734563070774672598312 | 1002282601179380058 | 2021-06-11T23:20:00.000Z | 459310650966598716322 | 0x6c86019749164dd7bbb28ddf5ac7b229ff52d17980e49555724f7836e8f25fc8 | 45482628093040323       |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 372        | 15788255      | 1143302064156742885486 | 1028985238752364151 | 2022-10-20T08:56:11.000Z | 3172338196156410820   | 0xd6bdddbe3c29bfc79bf164aa182432e803e6014eabd27eb991e91dbaae3a561b | 258272732504742         |
</Accordion>

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

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

***

### iUNI\_Borrow\_event

Borrow event records from Iron Bank v1's UNI (Uniswap token) lending market on Ethereum. Tracks individual borrow transactions with amounts, borrower addresses, and running totals for analyzing lending protocol utilization and debt 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount      | in\_totalBorrows      | transaction\_hash                                                  | in\_accountBorrows    |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------- | --------------------- | ------------------------------------------------------------------ | --------------------- |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 60         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12763388      | 2021-07-04T21:13:44.000Z | 35904304282811626     | 501414023308117318327 | 0xdfa4cecc78d4b9aa7329816f8b4f0c28053af6cb292e7b94273ca4c061d328de | 501414023308117297518 |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 62         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12763388      | 2021-07-04T21:13:44.000Z | 299305485102937504434 | 800719508411054822761 | 0xdfa4cecc78d4b9aa7329816f8b4f0c28053af6cb292e7b94273ca4c061d328de | 800719508411054801952 |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 155        | 0xa3e826a5d1631baa4cf77d02ed829d2c6fcbc9e9 | 13917865      | 2022-01-01T06:24:04.000Z | 70000000000000000000  | 607634766909202632914 | 0x80ed58ac3ad81b8c50afc09289613765e4ebb5b97938db9ac3a2cf1bf512d40e | 70000000000000000000  |
</Accordion>

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

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

***

### iUNI\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iUNI_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iUNI\_Mint\_event

iUNI token minting events from Iron Bank v1 lending protocol on Ethereum, recording when users deposit UNI tokens to receive interest-bearing iUNI tokens. Contains minter addresses, underlying asset amounts, and resulting iToken quantities for tracking supply and collateral 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount          | in\_mintTokens  | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ----------------------- | --------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 0xd2b7be6b16028af44df31c6a07246e4e05ca0475 | 12         | 12424571      | 10770250000000000000000 | 107702499999999 | 2021-05-13T06:53:52.000Z | 0xdd0a227c85209ff2328b0f1926e66730defb4613c35fc5be9c6054c9eb20bf0d |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 0xb0ec32d3d219afd97b87e167ce518228647ef2b2 | 193        | 12423545      | 3327972672757302539363  | 33279726727573  | 2021-05-13T03:14:25.000Z | 0x33d79e0ff0e3c782e90d4fc916a74d4dfb9bd0c52582d132bb33c27c3b8c8079 |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 0x6b53eed95b18c4d8b6924c8d93c87895b4043a30 | 191        | 16865371      | 167341713495724113810   | 1644623101090   | 2023-03-20T00:38:47.000Z | 0xef77e7da923b31c42217878506d975d4879c5667e8742c16db8ba5973dc3a1cc |
</Accordion>

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

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

***

### iUNI\_NewReserveFactor\_event

Reserve factor parameter change events for the Iron Bank V1 UNI lending market on Ethereum. Tracks adjustments to the protocol's reserve accumulation rate (expressed in mantissa format with 18 decimals) for 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 78         | 12412970      | 2021-05-11T11:45:48.000Z | 0x584ca6798d6da299ccaa52685ae85840be2a9a80cb20befdde16ce921b54fa0b | 200000000000000000           | 0                            |
</Accordion>

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

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

***

### iUNI\_Redeem\_event

Withdrawal events from Iron Bank v1's UNI (Uniswap) lending market on Ethereum, tracking when users redeem their iUNI tokens to withdraw underlying UNI tokens. Records include redeemer address, amount of underlying tokens withdrawn, and iTokens burned for analyzing lending pool withdrawals.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount       | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 353        | 0x6cdd8cbcffb3821be459f6fcac647a447e56c999 | 12999085      | 2021-08-10T18:28:22.000Z | 4548739868280422908823 | 45449191577881   | 0xd0a0d12e02ed006a666409d250a22364e101f7ca5683ace4ec71e83e83c41157 |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 230        | 0x6cdd8cbcffb3821be459f6fcac647a447e56c999 | 12868196      | 2021-07-21T06:27:24.000Z | 16102820206142511128   | 160899949310     | 0x15526d0a548052101dcdd893f64d144dd45bcc260376995228649a6450e04360 |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 380        | 0xe69619a71cdd7696b34c52a5c1709c8a811faab8 | 13854173      | 2021-12-22T09:22:37.000Z | 1705792006328851142    | 17032653350      | 0x371ac90cfdfb50e9fad89255558d455ce5753abc2de59008de18392df2be8cd9 |
</Accordion>

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

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

***

### iUNI\_RepayBorrow\_event

Borrow repayment events from Iron Bank v1's UNI (Uniswap) lending market on Ethereum, recording payer and borrower addresses, repayment amounts, and updated account and total borrow balances. Used to track debt reduction activity and analyze repayment patterns in the UNI lending pool.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount       | block\_timestamp         | in\_totalBorrows      | transaction\_hash                                                  | in\_accountBorrows    |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------------- | ------------------------ | --------------------- | ------------------------------------------------------------------ | --------------------- |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 184        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12583302      | 340026361073429123719 | 2021-06-06T21:08:08.000Z | 245010603123177581225 | 0x23d7bc2b4453633b3e18d9dd197032be67f74825fed009c0fbc45b947b56170c | 245010603123177579370 |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 0x146695f336d600e9fbc78185aa0e64104fc191f2 | 115        | 0x146695f336d600e9fbc78185aa0e64104fc191f2 | 18339041      | 25001000000000000000  | 2023-10-13T04:18:23.000Z | 186959945091436329592 | 0xbf3b1cd252edb2eff80143792cfad870663035335ac768980c2a361ad85d599b | 33978738781312        |
  | 0xfeeb92386a055e2ef7c2b598c872a4047a7db59f | false   | 0x146695f336d600e9fbc78185aa0e64104fc191f2 | 485        | 0x146695f336d600e9fbc78185aa0e64104fc191f2 | 18338986      | 25000000000000000000  | 2023-10-13T04:06:47.000Z | 211960908647208676930 | 0x4203e55656abc558cacd7967239317c121cf7265c3f080dfaf32ed99bf3e744a | 25001029680100777619  |
</Accordion>

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

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

***

### iUSDC\_AccrueInterest\_event

Interest accrual event emitted by Iron Bank USDC lending markets when borrowing costs are calculated and applied. Records the borrow index progression, total outstanding borrows, accumulated interest for the period, and cash reserves prior to accrual.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior  | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | -------------- | ------------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 246        | 12525236      | 69007916212033 | 1038599975232059062 | 2021-05-28T21:33:21.000Z | 167945207743904  | 0xc7746451fa8c864f567a63233f32f5c0d2c4f7ef01ede9cb3fd6b51df53cc19d | 178456484               |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 462        | 12525211      | 69007916212033 | 1038598844353377867 | 2021-05-28T21:27:27.000Z | 167945029287420  | 0x9a14e8e3d8ac5a51bbe1a60924f9db7378d27988f7f643047928a2635a3972c6 | 542505259               |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 395        | 12525446      | 71256947947494 | 1038609383688217176 | 2021-05-28T22:16:11.000Z | 167946692430137  | 0x91132208405b72433a6a04acffd59d4e5cef9050e9980fa5ac7aa14ee15bb57d | 1484686233              |
</Accordion>

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

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

***

### iUSDC\_Borrow\_event

USDC borrow events from Iron Bank lending markets recording loan originations with borrower address, borrowed amount, and updated account and market-wide borrow balances. Used for tracking lending protocol utilization and debt positions across chains.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 447        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 14694032      | 2022-05-01T20:21:12.000Z | 182976           | 28610406376993   | 0x8215dc32e2ef8213af8ac2cc804fe9917ca4be0be79d33ecc60ec936a04fee53 | 18079589096181     |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 656        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 14694026      | 2022-05-01T20:20:20.000Z | 166334154        | 28858097517791   | 0x34c9134267aa8c07cf2efcdb0dc55c3604b54f6277a2c3de9536d561e3dc0aeb | 18327280575901     |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 116        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13169759      | 2021-09-06T03:24:00.000Z | 541266752        | 88628790814952   | 0xccbc982269e8aee25ecbd16520b429e930f2b846a945c7caff3d406acf46531d | 73150580778945     |
</Accordion>

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

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

***

### iUSDC\_Flashloan\_event

Flashloan events for the iUSDC (Iron Bank USDC) market containing loan amount, receiver address, total fee charged, and reserves fee allocation. Emitted when uncollateralized instant loans are executed and repaid within a single transaction on Iron Bank lending 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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iUSDC_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iUSDC\_Mint\_event

Iron Bank USDC deposit events recording when users supply USDC collateral to mint interest-bearing iUSDC tokens. Contains depositor address, underlying USDC amount, and corresponding iUSDC tokens received.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount | in\_mintTokens    | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | -------------- | ----------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 0x08bd64bfc832f1c2b3e07e634934453ba7fa2db2 | 310        | 12489372      | 206770838544   | 2015245365876205  | 2021-05-23T07:55:39.000Z | 0xe7b5c6ef868b6407a7842877b9cbc2460e33d6eb0ca7cb9be835e2270ad721cf |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 0x08bd64bfc832f1c2b3e07e634934453ba7fa2db2 | 233        | 12491069      | 1293915889705  | 12610105312859597 | 2021-05-23T14:22:03.000Z | 0xcd03cbe402aaa9942a242a790ad7055b751ade001eeb722b873d9f61b652bb4a |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 332        | 12490184      | 499837800000   | 4871418557395503  | 2021-05-23T11:11:29.000Z | 0xff05d92895c56b65886f01f07c26679e9260e84d54927054cdf3ed7941b9d8f9 |
</Accordion>

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

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

***

### iUSDC\_NewReserveFactor\_event

Iron Bank reserve factor updates for USDC lending markets. Records previous and new reserve factor values as 18-decimal mantissas, tracking protocol fee allocation changes for USDC collateral 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 288        | 14925548      | 2022-06-08T07:44:15.000Z | 0x5805e6f9e53c636adc0723f95ac6a478b80bf70a2f4e4cc5de7a489d5e7748d2 | 250000000000000000           | 100000000000000000           |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 115        | 15132514      | 2022-07-13T05:47:06.000Z | 0xb9aacc820e243ac186b2cdc3a3b770b666561f3f733bd953db5edca7d5a853f7 | 100000000000000000           | 250000000000000000           |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 155        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iUSDC\_Redeem\_event

Redemption events from Iron Bank USDC lending pools recording withdrawals of underlying USDC assets in exchange for burned interest-bearing iUSDC tokens. Contains redeemer address, underlying asset amount withdrawn, and derivative token amount burned for tracking lending pool outflows.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 54         | 0x6ee33c4a192118ea664612aec6f7b6e4aef78b87 | 15321086      | 2022-08-11T13:53:38.000Z | 3270012547       | 31192543331503   | 0xbf3ccc606f6b7c7b48dc23faa7df12477bea30247da4a98f8d5d6cd3c075b7c0 |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 80         | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 12033809      | 2021-03-14T01:42:15.000Z | 100063325328     | 986091361051011  | 0x4aa9f76c532f50b5ea5a9f303ba973e111040d240216019bc60da91bc18942ea |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 231        | 0x08bd64bfc832f1c2b3e07e634934453ba7fa2db2 | 12033827      | 2021-03-14T01:45:38.000Z | 20294940387      | 200000000000000  | 0x589b7270134bfbedf921cad6c5258cbc0e6c6866a745e23c37d3abe2be7d2ff2 |
</Accordion>

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

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

***

### iUSDC\_RepayBorrow\_event

Borrow repayment events from Iron Bank USDC lending markets, recording payer address, borrower address, repayment amount, and updated account and total borrow balances. Used for tracking debt reduction and loan servicing activity in Iron Bank protocol across multiple chains.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 122        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 14112248      | 1005247647492   | 2022-01-31T07:18:28.000Z | 54456030806491   | 0x72c2ab889572430168e08be3bbccdffc45edd5d90c69d4c752c9b9b618943ad3 | 44635484670146     |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 26         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 14111090      | 62867615925     | 2022-01-31T02:56:48.000Z | 55460428395460   | 0x45e44118ce1b9a084b4da8132900643a03d76a397a0dfb82cc17bffc6c57ba79 | 45639965730524     |
  | 0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c | false   | 0x5f5cd91070960d13ee549c9cc47e7a4cd00457bb | 176        | 0x5f5cd91070960d13ee549c9cc47e7a4cd00457bb | 13612988      | 1433681748      | 2021-11-14T08:49:25.000Z | 171964992241801  | 0x517ab9be2dc1cca39d64da00ae4ff9b9c85b2e17a531531543a723b10ea8b318 | 85498553598        |
</Accordion>

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

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

***

### iUSDT\_AccrueInterest\_event

Interest accrual events for the Iron Bank USDT lending market on Ethereum, capturing periodic updates to cash reserves, total borrows, borrow index, and accumulated interest. Used for tracking lending pool state changes and calculating interest 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior   | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | --------------- | ------------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 75         | 14220545      | 99627031564231  | 1092011933288238837 | 2022-02-17T01:03:45.000Z | 34164572832744   | 0x8ce4128090d4c4e1a31163a02e8e2934abb213798d8b971a66870c7cdae5ca11 | 489858481               |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 51         | 14223864      | 104160528602591 | 1092054148067755632 | 2022-02-17T13:17:29.000Z | 29632009983435   | 0xb6030b0a91b61a717971bea63437395b2070ad1ac1460c65373b1231eb5522c3 | 934189051               |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 50         | 14224820      | 104160528602591 | 1092066308412745778 | 2022-02-17T16:55:09.000Z | 29632279084950   | 0xb053d28a1f3e337cadc3da1972b00f0e6f2106f28c917cd160856252871acf9b | 269101515               |
</Accordion>

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

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

***

### iUSDT\_Borrow\_event

USDT borrow event logs from Iron Bank v1 lending protocol on Ethereum, tracking individual borrow transactions with amounts, borrower addresses, and cumulative account/total borrow balances. Enables analysis of borrowing behavior and protocol utilization for USDT 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 53         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12812453      | 2021-07-12T12:28:24.000Z | 30128936437      | 137363096919362  | 0x68fa3aa4479d4ea61c0cdfd8330267cd3e08aee826381ee313a6b9a4c5789099 | 131566896524773    |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 51         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12812453      | 2021-07-12T12:28:24.000Z | 1257395289       | 137332967982925  | 0x68fa3aa4479d4ea61c0cdfd8330267cd3e08aee826381ee313a6b9a4c5789099 | 131536767588336    |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 88         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12810204      | 2021-07-12T04:06:28.000Z | 11358972395633   | 147366914500526  | 0x03d0c1f7dfe750e9ab3c45509c852ceb6f8c7340abda89f89a4f4ebb436e9998 | 141570727330324    |
</Accordion>

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

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

***

### iUSDT\_Flashloan\_event

Flash loan execution events for Iron Bank's USDT (iUSDT) market on Ethereum. Records uncollateralized loan amounts, fees paid to protocol reserves, and recipient addresses for analyzing arbitrage and liquidation strategies.

<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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount  | log\_index | in\_receiver                               | in\_totalFee | block\_number | in\_reservesFee | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ----------- | ---------- | ------------------------------------------ | ------------ | ------------- | --------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 33000140864 | 220        | 0xd13e1da292432d06f65479f62d1ef4280125010a | 9900042      | 13668507      | 990004          | 2021-11-23T03:30:07.000Z | 0xdf9054095a062c606cfcab130162449a24b56776823a76bfdd342964b1c1159c |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 30916438402 | 239        | 0xd13e1da292432d06f65479f62d1ef4280125010a | 9274931      | 13601402      | 927493          | 2021-11-12T12:51:05.000Z | 0xbdb0b5de9a84fda2acba9c93f434ae46b7564572771906d51047c813ce24a954 |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 30892721823 | 176        | 0xd13e1da292432d06f65479f62d1ef4280125010a | 9267816      | 13583158      | 926781          | 2021-11-09T16:19:10.000Z | 0x1e32dd7cc03fdea57e96c5de57349b007fa920feb959263dc24f6900ebc59387 |
</Accordion>

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

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

***

### iUSDT\_Mint\_event

Mint events from Iron Bank's iUSDT lending market on Ethereum, recording deposits where users supply USDT and receive interest-bearing iUSDT tokens in return. Used for analyzing supply activity, liquidity provider behavior, and calculating time-weighted deposit volumes.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount | in\_mintTokens    | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | -------------- | ----------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 0x020edc614187f9937a1efeee007656c6356fb13a | 241        | 13755807      | 100000000000   | 954587111785983   | 2021-12-07T01:50:03.000Z | 0x4e286b383c49226579ec3ea96ca040b27231d1b542b06bbb918ef346644ee96a |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 51         | 13757506      | 299647610000   | 2860221587025800  | 2021-12-07T08:21:58.000Z | 0x2114e55cb6839a4c3757b9fa36810a472f8c384a5072706b1a463f0fc8dbfd98 |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 327        | 13758118      | 2296697000000  | 21922142020857633 | 2021-12-07T10:53:57.000Z | 0xc6abf3e1c3713f974ad839f983bc9c3c8f91c441231ed408769743b48446d0a9 |
</Accordion>

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

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

***

### iUSDT\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank USDT lending market on Ethereum. Tracks protocol revenue adjustments where reserve factor (shown in mantissa format with 18 decimals) determines the percentage of interest allocated to protocol reserves versus 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 290        | 14925548      | 2022-06-08T07:44:15.000Z | 0x5805e6f9e53c636adc0723f95ac6a478b80bf70a2f4e4cc5de7a489d5e7748d2 | 500000000000000000           | 100000000000000000           |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 200        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 100000000000000000           | 50000000000000000            |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 153        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iUSDT\_Redeem\_event

Redemption events from Iron Bank v1's iUSDT market on Ethereum, tracking withdrawals of underlying USDT by burning interest-bearing iUSDT tokens. Records redeemer addresses and both USDT amounts and iUSDT token quantities for analyzing lending market liquidity and user withdrawal 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount | in\_redeemTokens  | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ----------------- | ------------------------------------------------------------------ |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 109        | 0x2dded6da1bf5dbdf597c45fcfaa3194e53ecfeaf | 12851630      | 2021-07-18T16:17:48.000Z | 902258183201     | 8787012328212420  | 0x89e750d92bb265d6a7939b39acff4fed3f72700f80f429f8dec1a22905541e61 |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 41         | 0x020edc614187f9937a1efeee007656c6356fb13a | 12849421      | 2021-07-18T07:55:41.000Z | 143746734204     | 1400000000000000  | 0xc3f78cde7cfc132f263c80bb6e13d4b5925b1f940cdd285fe5288b2154dd424c |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 71         | 0x020edc614187f9937a1efeee007656c6356fb13a | 12850018      | 2021-07-18T10:19:29.000Z | 1166023275961    | 11356170498661125 | 0x593aaaa610c516ba9c7929c3b041390ebe7387683d28a45013b681a942de30d2 |
</Accordion>

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

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

***

### iUSDT\_RepayBorrow\_event

Loan repayment events for USDT (Tether) market on Iron Bank V1 lending protocol on Ethereum. Tracks borrower repayments with amounts repaid, updated account borrow balances, and total protocol borrows for analyzing debt repayment patterns and user solvency.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 416        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13752277      | 117921569110    | 2021-12-06T12:25:00.000Z | 65857685834250   | 0xf820c0bbd5971962197ab0d50d034b8a772e3b6804e5c01770aa4e0e2bf52171 | 58451534139756     |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 279        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13752271      | 198910122226    | 2021-12-06T12:23:49.000Z | 65975543420251   | 0x17e499cb9f27d4da80784e415485188a54238f168e61a08d0c45b81c61c2bed2 | 58569393357358     |
  | 0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a | false   | 0x5f5cd91070960d13ee549c9cc47e7a4cd00457bb | 63         | 0x5f5cd91070960d13ee549c9cc47e7a4cd00457bb | 12140463      | 155871965940    | 2021-03-30T11:53:22.000Z | 8797469622029    | 0x3bb3a731c5d5f2907c456ee7426e6ecf965e5de7d842319a9b4c45cbadb4b728 | 2817396576038      |
</Accordion>

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

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

***

### iWBTC\_AccrueInterest\_event

Interest accrual events for Iron Bank's WBTC (Wrapped Bitcoin) lending market on Ethereum, tracking periodic updates to borrow interest calculations. Records cash reserves, total borrowed amounts, accumulated interest, and the borrow index used for interest rate computations.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------- | ------------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 188        | 14474379      | 32663944930   | 1047269351112890732 | 2022-03-28T11:19:19.000Z | 294962766        | 0x3c45291494d0e14efa4ea43bf04049186afbdf4424aefb530378909b7d7b63aa | 526                     |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 159        | 14471984      | 32764298505   | 1047267482087124373 | 2022-03-28T02:22:52.000Z | 294962240        | 0x43887685ef8a6ed69036c2f17027fe9a2a89e1ab6f1cb2e94868a53875279e79 | 4095                    |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 59         | 13093089      | 28282880014   | 1028760697735363807 | 2021-08-25T07:06:02.000Z | 22604695131      | 0x9553af87aa639350a2877872f1d5aa1ccc8a25a6e43999f4b1f88bed4202480f | 6475069                 |
</Accordion>

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

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

***

### iWBTC\_Borrow\_event

Borrow events from Iron Bank v1's Wrapped Bitcoin (WBTC) lending market on Ethereum, tracking individual borrow transactions with amounts in satoshis, cumulative account borrows, and protocol-wide total borrows. Used for analyzing borrowing activity, debt accumulation patterns, and WBTC market 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 100        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12591207      | 2021-06-08T02:25:20.000Z | 2281292          | 23131419266      | 0xca9ea9b10202da37eb3786f6b19aaeac15a93a8050e363f984b9aa14f7ddb5e8 | 23131419352        |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 98         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12591207      | 2021-06-08T02:25:20.000Z | 1010418          | 23129137974      | 0xca9ea9b10202da37eb3786f6b19aaeac15a93a8050e363f984b9aa14f7ddb5e8 | 23129138060        |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 206        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13714685      | 2021-11-30T12:13:11.000Z | 736299           | 15746323519      | 0x6441f27ab87869c1c1cabd9aed6a012a74ab487c55bf738b5c4a131914d4113c | 15339137933        |
</Accordion>

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

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

***

### iWBTC\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iWBTC_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iWBTC\_Mint\_event

Mint events from Iron Bank V1's iWBTC (interest-bearing WBTC) market on Ethereum, recording deposits where users supply WBTC and receive iWBTC tokens in return. Contains minter addresses, underlying WBTC amounts deposited, and corresponding iWBTC tokens minted for analyzing liquidity provision and lending 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | -------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 0xc4805f44d9086e14216c3360ae89da9dc8d926af | 265        | 13802118      | 46120000       | 4542432262     | 2021-12-14T08:12:06.000Z | 0x515305de82585ee28df037a0b7df167fcc21d1256f19ec766a54c8b610c9f24e |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 0xe520679df7e32600d9b2caf50bd5a4337ea3cf89 | 369        | 12755929      | 11762634672    | 1169421632954  | 2021-07-03T17:25:05.000Z | 0x198443d412190b1eacb13887c147d759a430db7f6976410622bd9fe1ffebd455 |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 0xe520679df7e32600d9b2caf50bd5a4337ea3cf89 | 293        | 12753079      | 150207281      | 14933927940    | 2021-07-03T06:42:21.000Z | 0xcb83014c986bf66cfeffc1128ea1caab6c0d803d7ebdfdbc51474eb930cc206c |
</Accordion>

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

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

***

### iWBTC\_NewReserveFactor\_event

Reserve factor parameter changes for the Iron Bank WBTC (Wrapped Bitcoin) lending market on Ethereum. Tracks governance-initiated updates to the protocol's reserve allocation percentage, useful for analyzing risk parameter adjustments and protocol fee structure evolution.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 196        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 150000000000000000           | 50000000000000000            |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 151        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iWBTC\_Redeem\_event

Redemption events from Iron Bank v1's WBTC (Wrapped Bitcoin) lending market on Ethereum, recording when users withdraw their underlying WBTC by burning iWBTC tokens. Contains redeemer addresses, amounts withdrawn in WBTC satoshis, and corresponding iWBTC token quantities burned for analyzing lending pool outflows.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ---------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 256        | 0xdfc8056a3375dffda7d7400bb39327960486fcd5 | 16454193      | 2023-01-21T09:11:11.000Z | 33015860         | 3238605436       | 0x335a499e297c3fe22a1e803dcc6c5e08a896c4f44a7bbfb93cccea89f9ec5383 |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 52         | 0xe520679df7e32600d9b2caf50bd5a4337ea3cf89 | 16455703      | 2023-01-21T14:14:11.000Z | 209739819        | 20573847578      | 0x72d3cca80f3eb1a53297edd9d6254fda48951aa06b6eeaefd0e458e30d61b84f |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 276        | 0xe520679df7e32600d9b2caf50bd5a4337ea3cf89 | 13069747      | 2021-08-21T16:34:16.000Z | 1200977111       | 118851741101     | 0x83a565f8394c4e05f05f3d1b748add29741816970f86e238233d1f0977889435 |
</Accordion>

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

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

***

### iWBTC\_RepayBorrow\_event

Borrow repayment events from Iron Bank's Wrapped Bitcoin (WBTC) market on Ethereum, tracking when users pay down debt positions. Contains repayment amounts in WBTC's 8-decimal precision, updated borrow balances, and payer/borrower addresses for analyzing loan repayment behavior and protocol health.

<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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount | block\_timestamp         | in\_totalBorrows | transaction\_hash                                                  | in\_accountBorrows |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------- | ------------------------ | ---------------- | ------------------------------------------------------------------ | ------------------ |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 218        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 16261634      | 27038812        | 2022-12-25T12:03:11.000Z | 195657314        | 0xc792cbb310c5090f4e0aa2e1242dc1b8697c3c968f5e2f74cf88b2018fa3e4af | 12419268           |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 266        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13066427      | 20925269        | 2021-08-21T04:05:59.000Z | 22635983830      | 0x694a3a37e2f076d7ac50df1d059854a7e34f0ba0901f4ae8814dfb02b725da6b | 22635984019        |
  | 0x8fc8bfd80d6a9f17fb98a373023d72531792b431 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 74         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12863688      | 3040986         | 2021-07-20T13:31:48.000Z | 21952854175      | 0x73a4e4d538b576cbebf1d9c2dbc0d4ad79952cc12410f2d027c3b36174fb4d86 | 21952854327        |
</Accordion>

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

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

***

### iWETH\_AccrueInterest\_event

Interest accrual events for the Wrapped Ether (WETH) market in Iron Bank v1 lending protocol on Ethereum. Tracks periodic interest calculations including borrow index updates, accumulated interest, total borrows, and available cash for yield and utilization 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior           | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows        | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | ----------------------- | ------------------- | ------------------------ | ----------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 183        | 16923945      | 7175739196638153172893  | 1290225774754881161 | 2023-03-28T06:04:23.000Z | 11558212026744640779945 | 0x05808cac433cd045959faef8c745d3143a1a2417bbb67c50549806607fc9761c | 3542359675942716736     |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 1          | 13496372      | 42226023104430411541851 | 1062146328591548925 | 2021-10-27T01:11:02.000Z | 34871415913908352925273 | 0xca304d228b9edcc3449abc88c77a0ff57d108bdc8ac18842f290811d06978d1a | 87873341878102131       |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 257        | 13500238      | 31858251331238209624760 | 1062272294109214568 | 2021-10-27T15:37:44.000Z | 34894249664230107027868 | 0xbed2e9a744b5636e005a3c0e348b9d3d31a4f2987f135ad63430b785fb8323d6 | 24147346187926326       |
</Accordion>

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

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

***

### iWETH\_Borrow\_event

Borrow event logs from Iron Bank v1's Wrapped Ether (WETH) lending market on Ethereum, capturing each borrow transaction with borrowed amounts, borrower addresses, and updated account/protocol-level debt balances. Used for analyzing borrowing behavior and tracking WETH debt positions in the Iron Bank 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount   | in\_totalBorrows        | transaction\_hash                                                  | in\_accountBorrows      |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------ | ----------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 238        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12891184      | 2021-07-24T20:27:16.000Z | 26030341157763140  | 69224723044834997515660 | 0xb0a0ddf3ab690a21515e4b484aeff5506256c1537852fff7caaf66d279b9c801 | 58291462718204959206434 |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 79         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12891126      | 2021-07-24T20:16:00.000Z | 17243403411585432  | 69547096136294541726364 | 0x2e2ce91cfdf9e68aa8f16bbf252e787fddf09104e5b01465c5f90432c2190104 | 58613835858665576282800 |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 79         | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12890487      | 2021-07-24T17:55:44.000Z | 100244282013853408 | 69933900847388928454185 | 0x2a48ac1ae541c746849388fcdc6866d4e45d459f29b06cf0ab807f2122a7bf47 | 59000641117263615302385 |
</Accordion>

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

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

***

### iWETH\_Flashloan\_event

Flash loan events from Iron Bank v1's Wrapped ETH (WETH) market on Ethereum, capturing borrowed amounts, receiver addresses, and fee breakdown between total and protocol reserves. Used for analyzing flash loan activity, fee revenue distribution, and arbitrage patterns in Iron Bank's lending 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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount          | log\_index | in\_receiver                               | in\_totalFee    | block\_number | in\_reservesFee | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------- | ---------- | ------------------------------------------ | --------------- | ------------- | --------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 506681946978002018  | 42         | 0x28f1ecd0e9303dd864dda1f8f60959e5b1a9089e | 152004584093400 | 13169803      | 22800687614010  | 2021-09-06T03:31:19.000Z | 0x7884a95ab225ca268797af2c9580119aa35773883267e7dcc37ab094fe9bb4ac |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 140486858626737674  | 104        | 0x949ed86c385d191e96af136e2024d96e467d7651 | 42146057588021  | 13478425      | 6321908638203   | 2021-10-24T05:49:57.000Z | 0x562296ea47aa99d18733238f2e11fcb9b2cdc3a10bb1ba070f829a065d91cd29 |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 2175017583098819676 | 85         | 0x665175db45e206a94cc94b0de731bb99c61b0d89 | 652505274929645 | 13482120      | 97875791239446  | 2021-10-24T19:49:25.000Z | 0x891e70b9e4201c6f481c07054bad88e7c11c946535c20b96e1920e876b1fd0b0 |
</Accordion>

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

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

***

### iWETH\_Mint\_event

Mint events from Iron Bank v1's wrapped ETH (WETH) market on Ethereum, recording deposits of underlying WETH in exchange for iWETH interest-bearing tokens. Tracks minter addresses, deposit amounts, and corresponding iToken shares minted for lending activity 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount       | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | -------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 0xe4997f170b9ddfebab707025d8321e79d6a958a3 | 361        | 13708912      | 2927461994359746791  | 28553114227    | 2021-11-29T13:39:32.000Z | 0x7bf55f15509b0d324d8f03f9ebcec32ba4761057385964ac1a96a023f4fffffa |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 0x530defd6c816809f54f6cfa6fe873646f6ecf930 | 337        | 13705909      | 14568100000000000000 | 142098037892   | 2021-11-29T02:00:00.000Z | 0x4ee36f33d49e5947ce68f3fc5c3b356662b9f8b971e3b45cbfb804a746a0c059 |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 0xeea3311250fe4c3268f8e684f7c87a82ff183ec1 | 50         | 13706870      | 2077822030000000000  | 20266918716    | 2021-11-29T05:51:32.000Z | 0xfc18d9f6f0995cb82ef83dbc77f9fdab74c297a7ef8d15a9482e5c44b5a95467 |
</Accordion>

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

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

***

### iWETH\_NewReserveFactor\_event

Reserve factor parameter changes for Iron Bank's Wrapped ETH (WETH) lending market on Ethereum. Tracks governance updates to the protocol's reserve percentage, which determines the portion of interest allocated to protocol reserves versus lenders.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 194        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 150000000000000000           | 50000000000000000            |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 139        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
</Accordion>

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

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

***

### iWETH\_Redeem\_event

Redemption events from Iron Bank V1's Wrapped Ether (WETH) lending market on Ethereum, recording when users withdraw underlying WETH by burning interest-bearing iWETH tokens. Captures redeemer addresses, token amounts burned, and underlying WETH amounts received for analyzing lending market withdrawals and liquidity 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount      | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 59         | 0xeea3311250fe4c3268f8e684f7c87a82ff183ec1 | 13155919      | 2021-09-04T00:07:13.000Z | 481338287784546546    | 4726705172       | 0xc2e9c4787de3adb51089fa9c0606290a8266cda959226d9e9532369142fc1f4b |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 263        | 0xeea3311250fe4c3268f8e684f7c87a82ff183ec1 | 13157158      | 2021-09-04T04:50:50.000Z | 706836516157605373979 | 6941000000000    | 0xbbb28cebb2e8762f9b1d958263b416bdad10f1cfde9921ded0d73255dd758d34 |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 21         | 0xeea3311250fe4c3268f8e684f7c87a82ff183ec1 | 13161729      | 2021-09-04T21:43:19.000Z | 2790298664669663654   | 27399015152      | 0x864f6eaf0cf5641c7723906d46966a678a5a8eeda7ed6480d29a8ea8c670e9b9 |
</Accordion>

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

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

***

### iWETH\_RepayBorrow\_event

Loan repayment events from Iron Bank v1's Wrapped ETH (WETH) market on Ethereum, capturing when borrowers repay debt with payer addresses, amounts, and updated borrow balances. Used for analyzing borrowing behavior, debt management patterns, and protocol-level WETH lending 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount        | block\_timestamp         | in\_totalBorrows        | transaction\_hash                                                  | in\_accountBorrows      |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ---------------------- | ------------------------ | ----------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 525        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13325344      | 11326008627582020668   | 2021-09-30T05:50:30.000Z | 38514851308699603540183 | 0x06d4dea3e8223ae3af1c017622d0ee78ab1454b4f71ba8d418b83c5d9310d893 | 27632342692981884728616 |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 298        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13325939      | 4280670890441064479493 | 2021-09-30T08:09:26.000Z | 34233827737788112851021 | 0xcd0ad029e570e14373364bea72fc2b996940f0035abe100adc5e759f80958d63 | 23351318499474181946930 |
  | 0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 225        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13328536      | 4780285084836353083    | 2021-09-30T18:02:38.000Z | 38306821998710659135049 | 0xc47e8744d157e6779fec89e34cfc1179aebb0931d27ea3210aa7ecfe10579699 | 27424310125871907557642 |
</Accordion>

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

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

***

### iwstETH\_AccrueInterest\_event

Interest accrual events for the iwstETH (Iron Bank Wrapped Staked ETH) market on Iron Bank v1 Ethereum, capturing cash prior, total borrows, borrow index, and accumulated interest per block for calculating lending pool yields and borrowing costs.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior         | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows    | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | --------------------- | ------------------- | ------------------------ | ------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 225        | 17609239      | 142232862281669133601 | 1008587800001603340 | 2023-07-02T22:16:59.000Z | 1294115324386944643 | 0xc7a30c15c52c19ee046fb478273946b9e9f87ca1731c014c4844bb9b59e6e797 | 3887151684              |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 133        | 17609234      | 142132862281669133601 | 1008587796972094539 | 2023-07-02T22:15:59.000Z | 1394115320499792959 | 0x7ea106a43c62b50d3f889b094c4dfce678d98ecac4d7c02f8566f9eb9973caff | 72838644536600          |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 154        | 16849449      | 135082706320692618182 | 1000000000000000000 | 2023-03-17T18:56:59.000Z | 0                   | 0x2f5c8180eda2202e2dbfce5aa550441a2e6701f6cd3aa7886767de54bf6f2cc3 | 0                       |
</Accordion>

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

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

***

### iwstETH\_Borrow\_event

Borrow event logs from Iron Bank v1's wrapped staked ETH (wstETH) market on Ethereum, tracking each borrow transaction with amounts in wei, borrower addresses, and cumulative account/total borrow balances. Used for analyzing lending protocol utilization and tracking individual borrower debt positions 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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount    | in\_totalBorrows     | transaction\_hash                                                  | in\_accountBorrows   |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------- | -------------------- | ------------------------------------------------------------------ | -------------------- |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 316        | 0x2eb8a81202f711f4d99b24877636d8651a0df89c | 18149795      | 2023-09-16T16:10:47.000Z | 200000000000000000  | 204076702733349972   | 0xb28af44b4f87b04a817e70e76162d784a84b9ca2d7bd341cb96626acfe2a2d30 | 200000000000000000   |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 187        | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 16908527      | 2023-03-26T02:07:47.000Z | 9000000000000000000 | 22000004983190525508 | 0xfb1ddb39a1902e0ce931179aec753f0ee4273b926c4ef959a27f1eb05a069b7d | 22000004983190525508 |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 134        | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 16908712      | 2023-03-26T02:44:59.000Z | 6500000000000000000 | 28500047567182536248 | 0x9adbce4d65ef9e5f220495457f857d824b31b04aeae0fa11fc602498aa18c5a9 | 28500047567182536240 |
</Accordion>

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

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

***

### iwstETH\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iwstETH_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iwstETH\_Mint\_event

Minting events for the Iron Bank v1 wrapped stETH (wstETH) market on Ethereum, recording when users deposit wstETH collateral to receive ibWstETH tokens. Contains mint amounts in underlying wstETH and corresponding ibToken quantities issued to minter 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.                                                                  |
  | `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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount        | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | --------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 0x9ddcc3a4ea7f872531590eed12d69e63d108091d | 157        | 16849449      | 4935203338087478803   | 49352033311    | 2023-03-17T18:56:59.000Z | 0x2f5c8180eda2202e2dbfce5aa550441a2e6701f6cd3aa7886767de54bf6f2cc3 |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 0x96be3d4b507b11831bb5d3b8ad5e612262accab6 | 199        | 16845308      | 134930082910676841677 | 1349300827199  | 2023-03-17T04:58:11.000Z | 0x2767a900b9b9633bf6024b25076357c05eb64e65cf4e2487760d2ed761b734c3 |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 0x840ee400efca4bb0d26d8837f3c0724472237dc7 | 244        | 18019315      | 68651092587226992369  | 684380330460   | 2023-08-29T09:14:35.000Z | 0xfc92e209f7b9e7bea7e975946798bd779fa578b570fbcbda19b0787be130bc88 |
</Accordion>

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

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

***

### iwstETH\_NewReserveFactor\_event

Reserve factor adjustment events for the iwstETH (Iron Bank wrapped stETH) lending market on Ethereum, tracking changes to the protocol's reserve percentage. Used for analyzing Iron Bank's risk parameter governance and revenue allocation 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 458        | 16824402      | 2023-03-14T06:27:23.000Z | 0xaf811b4263011ee37a241c91003ef31e7ca588e8dba01f1525f0064a5c8f3ba2 | 150000000000000000           | 0                            |
</Accordion>

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

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

***

### iwstETH\_Redeem\_event

Withdrawal events from Iron Bank's wrapped staked ETH (wstETH) lending market on Ethereum, capturing when users redeem their ibWSTETH tokens for underlying wstETH collateral. Useful for analyzing Iron Bank liquidity withdrawals and tracking wstETH market supply 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount      | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | --------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 242        | 0x519f7709577c94999e4c7cfacb539cacb9edb7b8 | 17847049      | 2023-08-05T06:41:47.000Z | 7946250108441815383   | 79216301779      | 0x160ccc1524c41ff3b74b1081bb56220a43539ba9412d6dc2187d2da41f706aff |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 410        | 0x9ddcc3a4ea7f872531590eed12d69e63d108091d | 16965725      | 2023-04-03T03:04:23.000Z | 4935770000000000000   | 49351087469      | 0xa836443d67fcbd223db3ea92247c778a2e5646d10b97bc6ea83a118e4b27714b |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 169        | 0x96be3d4b507b11831bb5d3b8ad5e612262accab6 | 17888946      | 2023-08-11T03:25:47.000Z | 135349436967985505104 | 1349300827199    | 0xa2a470be625c0806560ca12fb604568fdac3c00b4faf40765f8e8526b71a4f16 |
</Accordion>

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

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

***

### iwstETH\_RepayBorrow\_event

Loan repayment events for wrapped staked ETH (wstETH) on Iron Bank V1 lending protocol on Ethereum. Tracks borrower repayments with amounts, updated borrow balances, and payer addresses for analyzing debt reduction activity and liquidation 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount      | block\_timestamp         | in\_totalBorrows     | transaction\_hash                                                  | in\_accountBorrows   |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | -------------------- | ------------------------ | -------------------- | ------------------------------------------------------------------ | -------------------- |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 345        | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 17040477      | 7032037339209600623  | 2023-04-13T19:32:47.000Z | 65                   | 0x35e70c251b1c79c2c24c13e8467f021681f8c59f825e22f4936601ccc897bf01 | 0                    |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 163        | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 17040452      | 10970000000000000000 | 2023-04-13T19:27:11.000Z | 17582035066377590850 | 0x9bb6845870c50b35f7023391b3756d2c093ca22a4599fe94a427e7cc98499b27 | 17582035066377590804 |
  | 0xbc6b6c837560d1fe317ebb54e105c89f303d5afd | false   | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 316        | 0xecded8b1c603cf21299835f1dfbe37f10f2a29af | 17040465      | 10550000000000000000 | 2023-04-13T19:29:59.000Z | 7032037046783508879  | 0x5fe2be89e8b7152e95a5b75691827a79115bc03e0a7a8ef5f7de52ccd62763db | 7032037046783508821  |
</Accordion>

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

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

***

### iY3CRV\_AccrueInterest\_event

Interest accrual events from Iron Bank's iY3CRV market on Ethereum, tracking periodic updates to borrow index, total borrows, cash reserves, and accumulated interest for the Y3CRV (Yearn 3pool Curve LP token) lending market.

<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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior              | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows   | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | -------------------------- | ------------------- | ------------------------ | ------------------ | ------------------------------------------------------------------ | ----------------------- |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 85         | 11974998      | 10489963693570919466999096 | 1004771199530973349 | 2021-03-05T00:19:10.000Z | 766489134027795051 | 0xde21e4d8f69039345cdbc79f4dd5fa342effde673f1c59207c59b0211fa3a0a3 | 127813                  |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 173        | 11979090      | 11533938384213030862014376 | 1004771199537022206 | 2021-03-05T15:19:51.000Z | 766489134032409418 | 0xd362ff840661d3c5b5446b0ceed70ab2436d0a77d824b96894ddbc0e011d7b4f | 1376967                 |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 146        | 11975031      | 11555054988953944472275422 | 1004771199531025638 | 2021-03-05T00:27:49.000Z | 766489134027834939 | 0xfc0da7502403e3e3e67e56f5cc749d96b00e0af1b804bb51f2e994955c2b1e30 | 39888                   |
</Accordion>

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

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

***

### iY3CRV\_Borrow\_event

Borrow event records from Iron Bank's iY3CRV market on Ethereum, tracking when users borrow Y3CRV (yEarn Curve Y Pool) tokens with amounts, account balances, and total market debt. Used for analyzing borrowing patterns, debt utilization, and individual account leverage in Iron Bank's Curve liquidity pool lending market.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount        | in\_totalBorrows         | transaction\_hash                                                  | in\_accountBorrows       |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------------- | ------------------------ | ------------------------------------------------------------------ | ------------------------ |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 215        | 0x3d08713164d502d86bac255a91051d8811fe9cf7 | 11539504      | 2020-12-28T01:54:10.000Z | 1000000000000000000000  | 1000001217316998476586   | 0xcfcb574f737b1a19199ddce66406393d03082efe0399bff17854fd198018fb70 | 1000000000000000000000   |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 144        | 0x431e81e5dfb5a24541b5ff8762bdef3f32f96354 | 11771861      | 2021-02-01T18:06:20.000Z | 50000000000000000000000 | 200000812013431742192836 | 0x50a034339180b46fc912bff5a6276e75fd156cee336ea6721736e78a201a7dde | 200000049913855905231897 |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 189        | 0x431e81e5dfb5a24541b5ff8762bdef3f32f96354 | 11772950      | 2021-02-01T22:12:07.000Z | 80000000000000000000000 | 510029616178543904653453 | 0x596326f15b47353ba55898e20d16379574ef02a325a28279656c296c86e851dc | 510028853991721560678528 |
</Accordion>

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

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

***

### iY3CRV\_Mint\_event

Mint events from Iron Bank's iY3CRV interest-bearing token contract on Ethereum, tracking when users deposit y3CRV to receive iY3CRV tokens. Used for analyzing liquidity provision and token issuance patterns in Iron Bank's Curve integration.

<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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount            | in\_mintTokens    | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------------- | ----------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 0x5f0b2078885d87bffee08233cc3ff6fd48450de0 | 193        | 11801647      | 3016091873936743143446    | 30053653886217    | 2021-02-06T08:21:14.000Z | 0xdb0130d8ab6470188a04690e6cb1aec986baee911ec1e3b27372233c64e3c381 |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 0x1e5ce6f088fd0adb4fcff31cfb02a61503311be9 | 240        | 11800244      | 3201497269447865044304636 | 31904696977736327 | 2021-02-06T03:19:21.000Z | 0x45592ce8b44fff8492bccb5ef12f92e3378448b73d417e7b6b1f6f153b479065 |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 0x909de82d392a523c8246e3216a22f110fe963930 | 243        | 11803182      | 15117951460987168576114   | 150623304118451   | 2021-02-06T13:55:46.000Z | 0xc98f0bcfeceeba9130ffa1e496355f2a04a83db8925a5e87769d6218254a8748 |
</Accordion>

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

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

***

### iY3CRV\_NewReserveFactor\_event

Reserve factor parameter change events for Iron Bank's Y3CRV market on Ethereum, tracking governance adjustments to protocol revenue allocation. Used for monitoring risk parameter updates and protocol fee policy changes 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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 143        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 41         | 13307330      | 2021-09-27T10:45:25.000Z | 0x01ba133d499275703b6500da0a1bf7af7d2744595bc20bf686e7ebbb4d394bc2 | 1000000000000000000          | 100000000000000000           |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 206        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 100000000000000000           | 50000000000000000            |
</Accordion>

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

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

***

### iY3CRV\_Redeem\_event

Redemption events from the Iron Bank iY3CRV market on Ethereum, tracking when users withdraw their underlying y3CRV tokens by burning interest-bearing iTokens. Records include the redeemer address, underlying asset amount redeemed, and corresponding iTokens burned for analyzing lending market withdrawals.

<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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount         | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------ | ---------------- | ------------------------------------------------------------------ |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 221        | 0xfe55c0ec3642fc79d4eb2c591a0641f187fb0337 | 12609672      | 2021-06-10T23:06:31.000Z | 90200000000000000000000  | 898163837781111  | 0x536e31950f9360648117215f39006a9e0e44c694683f2332d3615e59c494beb6 |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 141        | 0x72d4d59f31d0cb4a4213a5dc81fc0108241ecc71 | 12293115      | 2021-04-22T23:57:45.000Z | 170000000000000000000000 | 1692769982514289 | 0x39db3d77bc6c5964650b27f1153e2249657f2d9575aa1c725c8534fe0b972083 |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 148        | 0xbbccf6cab5b3aec26b0cbc6095b5b6ddbacfd59a | 12289472      | 2021-04-22T10:33:12.000Z | 230000000000000000000000 | 2290218211636979 | 0xa7577252fa871eb67c5b8a88e4c6376bed33e343f3b7a385a4baccd3359f0875 |
</Accordion>

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

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

***

### iY3CRV\_RepayBorrow\_event

Loan repayment events for the Iron Bank iY3CRV market on Ethereum, tracking borrowers paying down Y3CRV (Yearn 3pool Curve LP token) denominated debt. Captures payer and borrower addresses, repayment amounts in wei, and updated total borrow balances for analyzing debt reduction 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount       | block\_timestamp         | in\_totalBorrows      | transaction\_hash                                                  | in\_accountBorrows    |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | --------------------- | ------------------------ | --------------------- | ------------------------------------------------------------------ | --------------------- |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 0x2d407ddb06311396fe14d4b49da5f0471447d45c | 190        | 0x2d407ddb06311396fe14d4b49da5f0471447d45c | 12675503      | 744251674234209118    | 2021-06-21T04:19:13.000Z | 22814607423831004     | 0x32a2974d96f72a1af8dc8aa614aecb42ac42a80b828d381e58a6d6b95c563016 | 78344                 |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 0xc584ad3b7bd772729d52df2ace3c08f4a2aed5ac | 233        | 0xc584ad3b7bd772729d52df2ace3c08f4a2aed5ac | 11434419      | 217500000000000000000 | 2020-12-11T22:37:19.000Z | 851217330222927101    | 0x1cc8f47a3c545644c8982cf5e8d2117ad52bb6fda693180f6e4a1184c1f37b55 | 9063613049836         |
  | 0x7589c9e17bcfce1ccaa1f921196fda177f0207fc | false   | 0xc584ad3b7bd772729d52df2ace3c08f4a2aed5ac | 126        | 0xc584ad3b7bd772729d52df2ace3c08f4a2aed5ac | 11434410      | 196000000000000000000 | 2020-12-11T22:35:04.000Z | 218351217326272844842 | 0x50d7c5e94de867a29c28d9a017c0557fabdc3571f44af6d747180ae9d84d2928 | 217500009059678366751 |
</Accordion>

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

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

***

### iYFI\_AccrueInterest\_event

Interest accrual events from Iron Bank's YFI (Yearn Finance) lending market on Ethereum, recording periodic updates to borrow index, accumulated interest, total borrows, and available cash. Used for tracking borrowing costs and interest rate calculations on YFI collateral 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_cashPrior`           | `STRING`    | Cash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.                            |
  | `in_interestAccumulated` | `STRING`    | Interest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.                    |
  | `in_borrowIndex`         | `STRING`    | Cumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.     |
  | `in_totalBorrows`        | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_cashPrior        | in\_borrowIndex     | block\_timestamp         | in\_totalBorrows     | transaction\_hash                                                  | in\_interestAccumulated |
  | ------------------------------------------ | ------- | ---------- | ------------- | -------------------- | ------------------- | ------------------------ | -------------------- | ------------------------------------------------------------------ | ----------------------- |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 324        | 13651356      | 76131124283562915375 | 1054928384142833593 | 2021-11-20T10:28:11.000Z | 10895865004628575115 | 0x404a718c72a4843a11c8650e14c79b1ad05defa6137a93e55b4a17a00750c5e2 | 3257210593157998        |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 21         | 13099598      | 84410476666354106894 | 1036239852941454225 | 2021-08-26T07:21:09.000Z | 21334998233107930505 | 0xe13f16af0b9c5773e051d52ba2b7544fd2a2260f5820d07f05e94c69e82afb94 | 3390025025843352        |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 234        | 12766243      | 11295067688440697367 | 1018390478644309090 | 2021-07-05T07:50:05.000Z | 8853644468947318862  | 0xaa61bfe686eca4e4db6431a7897a003ab68142b24796d29ddbab7d72d9105750 | 1665748835850461        |
</Accordion>

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

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

***

### iYFI\_Borrow\_event

Borrow event logs from the Iron Bank iYFI (YFI token) market on Ethereum, tracking individual borrow transactions with amounts borrowed, account-level debt, and protocol-wide total borrows. Used for analyzing lending activity, borrower behavior, and YFI market utilization on Iron Bank.

<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_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_borrowAmount`   | `STRING`    | Amount borrowed in the transaction. Denominated in the smallest unit of the underlying token.                                                        |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_borrower                               | block\_number | block\_timestamp         | in\_borrowAmount  | in\_totalBorrows     | transaction\_hash                                                  | in\_accountBorrows   |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ----------------- | -------------------- | ------------------------------------------------------------------ | -------------------- |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 172        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13717816      | 2021-11-30T23:53:25.000Z | 528870959275382   | 10073709261917019279 | 0xee34ee0624ba598a808502efcb2194ba04688666ef4b1c1a508d6d801f186077 | 10071494158970131845 |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 172        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12450137      | 2021-05-17T05:50:11.000Z | 203469595311129   | 3215993370169281873  | 0xabb722653374ad0049d6a3695a92dfb6598638825e23feffe596508b7831688a | 3213986720940424917  |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 174        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 12450137      | 2021-05-17T05:50:11.000Z | 55414602858716707 | 3271407973027998580  | 0xabb722653374ad0049d6a3695a92dfb6598638825e23feffe596508b7831688a | 3269401323799141624  |
</Accordion>

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

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

***

### iYFI\_Flashloan\_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_receiver`      | `STRING`    | Address that receives tokens, assets, or rewards from the transaction. 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_totalFee`      | `STRING`    | Total fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest denomination of the token.                          |
  | `in_reservesFee`   | `STRING`    | Fee amount allocated to protocol reserves from a flashloan transaction. String-encoded integer value representing the reserve portion in the smallest denomination of the token. |
</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.ironbank_v1_ethereum.iYFI_Flashloan_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### iYFI\_Mint\_event

Mint events for the iYFI (Iron Bank YFI) token on Ethereum, recording deposits of YFI into Iron Bank V1 that generate interest-bearing iYFI tokens. Tracks the underlying YFI amount deposited, iYFI tokens minted, and user addresses for analyzing lending protocol supply 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_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `in_mintAmount`    | `STRING`    | Quantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.                 |
  | `in_mintTokens`    | `STRING`    | Quantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_minter                                 | log\_index | block\_number | in\_mintAmount      | in\_mintTokens | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ------------------- | -------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 0x8a5c6c309c3c9e8ad1b09ceb6833222f4d5efebb | 157        | 14405657      | 81553962957114437   | 318374437604   | 2022-03-17T18:38:58.000Z | 0x4a0e232965de3edfcd9ee0ee88d4a1417db7437c4fab29125794764e39a619c7 |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 0xe77884cddf148dd5f0e9191b33d8dbaddb16dfb5 | 157        | 12618464      | 4000004259042720794 | 16010610967299 | 2021-06-12T07:56:43.000Z | 0x857c401fc83e764f643337e8e64280701585775fc7e738c76dda63492f4b1750 |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 0xe52557bf7315fd5b38ac0ff61304cb33bb973603 | 119        | 12618404      | 4000000000000000000 | 16010614819957 | 2021-06-12T07:42:40.000Z | 0xcad9396dd3a9a3a82a21ee954c8678730bca9ee40a854379e05d1981595f5df2 |
</Accordion>

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

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

***

### iYFI\_NewReserveFactor\_event

Reserve factor updates for the Iron Bank YFI (iYFI) lending market on Ethereum, tracking protocol revenue allocation changes. Values are in mantissa format (18 decimals) representing the percentage of interest reserved for the protocol versus suppliers.

<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_oldReserveFactorMantissa` | `STRING`    | Previous reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.                                   |
  | `in_newReserveFactorMantissa` | `STRING`    | Updated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.                                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_newReserveFactorMantissa | in\_oldReserveFactorMantissa |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ---------------------------- | ---------------------------- |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 147        | 11683548      | 2021-01-19T04:27:01.000Z | 0xe0d07c764699e9597199bf7ce73f4dda48572650f602503a70a769125da4487f | 50000000000000000            | 0                            |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 210        | 12099809      | 2021-03-24T05:48:30.000Z | 0x98a64d84079aebffdee88ac71bc57cf7db8d452cbc46af9546a18c3c815b70d8 | 200000000000000000           | 50000000000000000            |
</Accordion>

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

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

***

### iYFI\_Redeem\_event

Withdrawal events from Iron Bank V1's iYFI (YFI interest-bearing token) market on Ethereum, recording when users redeem their iYFI tokens for underlying YFI. Used for tracking lending market liquidity withdrawals and user redemption 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_redeemer`      | `STRING`    | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `in_redeemAmount`  | `STRING`    | Amount of underlying asset tokens withdrawn from the lending pool during redemption.                                                                                                                          |
  | `in_redeemTokens`  | `STRING`    | Amount of interest-bearing pool tokens burned during the redemption transaction. String-encoded integer representing the quantity of cTokens or equivalent derivative tokens exchanged for underlying assets. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_redeemer                               | block\_number | block\_timestamp         | in\_redeemAmount    | in\_redeemTokens | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------- | ---------------- | ------------------------------------------------------------------ |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 243        | 0xe52557bf7315fd5b38ac0ff61304cb33bb973603 | 13262990      | 2021-09-20T13:52:21.000Z | 379601237783683926  | 1502360270512    | 0x37cbad0e17d90a8ea492602fd96a4ddda019ed6e1594a070ddf3c9f723f60eb1 |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 190        | 0x7fa748c703f0c5826299f3b495bb8338ba444ff3 | 12166633      | 2021-04-03T12:36:17.000Z | 12873629581297912   | 51719694674      | 0xb75b108cc6bc56ae2378ebd7af6a5b43f5836a1a81754f56f3a1c84b31a4b872 |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 264        | 0xe52557bf7315fd5b38ac0ff61304cb33bb973603 | 12705755      | 2021-06-25T22:01:35.000Z | 1004681298677545164 | 4016362599118    | 0x85ec9764da4e8e8f2b43ddf942333068ed6351643877e2ad50dc79ec3339762b |
</Accordion>

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

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

***

### iYFI\_RepayBorrow\_event

Loan repayment events for the YFI (yearn.finance) market on Iron Bank v1 Ethereum lending protocol. Tracks borrower repayments with amounts, updated account balances, and total protocol borrows for analyzing debt reduction and market 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_payer`          | `STRING`    | Address of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.              |
  | `in_borrower`       | `STRING`    | Address of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_repayAmount`    | `STRING`    | Amount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.                                                  |
  | `in_accountBorrows` | `STRING`    | Total amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.                                 |
  | `in_totalBorrows`   | `STRING`    | Total amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.                                |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_payer                                  | log\_index | in\_borrower                               | block\_number | in\_repayAmount     | block\_timestamp         | in\_totalBorrows    | transaction\_hash                                                  | in\_accountBorrows  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------- | ------------------------ | ------------------- | ------------------------------------------------------------------ | ------------------- |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 203        | 0xba5ebaf3fc1fcca67147050bf80462393814e54b | 13921132      | 1056602914919286822 | 2022-01-01T18:25:41.000Z | 3528696812359777093 | 0x3191200ef12a2d12114b90e3fd350aa86bc44c12e43aaaa3433570ca5acdbfd7 | 3490321431120990104 |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 0xa3e826a5d1631baa4cf77d02ed829d2c6fcbc9e9 | 314        | 0xa3e826a5d1631baa4cf77d02ed829d2c6fcbc9e9 | 13918032      | 963096294198572     | 2022-01-01T07:00:46.000Z | 4576086559633465470 | 0x4939acb534e58f0bd1d075f50686beb8ca9129bce362f9a8eb8c582d90ee1749 | 0                   |
  | 0xfa3472f7319477c9bfecdd66e4b948569e7621b9 | false   | 0xa3e826a5d1631baa4cf77d02ed829d2c6fcbc9e9 | 449        | 0xa3e826a5d1631baa4cf77d02ed829d2c6fcbc9e9 | 13918014      | 80000000000000000   | 2022-01-01T06:57:03.000Z | 4577049088561662600 | 0x4daa106628b2ab154d4355012bf8eb557342595bee680f9dfb850910abb1fef4 | 963096174814224     |
</Accordion>

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

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

***
