File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
(modification: no type change headlines) and this project adheres to
6
6
[ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## 0.4.4 - 2024-06-21
8
+ ## 0.4.5 - 2024-06-21
9
9
10
10
- Remove duplicative ` VerkleCrypto ` typescript interface as unnecessary. [ #55 ] ( https://github.com/ethereumjs/verkle-cryptography-wasm/pull/55 )
11
11
12
+ ## 0.4.4 - 2024-06-11
13
+
14
+ - Add ` serializeCommitment ` to to the public API, PR [ #53 ] ( https://github.com/ethereumjs/verkle-cryptography-wasm/pull/53 )
15
+
12
16
## 0.4.3 - 2024-06-03
13
17
14
18
- Add ` hashCommitment ` to the public API and add new test to demonstrate how to derive a
Original file line number Diff line number Diff line change @@ -33,13 +33,15 @@ export const loadVerkleCrypto = async () => {
33
33
const zeroCommitment = zeroCommitmentBase ( )
34
34
35
35
const hashCommitment = ( commitment : Uint8Array ) => verkleFFI . hashCommitment ( commitment )
36
+ const serializeCommitment = ( commitment : Uint8Array ) => verkleFFI . serializeCommitment ( commitment )
36
37
return {
37
38
getTreeKey,
38
39
getTreeKeyHash,
39
40
updateCommitment,
40
41
zeroCommitment,
41
42
verifyExecutionWitnessPreState,
42
- hashCommitment
43
+ hashCommitment,
44
+ serializeCommitment
43
45
}
44
46
}
45
47
You can’t perform that action at this time.
0 commit comments