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

> Description of the adapot 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 ADA supply distribution data for the Cardano blockchain. Each row represents a snapshot of how ADA is distributed across the system at a given epoch — including the treasury, reserves, UTXO set, staking deposits, fees, and reward pots. This table is useful for tracking Cardano's monetary policy, inflation schedule, and the flow of ADA between protocol-managed pots over time.

## Column Descriptions

| **Column**                 | **Description**                                                  | **Type**      |
| -------------------------- | ---------------------------------------------------------------- | ------------- |
| **epoch**                  | The epoch number for this snapshot.                              | integer       |
| **slot**                   | The slot number associated with this snapshot.                   | bigint        |
| **deposits\_stake**        | Total ADA locked in staking key deposits, in lovelace.           | decimal(38,0) |
| **fees**                   | Total transaction fees collected during this epoch, in lovelace. | decimal(38,0) |
| **utxo**                   | Total ADA held in the UTXO set, in lovelace.                     | decimal(38,0) |
| **treasury**               | Total ADA in the treasury, in lovelace.                          | decimal(38,0) |
| **reserves**               | Total ADA remaining in the reserves, in lovelace.                | decimal(38,0) |
| **circulation**            | Total ADA in circulation (outside reserves), in lovelace.        | decimal(38,0) |
| **distributed\_rewards**   | Total ADA distributed as staking rewards, in lovelace.           | decimal(38,0) |
| **undistributed\_rewards** | Total ADA in the reward pot not yet distributed, in lovelace.    | decimal(38,0) |
| **rewards\_pot**           | Total ADA in the rewards pot, in lovelace.                       | decimal(38,0) |
| **pool\_rewards\_pot**     | Total ADA allocated to stake pool rewards, in lovelace.          | decimal(38,0) |
| **\_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="adapot" />
