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

> Tables in tt-contracts.reserve_v1_base

## 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                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xb2a46e71e23b04901796bae6c8870597dd9ce9e6 | false   | 102        | 32913125      | \[\{"portion":"1000000000000000000","recipient":"0xd84e0c72dc2f8363b46d4adfc58bfd82e49222d9"}]                                                                                           | 2025-07-15T21:39:57.000Z | 0x31a7d74dbbb8e59823d1971cfaf52b4d3d24d16cfe2861cc8b912d95d8cb5fc7 |
  | 0x8fbbe4348d43e1cb10144ca9a382759ecd474971 | false   | 209        | 29926531      | \[\{"portion":"500000000000000000","recipient":"0x03d03a026e71979be3b08d44b01eae4c5ff9da99"},\{"portion":"500000000000000000","recipient":"0x2a4a0948eb3cf14a4a88da2cc9615422bb0a4af2"}] | 2025-05-07T18:26:49.000Z | 0x329639bbe2eed9f4ae2a359f18ce18615a57024743c1e099285a4eb6a288440d |
  | 0xc0846b9058f45f2dd355e7d4f81dca276bfd0435 | false   | 349        | 33338780      | \[\{"portion":"900000000000000000","recipient":"0x03d03a026e71979be3b08d44b01eae4c5ff9da99"},\{"portion":"100000000000000000","recipient":"0x5d4f073399f4bb0c7454c9879391b02ba41114fe"}] | 2025-07-25T18:08:27.000Z | 0x97605cfa6980bcaa26cbffd11a23ea04cf27c358bf5d853e612447d11fc10d2a |
</Accordion>

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

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.reserve_v1_base.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                                                  |
  | ------------------------------------------ | ------- | ---------------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x0a43147c82991a219d5379b6744ad2820447ba9a | false   | 1500000000000000 | 135        | 34505902      | 2025-08-21T18:32:31.000Z | 0x7d88a3d5db9872130c803b7786dbaba71300a8f814ba9d0e534d38993e371078 |
  | 0x811199c5889bfb0f0908081835a3c4d2e37ba167 | false   | 1500000000000000 | 427        | 34505869      | 2025-08-21T18:31:25.000Z | 0x0bdeef6dd72403d3002d178fe03261a49be722738ae580d4cdd6b39eb8d4e9cd |
  | 0x2f921cd78b8dbcafdb2d82ae12e7cc5e838de950 | false   | 1500000000000000 | 358        | 34505823      | 2025-08-21T18:29:53.000Z | 0xb72787afd86f59606c6a543c791888c960afc76b0687817132445b012ea2241a |
</Accordion>

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

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.reserve_v1_base.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                                                  |
  | ------------------------------------------ | ------- | ---------- | ---------- | ------------- | ----------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xbe50302bb7c155a830de1958f5446697b2a04c65 | false   | 318694058  | 495        | 29086716      | 10000000000000000 | 2025-04-18T07:52:59.000Z | 0xca3d021e297b38583f3934b1bdde485e54003542b93c384833b486a6292083d4 |
  | 0x79f2b6a808a5e89093bc29b32000054ae21a1628 | false   | 318694058  | 288        | 29088822      | 10000000000000000 | 2025-04-18T09:03:11.000Z | 0x0d2583436a676a32bcf1594e0be2432ae34e4817b21432c271d4789b865821f3 |
  | 0x0b7bb56d955149db9a0b2e0befa56d4566f84c72 | false   | 318694058  | 209        | 29086843      | 10000000000000000 | 2025-04-18T07:57:13.000Z | 0x4829a5715ce0c772776811b1c6e67357735671512fb9d738cd33495e7425120e |
