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

# reserve_v1_bsc

> Tables in tt-contracts.reserve_v1_bsc

## Tables

### DTF\_FeeRecipientsSet\_event

Fee recipient configuration events emitted when fee distribution parameters are updated in DTF (Decentralized Token Fund) contracts. Contains recipient addresses and their proportional allocation shares for protocol fee distribution.

<Accordion title="Columns">
  | Column             | Type                                              | Description                                                                                                                                          |
  | ------------------ | ------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP`                                       | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`                                           | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`                                          | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`                                           | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`                                          | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`                                            | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_recipients`    | `ARRAY<STRUCT<recipient STRING, portion STRING>>` | Array of recipient addresses for fee distribution. Hex-encoded, 0x-prefixed, 42-character strings.                                                   |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_recipients                                                                                                                                                                           | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x7182d9df1ca07df7dfd64ad5c4a209b652fe59c9 | false   | 551        | 65676050      | \[\{"portion":"500000000000000000","recipient":"0x36afca412629c96afc4069ce9dbc764a4a1e3913"},\{"portion":"500000000000000000","recipient":"0x3d99d12bf48d7115564b3ddca7d19195c929f74c"}] | 2025-10-23T22:17:25.000Z | 0xfdd32e697dfac83592fa40fb29f54baba2bbb48823c2b8929b08e5d7cbc5363c |
  | 0xcc366a5b3d17e205adf843a06e0f76a9c0e306bc | false   | 662        | 65671853      | \[\{"portion":"500000000000000000","recipient":"0x36afca412629c96afc4069ce9dbc764a4a1e3913"},\{"portion":"500000000000000000","recipient":"0x4d2395ea3b0d5fbe5c5e9f865652a746c6baa6c8"}] | 2025-10-23T21:24:57.000Z | 0x46b232402fd69cddf95dc8a4d3d7deedc22a01dfd9b75b319c8f071903381d41 |
  | 0x8a6395662d880d9d451c811d75b0c411309d9e1f | false   | 279        | 55763493      | \[\{"portion":"1000000000000000000","recipient":"0xd84e0c72dc2f8363b46d4adfc58bfd82e49222d9"}]                                                                                           | 2025-07-29T20:23:31.000Z | 0xea794f481738a8a7b179733dbe4a9d4c2afd422201069fdd0aebaa5725baef3c |
</Accordion>

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

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

***

### DTF\_MintFeeSet\_event

Event log capturing mint fee parameter updates in the protocol. Records the new fee value in basis points (1000 = 10%) along with contract address and transaction context.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_newFee`        | `STRING`    | Updated liquidation protocol fee. Numeric string representing basis points where 1000 equals 10%.                                                    |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newFee        | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ----------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x17e8cf666af0eefdeb5d227064902ad15cc35f70 | false   | 10000000000000000 | 129        | 60731718      | 2025-09-10T23:36:10.000Z | 0xffc95d7be9b1e94f8604d9482e4476be747ca1e991a8c65b5b3079ce35e4d4c8 |
  | 0x17e8cf666af0eefdeb5d227064902ad15cc35f70 | false   | 3000000000000000  | 281        | 60722968      | 2025-09-10T21:46:47.000Z | 0x517f8c627ebd86c77668af76a2219b8359a7bbe045e12d984ec50b1b91e041fb |
  | 0xda6d32301f3a11583890ab758b4232e1a15bd847 | false   | 3000000000000000  | 46         | 60723590      | 2025-09-10T21:54:34.000Z | 0xd3b008e2a398e37e883d8a8b0312e48a22333023b721bfac9e12978be383c9a2 |
</Accordion>

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

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

***

### DTF\_TVLFeeSet\_event

