-
Notifications
You must be signed in to change notification settings - Fork 294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: append-only merkle tree generics #5355
Merged
alexghr
merged 2 commits into
master
from
03-20-refactor_append-only_merkle_tree_generics
Mar 26, 2024
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,7 @@ | |
"erc", | ||
"falsey", | ||
"fargate", | ||
"Fieldeable", | ||
"filestat", | ||
"flatmap", | ||
"foundryup", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 7 additions & 3 deletions
10
yarn-project/merkle-tree/src/interfaces/append_only_tree.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
import { TreeSnapshotBuilder } from '../snapshots/snapshot_builder.js'; | ||
import { Bufferable } from '@aztec/foundation/serialize'; | ||
|
||
import { TreeSnapshot, TreeSnapshotBuilder } from '../snapshots/snapshot_builder.js'; | ||
import { MerkleTree } from './merkle_tree.js'; | ||
|
||
/** | ||
* A Merkle tree that supports only appending leaves and not updating existing leaves. | ||
*/ | ||
export interface AppendOnlyTree extends MerkleTree, TreeSnapshotBuilder { | ||
export interface AppendOnlyTree<T extends Bufferable = Buffer> | ||
extends MerkleTree<T>, | ||
TreeSnapshotBuilder<TreeSnapshot<T>> { | ||
/** | ||
* Appends a set of leaf values to the tree. | ||
* @param leaves - The set of leaves to be appended. | ||
*/ | ||
appendLeaves(leaves: Buffer[]): Promise<void>; | ||
appendLeaves(leaves: T[]): Promise<void>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 7 additions & 3 deletions
10
yarn-project/merkle-tree/src/interfaces/update_only_tree.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
import { TreeSnapshotBuilder } from '../snapshots/snapshot_builder.js'; | ||
import { Bufferable } from '@aztec/foundation/serialize'; | ||
|
||
import { TreeSnapshot, TreeSnapshotBuilder } from '../snapshots/snapshot_builder.js'; | ||
import { MerkleTree } from './merkle_tree.js'; | ||
|
||
/** | ||
* A Merkle tree that supports updates at arbitrary indices but not appending. | ||
*/ | ||
export interface UpdateOnlyTree extends MerkleTree, TreeSnapshotBuilder { | ||
export interface UpdateOnlyTree<T extends Bufferable = Buffer> | ||
extends MerkleTree<T>, | ||
TreeSnapshotBuilder<TreeSnapshot<T>> { | ||
/** | ||
* Updates a leaf at a given index in the tree. | ||
* @param leaf - The leaf value to be updated. | ||
* @param index - The leaf to be updated. | ||
*/ | ||
updateLeaf(leaf: Buffer, index: bigint): Promise<void>; | ||
updateLeaf(leaf: T, index: bigint): Promise<void>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where did you end up using it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The type exists already and it has a squiggly line 😬
aztec-packages/yarn-project/foundation/src/serialize/serialize.ts
Line 124 in dfffe5d