</Accordion>

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

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.reserve_v1_base.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                        |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------ | ------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------ | ------------------------------------------ |
  | 0xa203aa351723cf943f91684e9f5efca7175ae7ea | false   | 0x638fcd949fd97320e8219e0ee8324f4fbd7feeab | 498        | 0x5d4f073399f4bb0c7454c9879391b02ba41114fe | 34160847      | 2025-08-13T18:50:41.000Z | 0x25f859b66d662587f4bad559e229fe2f7e460c2f | 0xf3a8f226a89c9533c94341c59af8a86c5b9cfa15 | 0x085ea689977228fb2ecb11e813c06a0dfc7bf690942bc114577edb2d61d35bda | 0x73795b9f05cb9a0cd4a41410e3670d76adc38106 | 0x4aabdefcd1776addd99ef4f3df8b192d11650282 |
  | 0xa203aa351723cf943f91684e9f5efca7175ae7ea | false   | 0xf863d3bc19c487b5dde8a41d991762c685cb1520 | 318        | 0x5d4f073399f4bb0c7454c9879391b02ba41114fe | 34160039      | 2025-08-13T18:23:45.000Z | 0x0ad86f054c98a9a8826975d937096c9392be3814 | 0x9cbf35cac551fe9cfea68c091f238cc0cd609987 | 0x15714fe379a84d2e86349ffc7e1e9c2c551f419251c2dfa8550cf3d50aa6e6a0 | 0x9b3af7db74aa490f8e129ebdba77705cfde545ce | 0x6b4f44394b9ba18a93370825f704f2e1c61ee179 |
  | 0xa203aa351723cf943f91684e9f5efca7175ae7ea | false   | 0x5ff4e5849c5685013dd0164dc1b147ccd4d8f12e | 1290       | 0x5d4f073399f4bb0c7454c9879391b02ba41114fe | 34163840      | 2025-08-13T20:30:27.000Z | 0x36577c6720bb9b698d8a3fb2acad7f1c8fc39a91 | 0xfb5030880bbaccda012c902f3dcbad2b4fe42fda | 0x566de502d8b69c879b73f59187ca5a278642c5c82322f88d9dce7eb52329de18 | 0x04e14590f04dce9ce17cd9d896f185cbe22dc3aa | 0xb2d285510dc2471363751ae38b68156548877b26 |
</Accordion>

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

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

***

### RSR\_TradeSettled\_event

Completed trade settlements from Reserve Protocol (RSR) on Base, recording token swaps with buy/sell token addresses and amounts. Used for analyzing Reserve protocol rebalancing activity and collateral management trades.

