https://github.com/wavesplatform/zwaves
https://github.com/wavesplatform/zwaves
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wavesplatform/zwaves
- Owner: wavesplatform
- License: mit
- Created: 2019-09-30T23:47:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-16T11:28:12.000Z (over 2 years ago)
- Last Synced: 2024-04-15T00:16:49.858Z (about 2 years ago)
- Language: Rust
- Size: 2.55 MB
- Stars: 4
- Watchers: 3
- Forks: 7
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wasm-bellman-circuit
Here is workspace to build the circuit for anonymous transactions for waves and js bindings.
* zwaves_primitives - crate for utils and crypto function
* zwaves_circuit - crate for circuits
* zwaves_wasm - crate for wasm bindings
* js - example, how to use js bindings
First, we need to install the dependencies (`cargo` and `npm` should be already installed):
```
cargo install wasm-pack
cd js && npm install
```
To run tests
```bash
cargo test
```
To build
``` bash
wasm-pack build zwaves_wasm
```
To view web page with wasm in browser.
```
cd js && npm run start
```