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

> Description of the pool_reward 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 staking reward distribution data for the Cardano blockchain. Each row represents a reward earned by a stake address for a specific epoch, including the reward type (leader, member, treasury, reserves), the pool that generated the reward, and the epoch in which the reward becomes spendable.

## Column Descriptions

| **Column**           | **Description**                                                | **Type**      |
| -------------------- | -------------------------------------------------------------- | ------------- |
| **stake\_address**   | The stake (reward) address that earned the reward.             | varchar       |
| **earned\_epoch**    | The epoch in which the reward was earned.                      | integer       |
| **spendable\_epoch** | The epoch in which the reward becomes spendable.               | integer       |
| **reward\_type**     | The type of reward (e.g., leader, member, treasury, reserves). | varchar       |
| **pool\_hash**       | The hash of the stake pool that generated the reward.          | varchar       |
| **amount\_lovelace** | The reward amount, in lovelace.                                | decimal(38,0) |
| **slot**             | The slot number associated with the reward record.             | bigint        |
| **\_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="pool_reward" />
