Merkle (Hash) Trees: Explained

DeDevs
2 min readDec 10, 2020

--

Merkle Tree (ELI5): a way of packaging data such that you are able to quickly and efficiently verify huge chunks of information it stores.

Primarily found in cryptography, a Merkle tree (or hash tree) is data structured as a tree in which every leaf node is labeled with the cryptographic hash value of a data block, and every non-leaf node is labelled with the cryptographic hash of the labels of its child nodes. Hash trees allow efficient and secure verification of the contents of large data structures.

Merkle trees make extensive use of one way hashing and are established by hashing a hash’s corresponding hash together and climbing up the tree until you obtain the root hash which is or can be publicly known.

After passing as an input in a hash function, the resultant hash is unable to be reverse-engineered to acquire the key, this is an example of a successful one-way hash algorithm.

Technical Note: Demonstrating that a leaf node is a part of a given binary hash tree requires computing a number of hashes proportional to the log of the number of leaf nodes in the tree.

Merkle Tree: Example of Hashing Transactions

Example of a Merkle Tree containing transactional data (Monetha.io)

In the Merkle Tree above, each block-level represents a higher order of hashing stemming from a transaction (T0-T7). For each block-level above the original transaction, the subsequent hash value (H), is passed through a hash function until reaching the highest block-level represented as the combination of all the preceding hashes (H01234567).

The lowest-level hash values are referred to as leaves — containing the hashed value of the transaction (T) associated with the leaf. The resultant hashing of leaves and their subsequent hashes, levels 3 and 4, are referred to as branches (or nodes). Finally, the highest block-level, the Merkle Root, stores the summary of all of the transaction data as a singular value.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

DeDevs
DeDevs

Written by DeDevs

Full-Stack Blockchain Engineer. Economics (MA). Amateur Blogger. Solidity Instructor. Interoperability and Security Researcher.

No responses yet

Write a response