This repository has been archived by the owner on May 3, 2024. It is now read-only.
forked from privacy-scaling-explorations/zkevm-circuits
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Recursion PoC * Remove unnecessary proof * fix: use block_table as lookup * feat: add taiko_super_circuit for our recursion proof * reset super_circuit * feat: benchmarks/super_circuit use taiko super circuit * fix: clippy * fix: benchmark * fix: remove unused selectors * use root circuit to pass instances * make root circuit support multi sub-circuits * use new pcd aggregation circuit * add N->1 aggregation testcase * add new circuit file * make PCDAggregationCircuit generic for both GWC & SHPLONK * make PCDAggregationCircuit generic for both GWC & SHPLONK * Update zkevm-circuits/src/witness/block.rs Co-authored-by: Brecht Devos <[email protected]> * update lib * fix name * fix: remove unused selectors * feat: add anchor circuit into super circuit * fix: load pi_table * rename pcd aggregation circuit * fix: super circuit test cases * fix: benchmark * move test in taiko super circuit to test.rs * remove deprecated function and fix test * clean compile warnings * fix(test): test-all relevant to taiko * feat: export the metahash * chore: move golden touch wallet into test * fix: use protocol instance in block witness * Fix 2tx test issue * Re-enable PSE PI tests that were temporarily disabled * Update zkevm-circuits/src/root_circuit/taiko_aggregation.rs Co-authored-by: Brecht Devos <[email protected]> * fix: pi-circuit tests * fix: ignore the anchor tx's fee * fix: anchor tx without fee * fix: each params will be up to u256 * fix: gas price non zero * fix(anchor): calldata with fixed 32B * feat: add anchor flag and support multi V * fix: anchor method signature changed * fix(anchor): error randomness * fix: clippy complain * Fix make test-all + Feedback changes --------- Co-authored-by: johntaiko <[email protected]> Co-authored-by: smtmfft <[email protected]> Co-authored-by: smtmfft <[email protected]>
- Loading branch information
1 parent
7d575e8
commit 5d785b4
Showing
29 changed files
with
1,956 additions
and
341 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
*.png | ||
.DS_Store | ||
.vscode | ||
.idea | ||
.idea | ||
/generated |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ impl CircuitInputBuilderTx { | |
struct_logs: vec![geth_step.clone()], | ||
}, | ||
false, | ||
false, | ||
) | ||
.unwrap(); | ||
|
||
|
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
Oops, something went wrong.