mirror of
https://github.com/tornadocash/phase2-wasm.git
synced 2024-10-31 23:35:22 +01:00
25a4dd5c30
Bumps [eventsource](https://github.com/EventSource/eventsource) from 1.0.7 to 1.1.1. - [Release notes](https://github.com/EventSource/eventsource/releases) - [Changelog](https://github.com/EventSource/eventsource/blob/master/HISTORY.md) - [Commits](https://github.com/EventSource/eventsource/compare/v1.0.7...v1.1.1) --- updated-dependencies: - dependency-name: eventsource dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
js | ||
phase2-bn254@23338795bf | ||
static | ||
.gitignore | ||
.gitmodules | ||
package-lock.json | ||
package.json | ||
README.md | ||
webpack.config.js |
phase2-wasm
This demo generates contributions for phase 2 of trusted setup MPC in a browser using WebAssembly
How to install
git clone --recursive https://github.com/tornadocash/phase2-wasm
npm install
How to run in debug mode
# Builds the project and opens it in a new browser tab. Auto-reloads when the project changes.
npm start
How to build in release mode
# Builds the project and places it into the `dist` folder.
npm run build
Project structure
webpack.config.js
config that is used to build .wasm and other project filesphase2-bn254/phase2
trusted setup crate, we build .wasm module from itjs/index.js
main frontend script that calls .wasm to generate the contributionstatic/index.html
empty index file that just includes .jsstatic/params.bin
example previous contribution
This example uses static previous contribution file and outputs new contribution to console. On prod this should be handled by the server.