TVL-based fee configuration events emitted when protocol fees are updated. Contains annual fee percentage and instantaneous fee rate in basis points, used for tracking fee structure changes in reserve contracts.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_newFee`        | `STRING`    | Updated liquidation protocol fee. Numeric string representing basis points where 1000 equals 10%.                                                    |
  | `in_feeAnnually`   | `STRING`    | Annual fee rate expressed as a fraction of total value locked. Numeric string in wei representation where 10000000000000000 equals 1% per year.      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newFee | log\_index | block\_number | in\_feeAnnually   | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ---------- | ------------- | ----------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x7fa8138812b65036137b14e34e2485e973adecfc | false   | 158946658  | 347        | 58191380      | 5000000000000000  | 2025-08-19T22:14:59.000Z | 0xd0fbc6f5ea01d4cb0db5d5823e91654432a0342cba3b82ed1a90e9afc38df837 |
  | 0x578702fac5c54ae0af275c788a81f683b035a038 | false   | 158946658  | 393        | 64642672      | 5000000000000000  | 2025-10-14T22:38:32.000Z | 0x506f212f4876378f33a289e4968a84cae1caadd4ba06d3a47541e5832294cb49 |
  | 0xea3453aba46163c88231f9fb75dd86ba1eb2dc58 | false   | 318694058  | 594        | 59333084      | 10000000000000000 | 2025-08-29T20:09:04.000Z | 0xb9aa3d134105afac5ab32c248287046180f57aca73e07dfac761e30ca30c8d9e |
</Accordion>

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

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

***

### FolioDeployer\_GovernedFolioDeployed\_event

GovernedFolioDeployed event emitted when a new governed folio is deployed, containing the folio contract address, staking token (stToken), and governance structure addresses including owner and trading governors with their respective timelocks.

<Accordion title="Columns">
  | Column               | Type        | Description                                                                                                                                          |
  | -------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`    | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`       | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash`   | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`          | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`            | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`            | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_stToken`         | `STRING`    | Contract address of the staking token associated with the deployed folio. Hex-encoded, 0x-prefixed, 42-character string.                             |
  | `in_folio`           | `STRING`    | Contract address of the deployed folio. Hex-encoded, 0x-prefixed, 42-character string.                                                               |
  | `in_ownerGovernor`   | `STRING`    | Contract address of the owner governor for the deployed folio. Hex-encoded, 0x-prefixed, 42-character string.                                        |
  | `in_ownerTimelock`   | `STRING`    | Contract address of the owner timelock for the deployed folio. Hex-encoded, 0x-prefixed, 42-character string.                                        |
  | `in_tradingGovernor` | `STRING`    | Contract address of the trading governor for the deployed folio. Hex-encoded, 0x-prefixed, 42-character string.                                      |
  | `in_tradingTimelock` | `STRING`    | Contract address of the trading timelock for the deployed folio. Hex-encoded, 0x-prefixed, 42-character string.                                      |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_folio                                  | log\_index | in\_stToken                                | block\_number | block\_timestamp         | in\_ownerGovernor                          | in\_ownerTimelock                          | transaction\_hash                                                  | in\_tradingGovernor                        | in\_tradingTimelock                        |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------ | ------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------ | ------------------------------------------ |
  | 0x100e0efdd7a4f67825e1be5f0493f8d2aeac00bb | false   | 0x8898f58a9afd4af36b0da3ec6c3b84b45958f7a4 | 499        | 0x56a13f05b767948538132dd7d7dbacdf290a71bb | 59330918      | 2025-08-29T19:42:00.000Z | 0x2afd17039b8b84fc5f671145ef4b648a9edd6602 | 0x8045e724bfdbe78370b516901dd7e6cda9c1da31 | 0x6a2389f4bfd25a34f70e65f87c54245896d04adaf52c3c8d2a72427b940308f0 | 0x9b8499fc8557215f025f1042a599b1ece89eaf5f | 0x799acb4d940cd2635fa4e064138e7db0bf8ff704 |
  | 0x100e0efdd7a4f67825e1be5f0493f8d2aeac00bb | false   | 0xdaea7e78f1c77150c89e0aee5e604a86b2258489 | 448        | 0x56a13f05b767948538132dd7d7dbacdf290a71bb | 59331835      | 2025-08-29T19:53:28.000Z | 0x8597172b478ec87246a1f4dff0be118a28d6da55 | 0x240f43d41262516aefda292dec03e071fe7a13c5 | 0x36ad6fc04ff32c9d2edfe13d2fd7e3f130f955e0fbd2a6de79fc76815d65b026 | 0x311a9cce20f56bc606803679c6240f16901d58c2 | 0xb6919663080878f70c44799b4addc0d67cc1d00b |
  | 0x100e0efdd7a4f67825e1be5f0493f8d2aeac00bb | false   | 0xea3453aba46163c88231f9fb75dd86ba1eb2dc58 | 643        | 0x56a13f05b767948538132dd7d7dbacdf290a71bb | 59333084      | 2025-08-29T20:09:04.000Z | 0x828bf871000a11a8e1e8e59bf447ac10bf8068e2 | 0x9b956378f715bb6602c31d62c97d0c23c55ede0b | 0xb9aa3d134105afac5ab32c248287046180f57aca73e07dfac761e30ca30c8d9e | 0x8ffcb2796b49c5588ed28b742eca47587af22856 | 0x02d5651175b843e585d3cd5c5a35b866f694a85c |
</Accordion>

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

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

***
