LibMerkle32

Git Source

This library is meant for creating and verifying Merkle proofs.

Each Merkle tree is assumed to have 2^height leaves.

Nodes are concatenated pairwise and hashed with keccak256.

Siblings are in bottom-up order, from leaf to root.

Functions

merkleRoot

Compute the root of a Merkle tree from its leaves.

Raises an error if more than 2^height leaves are provided.

function merkleRoot(bytes32[] memory leaves, uint256 height) internal pure returns (bytes32);

Parameters

NameTypeDescription
leavesbytes32[]The left-most leaves of the Merkle tree
heightuint256The height of the Merkle tree

Returns

NameTypeDescription
<none>bytes32The root hash of the Merkle tree

siblings

Compute the siblings of the ancestors of a leaf in a Merkle tree.

Raises an error if the provided index is out of bounds.

Raises an error if more than 2^height leaves are provided.

function siblings(bytes32[] memory leaves, uint256 index, uint256 height) internal pure returns (bytes32[] memory);

Parameters

NameTypeDescription
leavesbytes32[]The left-most leaves of the Merkle tree
indexuint256The index of the leaf
heightuint256The height of the Merkle tree

Returns

NameTypeDescription
<none>bytes32[]The siblings of the ancestors of the leaf in bottom-up order

merkleRootAfterReplacement

Compute the root of a Merkle tree after replacing one of its leaves.

Raises an error if the provided index is out of bounds.

function merkleRootAfterReplacement(bytes32[] calldata sibs, uint256 index, bytes32 leaf) internal pure returns (bytes32);

Parameters

NameTypeDescription
sibsbytes32[]The siblings of the ancestors of the leaf in bottom-up order
indexuint256The index of the leaf
leafbytes32The new leaf

Returns

NameTypeDescription
<none>bytes32The root hash of the new Merkle tree

parent

Compute the parent of two nodes.

Uses assembly for extra performance

function parent(bytes32 leftNode, bytes32 rightNode) internal pure returns (bytes32 parentNode);

Parameters

NameTypeDescription
leftNodebytes32The left node
rightNodebytes32The right node

Returns

NameTypeDescription
parentNodebytes32The parent node

parentLevel

Compute the parent level of an array of nodes.

The default node of a parent level is the parent node of two default nodes.

function parentLevel(bytes32[] memory nodes, bytes32 defaultNode) internal pure returns (bytes32[] memory);

Parameters

NameTypeDescription
nodesbytes32[]The array of left-most nodes
defaultNodebytes32The default node after the array

Returns

NameTypeDescription
<none>bytes32[]The left-most nodes of the parent level

at

Get the node at some index

function at(bytes32[] memory nodes, uint256 index, bytes32 defaultNode) internal pure returns (bytes32);

Parameters

NameTypeDescription
nodesbytes32[]The array of left-most nodes
indexuint256The index of the node
defaultNodebytes32The default node after the array