@succinctlabs/sp1-wasm-verifier 5.0.1 → 5.0.3
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 +25 -14
- package/sp1_wasm_verifier.rn.js +64 -0
- package/sp1_wasm_verifier_bg.wasm +0 -0
- package/README.md +0 -19
package/package.json
CHANGED
|
@@ -1,27 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@succinctlabs/sp1-wasm-verifier",
|
|
3
|
-
"
|
|
4
|
-
"Bhargav Annem, Yuwen Zhang"
|
|
5
|
-
],
|
|
3
|
+
"version": "5.0.3",
|
|
6
4
|
"description": "A rust verifier for BN254 curve",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
5
|
+
"main": "./sp1_wasm_verifier.js",
|
|
6
|
+
"module": "./sp1_wasm_verifier.js",
|
|
7
|
+
"types": "./sp1_wasm_verifier.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"react-native": "./sp1_wasm_verifier.rn.js",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"author": "Bhargav Annem, Yuwen Zhang",
|
|
12
|
+
"license": "MIT OR Apache-2.0",
|
|
9
13
|
"repository": {
|
|
10
14
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/succinctlabs/example-sp1-wasm-verifier"
|
|
15
|
+
"url": "git+https://github.com/succinctlabs/example-sp1-wasm-verifier"
|
|
12
16
|
},
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"main": "sp1_wasm_verifier.js",
|
|
19
|
-
"types": "sp1_wasm_verifier.d.ts",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/succinctlabs/example-sp1-wasm-verifier/issues"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/succinctlabs/example-sp1-wasm-verifier#readme",
|
|
21
|
+
"readme": "README.md",
|
|
20
22
|
"keywords": [
|
|
21
23
|
"zero-knowledge",
|
|
22
24
|
"cryptography",
|
|
23
25
|
"zkSNARK",
|
|
24
26
|
"SNARK",
|
|
25
|
-
"gnark"
|
|
27
|
+
"gnark",
|
|
28
|
+
"bn254",
|
|
29
|
+
"verifier",
|
|
30
|
+
"wasm"
|
|
31
|
+
],
|
|
32
|
+
"files": [
|
|
33
|
+
"sp1_wasm_verifier.js",
|
|
34
|
+
"sp1_wasm_verifier.rn.js",
|
|
35
|
+
"sp1_wasm_verifier_bg.wasm",
|
|
36
|
+
"sp1_wasm_verifier.d.ts"
|
|
26
37
|
]
|
|
27
38
|
}
|