-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip: not compiling * some more updates * config for layer5 * update e2e test * add bundle proving * remove fields that are not needed anymore * minor change * correction to the vk name * update dep, dump prove task for batch * remove generic from gen_batch_proof * verifier has optional deployment code, update * sigh * update dep * add test artifacts for bundle test * renaming proof generated in e2e * fix path * update bundle test * update prover dep * batch header in e2e test (multi-batch) * avoid fetching chunk proof from cache (multi-batch) * update testing data * fix issue in e2e * delay creation of batch prover * udpate dep and testing data * update dep * update dependency * assets for release-v0.12.0-rc.1 * batch header refactor (#328) * update e2e tests based on prover updates * update dep and proof outputs (test data) --------- Co-authored-by: Zhuo Zhang <[email protected]> * add BatchProvingTask for batch tests * bump prover * bump prover and fix compilation * assets for release-v0.12.0-rc.2 * add the preprocessed digest (first 32 bytes of pi) * redirect proprocessed data to separate hex file in release script * layer6 optimise (advice=1) * bump prover * bump prover * fix: compilation * correct structure for batch proving task * add batch-bundle proving e2e test * correct data, more logging * [Refactor] Verifier for compression circuit (#331) Refactor verifier * [Feat] A new unittest for evm verifier (#332) induce new evm verifier test Co-authored-by: Rohit Narurkar <[email protected]> * assets: v0.12.0-rc.3 * bump prover * bump prover * assets: v0.12.0 * fix: tmp fix compilation * remove old assets --------- Co-authored-by: Rohit Narurkar <[email protected]> Co-authored-by: noelwei <[email protected]> Co-authored-by: Zhuo Zhang <[email protected]> Co-authored-by: Ho <[email protected]>
- Loading branch information
1 parent
6cc9905
commit 0d588c3
Showing
55 changed files
with
2,501,520 additions
and
1,799 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"strategy": "Simple", | ||
"degree": 21, | ||
"num_advice": [ | ||
4 | ||
], | ||
"num_lookup_advice": [ | ||
1 | ||
], | ||
"num_fixed": 1, | ||
"lookup_bits": 20, | ||
"limb_bits" :88, | ||
"num_limbs": 3 | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"strategy": "Simple", | ||
"degree": 26, | ||
"num_advice": [ | ||
1 | ||
], | ||
"num_lookup_advice": [ | ||
1 | ||
], | ||
"num_fixed": 1, | ||
"lookup_bits": 25, | ||
"limb_bits": 88, | ||
"num_limbs": 3 | ||
} |
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ pub mod capacity_checker; | |
pub mod evm; | ||
pub mod prove; | ||
pub mod test_util; | ||
mod verifier; |
Oops, something went wrong.