@waku/rln 0.0.6 → 0.0.8-38fdb53
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/bundle/assets/rln-fb4d7b4b.wasm +0 -0
- package/bundle/assets/rln_final-a641c06e.zkey +0 -0
- package/bundle/assets/rln_wasm_bg-0185b546.wasm +0 -0
- package/bundle/index.js +1 -1
- package/bundle/rln-7c06a1d6.js +1147 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/encoder.d.ts +19 -0
- package/dist/encoder.js +54 -0
- package/dist/encoder.js.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/resources/rln.wasm +0 -0
- package/dist/resources/rln_final.zkey +0 -0
- package/dist/resources/verification_key.d.ts +12 -0
- package/dist/resources/verification_key.js +121 -0
- package/dist/resources/verification_key.js.map +1 -0
- package/dist/rln.d.ts +6 -4
- package/dist/rln.js +37 -32
- package/dist/rln.js.map +1 -1
- package/package.json +5 -3
- package/src/encoder.ts +81 -0
- package/src/index.ts +2 -2
- package/src/rln.ts +54 -46
- package/src/witness_calculator.d.ts +5 -1
- package/bundle/rln-b6bbd489.js +0 -1027
- package/dist/resources.d.ts +0 -4
- package/dist/resources.js +0 -5
- package/dist/resources.js.map +0 -1
- package/src/resources.ts +0 -10
Binary file
|
Binary file
|
Binary file
|
package/bundle/index.js
CHANGED
@@ -3,7 +3,7 @@ async function create() {
|
|
3
3
|
// A dependency graph that contains any wasm must all be imported
|
4
4
|
// asynchronously. This file does the single async import, so
|
5
5
|
// that no one else needs to worry about it again.
|
6
|
-
const rlnModule = await import('./rln-
|
6
|
+
const rlnModule = await import('./rln-7c06a1d6.js');
|
7
7
|
return await rlnModule.create();
|
8
8
|
}
|
9
9
|
|