Merkle Proof Generator
Generate and verify Merkle proofs for whitelists and allowlists. Build Merkle trees with keccak256 hashing.
Enter leaf values above to select one.
How It Works
- 1. Each leaf is hashed with keccak256.
- 2. Pairs are sorted lexicographically before hashing (OpenZeppelin style).
- 3. Pairs are concatenated and hashed to form the next level.
- 4. This continues until a single root hash remains.
- 5. A proof is the list of sibling hashes needed to reconstruct the root from a leaf.