> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# dune.lens.profile_follow_module_record

> Lens follow module events — follow module activation and update records.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

<Warning>
  **Deprecation Notice**: Lens data ingestion has been discontinued as of December 2025. Only historical data is available, and no new data will be added.
</Warning>

## Table description

The `dune.lens.profile_follow_module_record` table holds any follow module which has been redeemed by another profile i.e. 0x01 pays to follow 0x02.

## Table Schema

| Column Name                           | Type          | Description                                                           |
| ------------------------------------- | ------------- | --------------------------------------------------------------------- |
| history\_id                           | integer       | Auto-incrementing record identifier                                   |
| followed                              | varbinary     | Profile ID of the user being followed                                 |
| follower                              | varbinary     | Profile ID of the follower who redeemed the module                    |
| follow\_module\_data                  | varchar       | Encoded data sent to the follow module during redemption              |
| process\_follow\_module\_return\_data | varchar       | Data returned by the module after processing the follow               |
| fiat\_price\_snapshot                 | decimal(10,2) | Fiat price snapshot at the time of the follow (for fee-based modules) |
| transaction\_executor                 | varbinary     | Address that executed the follow transaction                          |
| tx\_hash                              | varbinary     | Transaction hash of the follow                                        |
| block\_hash                           | varbinary     | Hash of the block containing the transaction                          |
| block\_number                         | integer       | Block number of the transaction                                       |
| log\_index                            | integer       | Index of the event log within the transaction                         |
| tx\_index                             | integer       | Index of the transaction within the block                             |
| block\_timestamp                      | timestamp     | Timestamp of the block                                                |

## Table Sample

<TableSample tableSchema="dune.lens" tableName="profile_follow_module_record" />
