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 |