-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
# Setup | ||
# Halo Hero | ||
|
||
This book is a course on [Halo2](https://github.com/zcash/halo2) development and PlonKish arithmetization in general. | ||
The intended audience is Rust developers who have a vague understanding of succinct proofs in general, | ||
but no specific knowledge of Halo2, PlonK or developing circuits for zkSNARKs. | ||
|
||
The book was created as a collaboration between [ZKSecurity](https://zksecurity.xyz) and | ||
the [Zircuit](https://www.zircuit.com/) development team. | ||
All material, full code examples and the book's source, are available on [GitHub](https://github.com/zksecurity/halo2-course). | ||
|
||
![zks](src/intro/zks-scale.png) | ||
|
||
![zircuit](src/intro/zircuit.png) | ||
|
||
## Running The Book | ||
|
||
The book is build using `mdbook` and `mdbook-admonish`: | ||
|
||
``` | ||
cargo install mdbook | ||
cargo install mdbook-admonish | ||
mdbook serve | ||
``` | ||
|