- June 16, 2026
- Blockchain
Proof of History
Proof of History is a cryptographic timekeeping method used by Solana to order transactions efficiently before they are processed by the network.

What is Proof of History?
The last two articles in this series covered the two dominant consensus mechanisms
Blockchain consensus mechanismsA consensus mechanism is a method for validating transactions and securing a blockchain without relying on a central authority.Keep learning in the blockchain
BlockchainThink of blockchain as a public notebook that everyone owns a copy of. Whatever gets written in it is permanent and visible to all.Keep learning industry: Proof of Work
Proof of WorkProof of Work (PoW) is a consensus mechanism where miners use computing power to validate transactions and secure the blockchain.Keep learning and Proof of Stake
Proof of StakeProof of Stake is a consensus method where validators stake tokens to secure the network and earn rewards for validating transactions.Keep learning. This article turns to something a little different; Proof of History, an innovation most closely associated with the Solana
SolanaSolana is a high-performance blockchain designed for fast, low-cost transactions and scalable decentralized applications.Keep learning network
Blockchain NetworkA blockchain network is a system of computers connected to each other that follow the same set of rules to record, share, and validate transactions.Keep learning, and one that isn't actually a complete consensus mechanism on its own at all. Instead, it's a clever supporting structure that solves a much narrower, but surprisingly important, problem: how do you get a decentralized
DecentralizationDecentralization is the distribution of control and decision-making across a network instead of a single central authority.Keep learning network to agree on the order of events quickly, without constantly stopping to ask everyone else what time it is?
Understanding Proof of History requires understanding the specific bottleneck it was designed to remove; and once that bottleneck is clear, the cleverness of the solution becomes much easier to appreciate.
The Problem: Time Is Hard in a Decentralized Network
In a centralized system, establishing the order of events is trivial; a single server simply timestamps everything as it happens, and everyone trusts that one clock. In a decentralized network with no central authority, this becomes far less straightforward. Every node
Blockchain NodesA node is simply a computer that participates in a blockchain network. Each node stores a copy of the blockchain and helps verify transactions.Keep learning has its own internal clock, and those clocks are never perfectly synchronized. A node in Singapore and a node in São Paulo will never agree, down to the millisecond, on exactly what time it is right now; and even small discrepancies matter enormously when transaction order can determine, for example, which of two conflicting trades executed first.
Most blockchains, including Bitcoin
BitcoinBitcoin is a decentralized digital currency that enables secure peer-to-peer transactions without relying on a central authority.Keep learning and Ethereum
EthereumEthereum is a decentralized blockchain platform that runs smart contracts and dApps, using its native cryptocurrency (ETH) for transactions and fees.Keep learning, solve this by having validators or miners explicitly communicate with each other to agree on ordering as part of the consensus process itself; essentially, a continuous back-and-forth negotiation about what happened when. This works, but it's relatively slow, because it requires constant network-wide coordination and communication before the network can move forward with confidence.
Proof of History takes a fundamentally different approach: rather than asking the network to agree on time through communication, it creates a verifiable, self-evident record of time that requires no communication to trust at all.
How It Actually Works
At the heart of Proof of History is a deceptively simple idea, building directly on concepts already covered in this series: continuous, sequential hashing
HashingHashing is the process of converting data into a fixed-length code using a cryptographic function, ensuring data integrity and security.Keep learning.
A single, designated process repeatedly takes the output of its previous hash and feeds it back in as the input for the next hash, over and over, as fast as the hardware allows; millions of times per second. This creates an extremely long, unbroken sequence of hashes, where each one depends entirely on the one before it.
This sequence functions as a kind of cryptographic
CryptographyCryptography is the science of securing information using mathematical techniques to protect data, ensure privacy, and verify authenticity.Keep learning clock. Because each hash can only be produced after the previous one; there's no way to skip ahead or compute hash number one million without first computing hashes one through 999,999; the sheer length of the hash sequence becomes verifiable proof that a corresponding amount of real time has passed. This type of structure is known more broadly as a Verifiable Delay Function: a calculation that's guaranteed to take a certain amount of sequential time to produce, but which can then be checked by anyone else almost instantly.
Transactions are then recorded by inserting them directly into this ongoing hash sequence at the moment they're received, alongside a count of exactly where in the sequence they were inserted. Because the entire sequence is sequential and verifiable, every other node on the network can later confirm precisely when, relative to everything else, that transaction was recorded; without needing to ask anyone, or wait for any round of communication. The order is simply baked directly into the mathematics.
Combining Proof of History with Proof of Stake
It's worth being precise about what Proof of History does and doesn't do, since this is where a lot of casual explanations go astray: Proof of History establishes order, but it does not, by itself, establish which transactions are valid or who gets to propose the next set of them. For that, Solana layers a customized Proof of Stake mechanism called Tower BFT on top of the Proof of History sequence.
Tower BFT validators stake
StakingCrypto staking is the process of locking up cryptocurrency to support a blockchain network and earn rewards in return.Keep learning SOL (Solana's native currency) in much the same way described in our previous article, and they vote on the validity of blocks. The key advantage Proof of History provides here is speed: because the order of events is already cryptographically established and doesn't need to be debated, validators can reach agreement on validity far more quickly than they otherwise could, since one of the usually time-consuming parts of consensus; agreeing on sequencing; has effectively already been solved before voting even begins.
This combination is largely responsible for Solana's headline characteristic: very high transaction throughput, commonly cited in the tens of thousands of transactions per second under optimal conditions, alongside transaction confirmation times measured in a fraction of a second; a significant departure from the throughput figures discussed for both Bitcoin and Ethereum earlier in this series.
You can see Solana's live network performance for yourself using the Solana Explorer, the network's official block explorer, which displays current transactions-per-second, recent block times, and live validator activity. For a more detailed, community-built alternative with additional historical statistics and validator-level breakdowns, Solana Beach and Solscan are both widely used, free tools offering deeper visibility into network activity, token
Crypto TokensCrypto tokens are digital assets built on existing blockchains that represent value, access, or utility within a specific project or ecosystem.Keep learning transfers, and individual validator performance.
The Trade-offs
As with every consensus-related innovation covered in this series, Proof of History's gains in speed come with genuine trade-offs.
Hardware requirements. Continuously generating millions of sequential hashes per second, fast enough to keep pace with the network's throughput targets, requires genuinely powerful, specialized hardware — well beyond what's needed to run a typical Ethereum or Bitcoin node. This raises the practical barrier to running a competitive validator, which has drawn criticism that Solana's network is less accessible to small, independent participants than some of its competitors.
Network stability. Solana has experienced several high-profile network outages since its launch, often attributed to the network's emphasis on raw throughput placing significant strain on validator infrastructure during periods of unusually high demand. Proponents point out that the network has continued to harden and improve its resilience with each iteration, while critics argue that repeated outages on a live financial network represent a meaningful and recurring reliability concern.
Relative centralization. Partly as a consequence of steep hardware requirements, the number of validators actively participating in Solana's consensus, while substantial, remains smaller and somewhat more concentrated than Ethereum's enormous, globally distributed validator set. You can compare the two directly: Solana's current validator count and stake distribution is visible on Solana Beach, while Ethereum's equivalent figures, as referenced in our previous article, are available on beaconcha.in.
Why This Matters Beyond Solana
Even setting Solana itself aside, Proof of History is a genuinely instructive case study in how blockchain innovation often proceeds: not necessarily by inventing an entirely new consensus mechanism from scratch, but by identifying a specific bottleneck within existing approaches; in this case, the communication overhead required to agree on event ordering; and designing a narrow, elegant fix for that one bottleneck specifically, then combining it with an existing, proven mechanism (Proof of Stake) to handle everything else.
This pattern; augmenting rather than replacing; is increasingly common across the broader industry, as networks try to push throughput and speed further without abandoning the underlying security
Blockchain SecurityBlockchain security is the protection of blockchain networks and assets against attacks, fraud, and vulnerabilities using cryptography and consensus mechanisms.Keep learning guarantees that make decentralized consensus meaningful in the first place.
Bringing It Together
Proof of History solves a problem that's easy to overlook but genuinely fundamental: establishing a trustworthy, verifiable sense of when things happened, without requiring constant communication across a decentralized network. To summarize:
- The problem it addresses is decentralized time-ordering; getting a leaderless network to agree on event sequence without expensive, repeated coordination
- It works by generating a continuous, sequential chain of hashes; a Verifiable Delay Function; where the position of a transaction within that chain proves, mathematically, when it occurred relative to everything else
- It is not a standalone consensus mechanism; on Solana, it's combined with a customized Proof of Stake system called Tower BFT to handle validity and voting
- The result is dramatically higher throughput and lower latency than Bitcoin or Ethereum; at the cost of steeper hardware requirements, a smaller and somewhat more concentrated validator set, and a track record that includes several notable network outages
Taken together with the previous two articles, the series now covers three meaningfully different approaches to consensus; work, stake, and verifiable sequencing; each representing a different set of priorities along the same fundamental trade-off between decentralization, security, and speed that has shaped this technology from the very beginning.
Tag System
The tags found in our glossary are there to help you better understand presented definitions. They showcase how certain concepts integrate and interact within the ecosystem.
Rectangular tags signal a concept related to Blockchain
BlockchainThink of blockchain as a public notebook that everyone owns a copy of. Whatever gets written in it is permanent and visible to all.Keep learning as a technology. Whereas rounded tags represent Cryptocurrency
CryptocurrencyCryptocurrency, often called “crypto,” is a form of digital currency that uses cryptography (advanced math and code) to keep it secure.Keep learning in more of a financial aspect. You’ll also see rectangular dashed tags for Web3
Web3Web3 is the idea of a decentralized internet powered by blockchain.Keep learning and rounded dashed tags for DeFi
DeFiDeFi stands for Decentralized Finance. It refers to a collection of applications and platforms built on blockchain that allow people to transact without banks.Keep learning specifically.
Learn more about the relationship between all the tags and their respective concept with our Free Interactive Courses.
More Blockchain fundamentals
Proof of Work
Proof of Work (PoW) is a consensus mechanism where miners use computing power to validate transactions and secure the blockchain.
Keep learningTokenomics
Tokenomics refers to a cryptocurrency’s economic design, including supply, distribution, utility, and incentives that influence its value and behavior.
Keep learningReal-World Assets (RWAs)
Real-World Assets (RWAs) are physical or traditional financial assets, like real estate or bonds, represented and traded on blockchain networks.
Keep learningBlockchain
Think of blockchain as a public notebook that everyone owns a copy of. Whatever gets written in it is permanent and visible to all.
Keep learning