<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_trade`         | `STRING`    | Identifier or structured data representing the trade or swap operation. Specific format varies by protocol implementation.                           |
  | `in_sell`          | `STRING`    | Contract address of the token being sold in the trade. Hex-encoded, 0x-prefixed, 42-character string.                                                |
  | `in_buy`           | `STRING`    | Contract address of the token being purchased in the trade. Hex-encoded, 0x-prefixed, 42-character string.                                           |
  | `in_sellAmount`    | `STRING`    | Amount of tokens sold in the trade. Numeric string representation of token quantity in smallest denomination.                                        |
  | `in_buyAmount`     | `STRING`    | Amount of tokens received in the trade. Numeric string representation of token quantity in smallest denomination.                                    |
</Accordion>

<Accordion title="Sample Data">
  | in\_buy                                    | address                                    | in\_sell                                   | removed | in\_trade                                  | log\_index | block\_number | in\_buyAmount           | in\_sellAmount       | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | ------------- | ----------------------- | -------------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xab36452dbac151be02b16ca17d8919826072f64a | 0xef34c651f1ae9593cfb2cdf02da800a4aad612bd | 0xe3b53af74a4bf62ae5511055290838050bf764df | false   | 0x0e55bf650ea0fbfe42fec320c4a0e09e2fe8c31d | 25         | 13897816      | 3772147692920681585835  | 40361365395508927120 | 2024-05-01T17:36:19.000Z | 0x4e8063d8891b3fb2b5fa9ef9b45bc6a62cd8a27c7c7224fd5e71369e14f5ffec |
  | 0xab36452dbac151be02b16ca17d8919826072f64a | 0x07f58c529170645f3df1c277bedc176eceb97a0e | 0xcb327b99ff831bf8223cced12b1338ff3aa322ff | false   | 0xd1815146da600601d39ad6cec4e20e15423185ce | 6          | 22375859      | 26125893686804475300935 | 55781702423866000    | 2024-11-13T23:37:45.000Z | 0xa69f871481dc013fd4be3caf579430c36a4b4a81325a7d68de3bc35d8c3355ff |
  | 0xab36452dbac151be02b16ca17d8919826072f64a | 0x07f58c529170645f3df1c277bedc176eceb97a0e | 0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22 | false   | 0xf35897debe519f22db323cab0d06eaa1f28068ee | 12         | 22375919      | 11044512980022252567191 | 22243060295993000    | 2024-11-13T23:39:45.000Z | 0x24ad191be657d82e8398c17597f62f7b797fc58963efcb2cbfa50f1b103c8987 |
</Accordion>

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

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

***

### RTokenFactory\_RTokenCreated\_event

RToken deployment events emitted by the Reserve Protocol factory contract when new RToken instances are created. Contains addresses for the deployed RToken, staked RSR (stRSR) contract, main governance contract, initial owner, and protocol version identifier.

<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_main`          | `STRING`    | Contract address of the main protocol component deployed during RToken creation. Hex-encoded, 0x-prefixed, 42-character string.                      |
  | `in_rToken`        | `STRING`    | Contract address of the RToken deployed during creation. Hex-encoded, 0x-prefixed, 42-character string.                                              |
  | `in_stRSR`         | `STRING`    | Contract address of the staked RSR token (stRSR) deployed during RToken creation. Hex-encoded, 0x-prefixed, 42-character string.                     |
  | `in_owner`         | `STRING`    | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.                    |
  | `in_version`       | `STRING`    | Version identifier for the contract or event schema. String or integer value indicating the initialization or state version.                         |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_main                                   | removed | in\_owner                                  | in\_stRSR                                  | in\_rToken                                 | log\_index | in\_version | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | ---------- | ----------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x9c75314afd011f22648ca9c655b61674e27ba4ac | 0x0881a0a66f6f67eafe005784a700ebb725099817 | false   | 0x46c600cb3fb7bf386f8f53952d64ac028e289afb | 0x15ca44345830fe640b1cdd50ed9ea187acc61793 | 0xf409fd928ff0ca8220f34fb5a035916a96dd3df8 | 81         | 3.0.1       | 7849285       | 2023-12-13T17:18:37.000Z | 0xd6920ee695ac031a23ea2374df1b4483cb941f8df683cb93fb0147475cba09ad |
  | 0xfd18ba9b2f9241ce40cde14079c1cda1502a8d0a | 0xa3d3c2245aa51ea90a5638371da6fa669c3e302d | false   | 0x43e205a805c4be5a62c71d49de68df60200548a0 | 0x40fec6fc9a7194f4c932a2b708830e6995f09008 | 0xc43889c73b76726c88d4ccf7fbd9344b3ba44ea6 | 337        | 3.4.0       | 30806624      | 2025-05-28T03:23:15.000Z | 0x834bfef6032df82fb582d719f612f65e114dfb547606a8ba7676b57e30e13ca4 |
  | 0x9c75314afd011f22648ca9c655b61674e27ba4ac | 0xa2fc4682eca43d89ad607f6388aec79319da9773 | false   | 0x46c600cb3fb7bf386f8f53952d64ac028e289afb | 0x0a8ad64d81cf29a42631a99b86ecd5749fd3e577 | 0x8ac233292f11ed1bf3b0b22efd8f709c8f0d19eb | 242        | 3.0.1       | 13714020      | 2024-04-27T11:29:47.000Z | 0x8cf1344d1806983d4f48c4f7f5f5c40ff47801a92f6d4bfca51049d04405a110 |
</Accordion>

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

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

***

### RTokenMain\_AssetRegistrySet\_event

Asset registry update events from Reserve Protocol RToken contracts tracking changes to the asset registry address. Records the old and new registry contract addresses for governance and configuration tracking.

<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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x71090476d21c83e4022947c438dc507102cb61a8 | false   | 0x096e8002278087e8acf3a5d0515524b8ae1a2094 | 0x0000000000000000000000000000000000000000 | 38         | 11219493      | 2024-02-29T17:38:53.000Z | 0x420fca88541ab57b8943e98c753d17594c227da759d9cda2f7f6e8a46f908d80 |
  | 0x4393768da2f9da41b3c5e2752542428bd25975cc | false   | 0x7c1904fb2069a8c1f5a61a05d76db9aab893d0a3 | 0x0000000000000000000000000000000000000000 | 319        | 23223165      | 2024-12-03T14:21:17.000Z | 0xcb3c94d904a28af44daf160709c6ee110b9846dcf4d14f5da29833a262775dc5 |
  | 0x5bc8c5779cdefc881724e7ab2eef71996904321f | false   | 0xcc194d916c9eb9bef2dc6f37f63ad624ab04f179 | 0x0000000000000000000000000000000000000000 | 210        | 23232928      | 2024-12-03T19:46:43.000Z | 0x9815f5335a45908c340769a080fc6e7bb5e853ce911344583d030ad6b196e91e |
</Accordion>

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

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

***

### RTokenMain\_BackingManagerSet\_event

