https://github.com/lambdaclass/simpleworks
Arkworks made simple for us: the non cryptographer software plumbers
https://github.com/lambdaclass/simpleworks
Last synced: about 1 year ago
JSON representation
Arkworks made simple for us: the non cryptographer software plumbers
- Host: GitHub
- URL: https://github.com/lambdaclass/simpleworks
- Owner: lambdaclass
- License: gpl-3.0
- Created: 2022-11-08T17:32:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-08T04:10:09.000Z (over 3 years ago)
- Last Synced: 2025-03-24T01:23:57.859Z (about 1 year ago)
- Language: Rust
- Homepage: https://lambdaclass.github.io/simpleworks/overview.html
- Size: 1.31 MB
- Stars: 21
- Watchers: 4
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simpleworks
Arkworks made simple for us: the non cryptographer software plumbers.
This is still a WIP. We will publish many more examples and documentation in the upcoming weeks.
## Arkworks documentation and examples
There are five examples that serve as an introduction to arkworks. You can run them by doing:
``` shell
cargo test --example test-circuit
cargo test --example manual-constraints
cargo test --example merkle-tree
cargo test --example schnorr-signature
cargo test --example simple-payments
```
You can check out the code for them under the `examples` directory, and [a thorugh explanation of `test-circuit`, `manual-constraints` and `merkle-tree` on our site](https://entropy1729.github.io/simpleworks/overview.html) or by running it locally; with [mdbook](https://rust-lang.github.io/mdBook/) installed, you can do
```
cd docs
mdbook serve --open
```
to serve the docs on your machine.