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

# cardano.drep_dist_enriched

> Description of the drep_dist_enriched table on Dune

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>
  </>;

## Table Description

Contains enriched delegated representative (DRep) voting power distribution data for the Cardano blockchain. Each row represents a DRep's delegated stake for a given epoch, including their type, on-chain ID, activity status, and optional human-readable name sourced from anchor metadata. This table is central to analyzing Cardano's on-chain governance participation under CIP-1694.

## Column Descriptions

| **Column**         | **Description**                                                         | **Type**  |
| ------------------ | ----------------------------------------------------------------------- | --------- |
| **drep\_hash**     | The hash identifier of the DRep.                                        | varchar   |
| **drep\_type**     | The type of DRep (e.g., key hash, script hash, abstain, no confidence). | varchar   |
| **drep\_id**       | The bech32-encoded DRep ID.                                             | varchar   |
| **amount**         | The total voting power delegated to this DRep, in lovelace.             | bigint    |
| **epoch**          | The epoch number for this distribution snapshot.                        | integer   |
| **active\_until**  | The last epoch in which this DRep is considered active.                 | integer   |
| **expiry**         | The epoch at which this DRep's registration expires if not renewed.     | integer   |
| **anchor\_url**    | The URL pointing to the DRep's off-chain metadata.                      | varchar   |
| **drep\_name**     | Human-readable name of the DRep, sourced from anchor metadata.          | varchar   |
| **\_updated\_at**  | The time when this record was last updated.                             | timestamp |
| **\_ingested\_at** | The time when this record was ingested into Dune.                       | timestamp |

## Table Sample

<TableSample tableSchema="cardano" tableName="drep_dist_enriched" />
