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

> Lens follow modules — follow conditions and configurations per profile.

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` table holds any follow module the profile has turned on.

## Table Schema

| Column Name           | Type      | Description                                          |
| --------------------- | --------- | ---------------------------------------------------- |
| profile\_id           | varbinary | Profile ID that has the follow module enabled        |
| implementation        | varbinary | Contract address of the follow module implementation |
| init\_data            | varbinary | Encoded initialization data passed to the module     |
| amount                | varchar   | Payment amount required to follow (if fee-based)     |
| currency              | varbinary | Token contract address for the follow fee currency   |
| recipient             | varbinary | Address that receives follow fee payments            |
| block\_timestamp      | timestamp | Timestamp of the block                               |
| block\_hash           | varbinary | Hash of the block containing the transaction         |
| tx\_hash              | varbinary | Transaction hash of the module setup                 |
| log\_index            | integer   | Index of the event log within the transaction        |
| tx\_index             | integer   | Index of the transaction within the block            |
| block\_number         | integer   | Block number of the transaction                      |
| transaction\_executor | varbinary | Address that executed the module setup transaction   |
| init\_return\_data    | varchar   | Data returned by the module after initialization     |

## Table Sample

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