What is Proof of History (PoH) and how does it differ from traditional timestamps in blockchains like Ethereum? #938
-
|
What is Proof of History (PoH) and how does it differ from traditional timestamps in blockchains like Ethereum? How does Solana achieve ~50,000 TPS compared to Ethereum's ~15 TPS? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Proof of History (PoH) is Solana's cryptographic clock that creates a verifiable historical record proving events occurred in a specific sequence and time, using a sequential SHA-256 verifiable delay function (VDF). How PoH Works |
Beta Was this translation helpful? Give feedback.
Proof of History (PoH) is Solana's cryptographic clock that creates a verifiable historical record proving events occurred in a specific sequence and time, using a sequential SHA-256 verifiable delay function (VDF).
How PoH Works
Validators continuously hash data with a counter: hash = SHA256(previous_hash + counter + data). This chain proves time passed (VDF takes ~400ms per tick) and establishes transaction order before consensus. Any node can verify the entire sequence deterministically.