chore(circuits): Restructure Merkle tree templates into separate files #2362
+222
−196
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Introduced new templates for Merkle tree operations:
BinaryMerkleRoot
,CheckRoot
,LeafExists
,MerkleTreeInclusionProof
, andMerkleGeneratePathIndices
.incrementalMerkleTree.circom
to include these new templates, improving modularity and maintainability of the codebase.This pull request addresses issue #1419 by restructuring the Circom templates located in
packages/circuits/circom/utils/trees/incrementalMerkleTree.circom
.Previously, this single file contained multiple template definitions related to Merkle tree operations (
MerkleTreeInclusionProof
,LeafExists
,CheckRoot
,MerkleGeneratePathIndices
,BinaryMerkleRoot
).To improve code organization and modularity, each template has been extracted into its own dedicated file within the same directory (
packages/circuits/circom/utils/trees/
).The original
incrementalMerkleTree.circom
file has been updated to simply include these new, individual template files. This ensures that existing circuits which depend onincrementalMerkleTree.circom
continue to function without modification, as they will now implicitly import all the necessary templates via the updated include statements.Additional Notes
No additional notes.
Related issue(s)
Confirmation
Important
We do not accept minor grammatical fixes (e.g., correcting typos, rewording sentences) unless they significantly improve clarity in technical documentation. These contributions, while appreciated, are not a priority for merging. If there is a grammatical error feel free to message the team.
Additional Notes
Related issue(s)
Confirmation
Important
We do not accept minor grammatical fixes (e.g., correcting typos, rewording sentences) unless they significantly improve clarity in technical documentation. These contributions, while appreciated, are not a priority for merging. If there is a grammatical error feel free to message the team.