Infrastructure

Zero-Knowledge Proof (ZKP)

A cryptographic method that proves a statement is true without revealing the underlying data behind it.

A zero-knowledge proof lets one party convince another that something is true while sharing nothing else. You can prove you know a password without typing it, or prove a batch of transactions is valid without exposing every detail.

The use is concrete. zk-rollups compress thousands of transactions into one small proof Ethereum verifies cheaply. Privacy coins and identity systems confirm facts while hiding the inputs.

Common types are zk-SNARKs and zk-STARKs. Generating proofs is heavy; verifying them is fast and cheap.

Related terms