ADA
ADA ยท CARDANO

What is Cardano?

Layer 1Research-first
Last verified: April 2026
This page documents what Cardano is, how it works, and what it has been used for โ€” based on the Cardano whitepaper, Ouroboros academic papers, and official Cardano Foundation documentation. Nothing here is financial advice. ADA's value can rise or fall dramatically. Always do your own research.

๐Ÿ‘‹ New to this? Just start reading at the top โ€” it begins in plain English and gets more detailed as you scroll. Jump to any level:

๐ŸŸข The simple version

Plain English โ€” no jargon. Start here.

In one sentence

Cardano is a blockchain known for taking a slow, careful, science-first approach to building โ€” aiming to get things right rather than fast.

The "measure twice, cut once" chain

Cardano does similar things to Ethereum โ€” it runs apps and smart contracts โ€” but its philosophy is the opposite of "move fast." Its developers base changes on peer-reviewed academic research (the kind of careful review scientists use) before shipping them. Supporters love this caution; critics find it slow.

What it's trying to be

Cardano aims to be a secure, reliable foundation for apps, with a particular interest in real-world uses in developing countries โ€” things like identity and financial access for people without bank accounts. Its coin is called ADA.

What to keep in mind

Because of its careful pace, Cardano's ecosystem of apps grew more slowly than faster rivals, and people debate whether its methodical approach is a strength or a handicap. It has a large, loyal community. As with every coin here, ADA's price is volatile โ€” see it as a long-term, patient bet rather than a quick win.

๐ŸŸก A bit more detail

For when you want to go a little deeper.

The layered architecture

Cardano separates settlement from computation โ€” a design choice with practical implications. The Cardano Settlement Layer (CSL) handles ADA transactions and balances, using an extended UTXO (eUTXO) model. The Cardano Computation Layer (CCL) handles smart contract execution. This separation means changes to the smart contract layer do not require changes to the settlement layer, reducing the risk of bugs cascading across the entire system.

The extended UTXO model is Cardano's adaptation of Bitcoin's UTXO model for smart contracts. Unlike Ethereum's account model, eUTXO allows smart contracts to be fully deterministic: you can calculate the exact outcome of a transaction before submitting it, with no surprises. This has privacy and security benefits, but it also means Cardano's DeFi is architecturally different from Ethereum's โ€” applications must be redesigned for the eUTXO paradigm.

What it's used for in real life

Cardano's most significant real-world deployments have focused on Africa and developing markets. IOHK partnered with the Ethiopian Ministry of Education to create blockchain-based student credential records for 5 million students โ€” one of the largest blockchain identity projects in history. Atala PRISM, Cardano's identity platform, enables verifiable digital credentials. The Cardano DeFi ecosystem (Minswap, SundaeSwap, Liqwid Finance) processes significant volume. The Voltaire governance system launched in 2024 gives ADA holders direct on-chain voting power over the treasury and protocol changes.

Ouroboros: the first provably secure PoS protocol

Cardano's consensus mechanism is called Ouroboros โ€” a family of Proof-of-Stake protocols developed by IOHK researchers in collaboration with universities including the University of Edinburgh and the University of Connecticut. The original Ouroboros paper, published at CRYPTO 2017 (one of the top cryptography conferences), was the first PoS protocol with a formal security proof equivalent to Bitcoin's proof-of-work security.

Ouroboros divides time into epochs (5 days) and slots (1 second each). Slot leaders โ€” validators chosen probabilistically based on their ADA stake โ€” produce blocks. The probability of being chosen as a slot leader is proportional to stake. A stake pool operator runs the infrastructure; ADA holders can delegate their stake to any pool without giving up custody of their ADA.

How people evaluate this

Key Cardano metrics: total value locked in DeFi (Cardano DeFi emerged later than Ethereum's, but has grown steadily), active stake pools (a measure of network decentralisation โ€” Cardano consistently has one of the most decentralised validator sets of any PoS chain, with over 3,000 active pools), on-chain governance participation (unique to Cardano's Voltaire era), and developer activity. Live data: CoinGecko ยท CardanoScan.

ADA tokenomics

ADA has a fixed maximum supply of 45 billion tokens. Approximately 57% was distributed through five ICO rounds from 2015โ€“2017. IOG, the Cardano Foundation, and Emurgo retained approximately 30%. The remainder is released as staking rewards. Unlike Ethereum's continuously issued supply, ADA's maximum supply is fixed โ€” the issuance rate declines over time as the reserve (unissued ADA) diminishes, asymptotically approaching 45 billion.

