27 views
in Cryptocurrency by (16.6k points)
What is a Merkle tree in blockchain?

Please log in or register to answer this question.

2 Answers

0 votes
by (16.6k points)
A Merkle tree in blockchain is a data structure that is used to efficiently summarize and verify the integrity of the data stored in the blockchain. It is constructed by taking a list of data blocks, hashing each block, then combining pairs of hashes together and hashing them again until a single root hash, known as the Merkle root, is obtained. This Merkle root is then stored in the blockchain's block header, allowing for quick verification of the entire set of data without needing to access each individual block.
0 votes
by (7.8k points)
A Merkle tree in blockchain is a data structure used to efficiently summarize and verify the integrity of large sets of data. It is constructed by recursively hashing pairs of data until a single root hash is obtained, known as the Merkle root. This root hash represents the entire set of data, allowing for quick verification of data consistency and integrity without having to check each individual piece of data. Merkle trees are commonly used in blockchain technology to facilitate efficient and secure verification of transactions and blocks.
...