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

> Description of the epoch_stake 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 per-epoch stake delegation snapshots for the Cardano blockchain. Each row represents the stake delegated by a specific stake address to a stake pool for a given epoch, including the epoch when delegation began and when it became active.

## Column Descriptions

| **Column**            | **Description**                                                         | **Type**      |
| --------------------- | ----------------------------------------------------------------------- | ------------- |
| **epoch**             | The epoch number for this stake snapshot.                               | integer       |
| **stake\_address**    | The stake (reward) address of the delegator.                            | varchar       |
| **stake\_lovelace**   | The amount of stake delegated, in lovelace.                             | decimal(38,0) |
| **pool\_hash**        | The hash of the stake pool to which the stake is delegated.             | varchar       |
| **delegation\_epoch** | The epoch in which the delegation was registered.                       | integer       |
| **active\_epoch**     | The epoch in which the delegation became active for reward calculation. | integer       |
| **\_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="epoch_stake" />