Transaction fees on Cardano go into a collective "reward pot" each epoch (5 days), divided between stake pool operators and delegators. There is no fee burning mechanism โ€” all fees eventually reach the treasury or stakers.

๐ŸŸฃ The full technical picture

For the technically curious.

Ouroboros: formal security proofs

The Ouroboros protocol family consists of multiple generations. The original Ouroboros (2017) provided the first formal proof that a PoS blockchain can achieve the same security guarantees as Bitcoin's PoW under the honest majority assumption, formulated in the Universal Composability (UC) framework. Ouroboros Praos (2018) extended the model to handle adaptive adversaries and semi-synchronous networks. Ouroboros Genesis (2019) added the ability for new nodes to join the network securely without a trusted checkpoint. Ouroboros Chronos (2021) addressed clock synchronisation for secure timekeeping in a distributed network.

The key security assumption across all variants is that strictly more than half of all staked ADA is controlled by honest participants. The protocols are provably secure under this assumption in the random oracle model, using hash functions as the source of randomness for leader selection.

Sources: Kiayias, Russell, David, Ouroboros: A Provably Secure Proof-of-Stake Blockchain Protocol. CRYPTO 2017. ยท David, Gaลพi, Kiayias, Russell. Ouroboros Praos. EUROCRYPT 2018. ยท All papers available at iohk.io/research/library/

Extended UTXO (eUTXO) model

Cardano extends Bitcoin's UTXO model with two additions: each UTXO can carry a datum (arbitrary data) and each transaction can include a validator script (Plutus code). When a UTXO carrying a script is spent, the Plutus validator runs and must return True for the transaction to be valid. Critically, the validator receives only the datum, the redeemer (input from the spender), and the script context (transaction context) โ€” not the full blockchain state. This restricted context is what makes Plutus scripts fully deterministic and locally verifiable.

Concurrency is a known challenge for eUTXO: multiple users trying to interact with the same smart contract in the same slot must be coordinated, since only one transaction can spend a given UTXO. Solutions like batching, off-chain coordination layers, and multi-UTXO designs have been developed by Cardano DeFi protocols to address this.

Technical detail

Plutus is a subset of Haskell with formal semantics, enabling formal verification of smart contract correctness โ€” a capability rare in the blockchain space. Marlowe is a domain-specific language (DSL) for financial contracts, modelled as a finite-state machine with formal semantics that enables exhaustive analysis of all possible execution paths. Both languages compile to Plutus Core โ€” an untyped lambda calculus โ€” which executes in the Cardano ledger's script engine. The Cardano ledger itself is specified in Agda (a proof assistant) and its formal specification is publicly available, making Cardano the only major blockchain with a complete formal specification of its entire ledger logic.

Voltaire: on-chain governance

The Voltaire era, delivered through CIP-1694 (Cardano Improvement Proposal), established Cardano's on-chain governance system in 2024. The governance model has three bodies: the Constitutional Committee (a set of representatives ensuring protocol actions comply with the Cardano Constitution), Delegate Representatives (DReps โ€” elected representatives who vote on governance actions using delegated ADA voting power), and Stake Pool Operators (SPOs โ€” validators with their own vote on certain actions). Any ADA holder can register as a DRep or delegate their voting power to a DRep.

Governance actions include protocol parameter changes, treasury withdrawals, hard fork initiations, and constitutional amendments. This model represents the most comprehensive on-chain governance system in any major blockchain as of 2026.

Source: CIP-1694 โ€” An On-Chain Decentralized Governance Mechanism for Voltaire. github.com/cardano-foundation/CIPs

Key protocol parameters

  • Consensus: Ouroboros (currently Praos variant)
  • Slot duration: 1 second
  • Epoch length: 5 days (432,000 slots)
  • Maximum supply: 45 billion ADA (fixed)
  • Smart contract language: Plutus (Haskell subset), Marlowe (financial DSL)
  • VM model: eUTXO (Extended UTXO)
  • Staking: Delegated, non-custodial
  • Active stake pools: ~3,000+ (2026)
  • Governance: On-chain (Voltaire/CIP-1694)
  • Formal specification: Available in Agda

Source: Cardano documentation. docs.cardano.org ยท IOHK Research Library. iohk.io/research/library/