Reserve Protocol RToken configuration change events recording updates to the backing manager contract address. Tracks the previous and new backing manager addresses during RToken system reconfigurations.

<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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x27c22e5b917694c22a80ae5d5f6b3c5acbfa542b | false   | 0xb070165d402e86629882682d60c8cbbf4d3a7ccd | 0x0000000000000000000000000000000000000000 | 157        | 34774981      | 2025-08-28T00:01:49.000Z | 0x2acaa2f8a7fa820ded238245a946c95425af7edfc10edc8b693377cb8476bbbb |
  | 0xacd685919af2ac9aac00f34603ad1ed6cc32f625 | false   | 0x3ab631905b84d7e2cf3afa9ccbb4cd4eeb19e602 | 0x0000000000000000000000000000000000000000 | 70         | 32562315      | 2025-07-07T18:46:17.000Z | 0x6e111ae9dd5b82d451b10896d70e67642d10d8441516788fcf14384dfd155bab |
  | 0xf0cbb3c06c16f5339d91729eaff9de08110d64e2 | false   | 0x608068af60e82415b67da5b861c2f6fd77b69ef2 | 0x0000000000000000000000000000000000000000 | 134        | 32560621      | 2025-07-07T17:49:49.000Z | 0x39442fe91795824af5ad4c32176631a4c79c8115c6b05393a126529913d69939 |
</Accordion>

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

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

***

### RTokenMain\_BasketHandlerSet\_event

Reserve Protocol BasketHandler configuration change events emitted from RToken main contracts, capturing transitions between old and new basket handler addresses. Used for tracking governance updates to collateral basket management components.

<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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xacd685919af2ac9aac00f34603ad1ed6cc32f625 | false   | 0x7477954db93b62a847b39bdb78a56960787a4a14 | 0x0000000000000000000000000000000000000000 | 71         | 32562315      | 2025-07-07T18:46:17.000Z | 0x6e111ae9dd5b82d451b10896d70e67642d10d8441516788fcf14384dfd155bab |
  | 0xf0cbb3c06c16f5339d91729eaff9de08110d64e2 | false   | 0x1272ac3e7f1b026b7a0a665192f86afbf352d4f7 | 0x0000000000000000000000000000000000000000 | 135        | 32560621      | 2025-07-07T17:49:49.000Z | 0x39442fe91795824af5ad4c32176631a4c79c8115c6b05393a126529913d69939 |
  | 0x27c22e5b917694c22a80ae5d5f6b3c5acbfa542b | false   | 0xbed34f9cc68a9ebe08e43d3387f0a1abf53078f2 | 0x0000000000000000000000000000000000000000 | 158        | 34774981      | 2025-08-28T00:01:49.000Z | 0x2acaa2f8a7fa820ded238245a946c95425af7edfc10edc8b693377cb8476bbbb |
</Accordion>

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

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

***

### RTokenMain\_BrokerSet\_event

Event logs emitted when the broker contract address is updated in the Reserve Protocol RTokenMain contract, capturing both old and new broker addresses. Records configuration changes for the trading component responsible for executing rebalancing trades and revenue auctions.

<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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x89219764d33cda9ec2264c6fa526a2f11e66fdc6 | false   | 0x6d072fad6f4c421c8e52b54d166a75c2d680215f | 0x0000000000000000000000000000000000000000 | 210        | 14858187      | 2024-05-23T23:08:41.000Z | 0xe9494362066e2c5ceef9a0d70dba616e6e7e8d3340a4fa51df2653ab716b5bef |
  | 0xb5e73df8c5592f69e84855e4b64653f8878fc0ae | false   | 0x9e7f872d352f6a89bdba7a83c6a74fa0ceda6c37 | 0x0000000000000000000000000000000000000000 | 247        | 15629604      | 2024-06-10T19:42:35.000Z | 0xdff557b8d0a1bed104e18df06bc6f2f1b9a781862d416ebbee32c05c45bf29a5 |
  | 0x21f2dafd1ca6f4278c038421c71cb2a9c79edd08 | false   | 0xcbbe25556c6d7afc5e9e1a2852a2757ca9da9a46 | 0x0000000000000000000000000000000000000000 | 255        | 15993364      | 2024-06-19T05:47:55.000Z | 0xae9cd13a6638ab561433deaae9fbe46b90fcbb45c65d818401763c9cb8cfcb27 |
</Accordion>

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

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

***

### RTokenMain\_DistributorSet\_event

