@ethproofs/openvm2-wasm-stark-verifier 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethproofs/openvm2-wasm-stark-verifier",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "WASM wrapper for OpenVM v2 STARK verifier - verify OpenVM v2 proofs in browsers and Node.js",
5
5
  "type": "module",
6
6
  "main": "pkg/openvm2_wasm_stark_verifier.js",
@@ -7,7 +7,8 @@ export function main(): void;
7
7
  * Verify an OpenVM v2 STARK proof
8
8
  *
9
9
  * # Arguments
10
- * * `proof_bytes` - The serialized proof data (zstd-compressed, custom codec format)
10
+ * * `proof_bytes` - Persisted STARK final proof (optionally zstd-compressed,
11
+ * bincode1-encoded `StarkProofWithPublicValue<F>`)
11
12
  * * `vk_bytes` - The serialized verification key (bitcode format)
12
13
  *
13
14
  * # Returns
@@ -6,7 +6,8 @@ export function main() {
6
6
  * Verify an OpenVM v2 STARK proof
7
7
  *
8
8
  * # Arguments
9
- * * `proof_bytes` - The serialized proof data (zstd-compressed, custom codec format)
9
+ * * `proof_bytes` - Persisted STARK final proof (optionally zstd-compressed,
10
+ * bincode1-encoded `StarkProofWithPublicValue<F>`)
10
11
  * * `vk_bytes` - The serialized verification key (bitcode format)
11
12
  *
12
13
  * # Returns
@@ -40,7 +41,7 @@ export function __wbg_error_a6fa202b58aa1cd3(arg0, arg1) {
40
41
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
41
42
  }
42
43
  }
43
- export function __wbg_log_9ea0fc1d68ddc809(arg0, arg1) {
44
+ export function __wbg_log_7e30a967df9f6c46(arg0, arg1) {
44
45
  console.log(getStringFromWasm0(arg0, arg1));
45
46
  }
46
47
  export function __wbg_new_227d7c05414eb861() {
package/pkg/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "openvm2-wasm-stark-verifier",
3
3
  "type": "module",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "files": [
6
6
  "openvm2_wasm_stark_verifier_bg.wasm",
7
7
  "openvm2_wasm_stark_verifier.js",