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

> Lens multi-recipient action modules — revenue split configurations for publication actions.

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.publication_open_action_module_multirecipient` table holds a line for each recipient who gets paid out by the multi-recipient module.

## Table Schema

| Column Name      | Type         | Description                                                      |
| ---------------- | ------------ | ---------------------------------------------------------------- |
| id               | integer      | Auto-incrementing row identifier                                 |
| open\_module\_id | varchar      | Reference to the parent open action module instance              |
| publication\_id  | varchar      | Publication ID the module belongs to (format: `profileId-pubId`) |
| recipient        | varbinary    | Wallet address of this recipient                                 |
| split            | decimal(5,2) | Percentage share of revenue allocated to this recipient          |
| index            | integer      | Position index of the recipient in the split list                |

## Table Sample

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