Revenue distribution configuration change events emitted by RToken (Reserve Token) main contracts when the distributor component address is updated. Captures the previous and new distributor contract addresses for tracking protocol governance 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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x49b634273a67a379827992dd3fbd62bb2ba70376 | false   | 0x33acc723eb15df2187da5749622d3006acc07199 | 0x0000000000000000000000000000000000000000 | 43         | 13604197      | 2024-04-24T22:29:01.000Z | 0x08808c1f2d536779881f2fc7780db7fe0be17524d84cf45c92cbafdc45719c7c |
  | 0x256d3b1095806976012bd85969b655454605af93 | false   | 0x532be550e0b56834556534a6fdf9e27547dfaed8 | 0x0000000000000000000000000000000000000000 | 126        | 30712891      | 2025-05-25T23:18:49.000Z | 0x91594df91325f60333fe51855ac5e066666383fda5c7f846a68913617ae62e3e |
  | 0xbd661b96b99c397984b25d4ed79b8d886d3f3008 | false   | 0x0afa7f0dd4626daa1e143eba576a764b085df3d5 | 0x0000000000000000000000000000000000000000 | 26         | 9264596       | 2024-01-15T11:35:39.000Z | 0x7811ce94cc23f4e35924977694b14c657b45e6c858dd4327bb8a76cdf1870196 |
</Accordion>

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

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

***

### RTokenMain\_FurnaceSet\_event

Reserve Protocol RToken configuration change event logging updates to the furnace component address. Records old and new contract addresses when the RToken's furnace mechanism is reconfigured.

<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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xdd04a576e38c5006a33ec2f2d775a57684d3a9c2 | false   | 0x81f2f280723a7b88f7fce482a6ee4913f93f1e0f | 0x0000000000000000000000000000000000000000 | 393        | 22270781      | 2024-11-11T13:15:09.000Z | 0x95e3ba3dd83f84a86dfda0c74c7aa1680f11aae1622a2c23428b37a85dfd06cf |
  | 0x64254b8bd77127db7144c84b9430371f7b3231ca | false   | 0xc3e830a7d174bc9bd286599ca83a63296af9e021 | 0x0000000000000000000000000000000000000000 | 544        | 22271446      | 2024-11-11T13:37:19.000Z | 0x14be463bce3fe9219aa95846710449e618a60a1e686ef33e537767b0a860e880 |
  | 0x9e5f8c3ef59d9f7c21bef1e7e8417ece4fb013ba | false   | 0x6b0ccb013de8b460226d92256703e42133061e17 | 0x0000000000000000000000000000000000000000 | 523        | 22276115      | 2024-11-11T16:12:57.000Z | 0x6196e9821f9016b999cab2afc2f7f702f001ba6dc0153380a2c6bbc54d15e0a3 |
</Accordion>

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

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

***

### RTokenMain\_RSRTraderSet\_event

Reserve Protocol RSR (Reserve Rights) trader address configuration change events emitted when an RToken sets a new RSR trader contract. Captures the transition from old to new trader addresses for tracking protocol governance and operational updates.

<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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xedeeb9a7a4cad7da2fb6d878ccf926fd9ede1f28 | false   | 0x68704ec2e966ed4589eca879880684187e36e781 | 0x0000000000000000000000000000000000000000 | 455        | 36440687      | 2025-10-05T13:25:21.000Z | 0xc0d6080af60aff5daf1d9650e323bd943e6aa1f7045c6b5cb6f49da4998c8be4 |
  | 0xc9b9c5580356c10efc6dd237f8a7a11c3bddf23e | false   | 0x45a1576177e58c61643c372911992013b1491a26 | 0x0000000000000000000000000000000000000000 | 242        | 18580659      | 2024-08-18T03:11:05.000Z | 0xdb32a0da50257315e768415ab58bed38ae04ca0398ac61596b209adabf6fd9e0 |
  | 0x662974c9a274cbbdd7b28f8fcbe4dcaea721462f | false   | 0xf5478c392408cdd9253243fb8374a779bbbf8493 | 0x0000000000000000000000000000000000000000 | 283        | 18581805      | 2024-08-18T03:49:17.000Z | 0xdd0bef5f082f97f93f3ed7c9e389f68d6a9c2a87f8f7728f4a9ca0e17e70993a |
</Accordion>

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

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

***

### RTokenMain\_RTokenSet\_event

RToken contract address configuration change events emitted when the RToken contract reference is set or updated. Records the previous and new RToken contract addresses during system initialization or upgrades.

<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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x7123f1e73ecfb8f8c099a1dd4fec62018344da8a | false   | 0xfc73449c54fd0d99e43c2a6f166946783d9a0fae | 0x0000000000000000000000000000000000000000 | 193        | 11958415      | 2024-03-17T20:09:37.000Z | 0xc33f076df9dd960630fe371564eb91132fa784aa46e100b5f458d9e2cfe709b1 |
  | 0x4cda1cb5145924201800695624cc7f17b340a87d | false   | 0x03770adda1d3a201d9ddc1044932beca5036d07f | 0x0000000000000000000000000000000000000000 | 27         | 8294657       | 2023-12-24T00:44:21.000Z | 0xbd13c51b70e2ee86da16b50fb90abc78ce97a34c5993c6d68dd3de879b289a5d |
  | 0xd4bf50b47525c5845f8b722cdf07660d58b3b435 | false   | 0x643be1e58428fa5b573baf97d337708158cf0e78 | 0x0000000000000000000000000000000000000000 | 30         | 6095339       | 2023-11-03T02:53:45.000Z | 0x8f935a58e205c99550cf1a73fa23c6fb62b8440f7772bc638f49ab5efa3ed6cf |
</Accordion>

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

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

***

### RTokenMain\_RTokenTraderSet\_event

RToken trader contract address configuration change events from the Reserve Protocol. Records when the RTokenMain contract updates its trader component address, capturing both previous and new trader contract addresses for governance and configuration tracking.

<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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0xaaa8395c61c74cd49ea72558cd4e3f3c10c3d42b | false   | 0x3405b0b6c96fee4fc5d2956abd4d701af45ff6b8 | 0x0000000000000000000000000000000000000000 | 133        | 14079804      | 2024-05-05T22:42:35.000Z | 0xcdef9531fc80daf5558422338781c4ff9a9139e2ac54998769d25ac856ae3063 |
  | 0x65c24ebd31494ae571565e45b8780ad3b56d7061 | false   | 0x0d3dcc752ec051c4947994d94fccc7b9275f4c5d | 0x0000000000000000000000000000000000000000 | 197        | 26693392      | 2025-02-21T22:15:31.000Z | 0xbe4e193fcf8974a96d208d136464f6d89358a4c10ca39c6a1cec2289196bd03d |
  | 0x7123f1e73ecfb8f8c099a1dd4fec62018344da8a | false   | 0x0fb7c99da26e6591808d683a021b5640915deb0f | 0x0000000000000000000000000000000000000000 | 187        | 11958415      | 2024-03-17T20:09:37.000Z | 0xc33f076df9dd960630fe371564eb91132fa784aa46e100b5f458d9e2cfe709b1 |
</Accordion>

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

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

***

### RTokenMain\_StRSRSet\_event

Configuration change events from Reserve Protocol RToken contracts recording updates to the staked RSR (StRSR) contract address. Captures transitions from previous to new StRSR contract addresses during protocol upgrades or reconfigurations.

<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_oldVal`        | `STRING`    | Previous value before the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                             |
  | `in_newVal`        | `STRING`    | New value being set in the configuration change. Hex-encoded, 0x-prefixed, 42-character contract address.                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_newVal                                 | in\_oldVal                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x75302216e4d83a01273b043b33568134fa1e8ebe | false   | 0xe0b23b7f1cae959c86ae5508b0611035ebf9cc1b | 0x0000000000000000000000000000000000000000 | 191        | 23491906      | 2024-12-09T19:39:19.000Z | 0xea8015b04ee2250740f96a4353cf06a985f13b2f87c6bcb90ed0efeee427e82a |
  | 0x718d8c5369cad895cdee580573ebb38d5e4b55ba | false   | 0x11f45c689cb76cbb09f52b8caed1fa65e7e9d4b7 | 0x0000000000000000000000000000000000000000 | 230        | 23491836      | 2024-12-09T19:36:59.000Z | 0xa973e91250c87062dbf706f308957115f2bca3c70ef5bcf94abfe23fe668b089 |
  | 0xab33000a6b1da027455b178dbd2daac5dd23b182 | false   | 0x29f9ef76ef84a59422ede5806096eed083c8297c | 0x0000000000000000000000000000000000000000 | 94         | 31051658      | 2025-06-02T19:31:03.000Z | 0xb4877a2e9e9341899f5681c19de4a423a50cee2362436429daba5764f08778a5 |
</Accordion>

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

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

***
