-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Integrate prover with bridge * Add integration script * Remove prover JSON files * Remove SRS file and change public input gen output paths * Fix prover test * Add default SRS * Add opam env cmd * Add opam installation step with caching * Reorder cache step and add Rust installation for Mina * Cache Mina monorepo * Add mina monorepo commit env var * Add components to rust toolchain * Reorder cache steps and add monorepo cache step * Fix monorepo cache path * Fix monorepo commit env var * Reorder monorepo commit env var * Put cacher step before installing deps * Fix clippy * Move commit env var step before caching * Fix env var setting * Fix monorepo caching path * Point o1js to foreign field remote branch * Revert "Point o1js to foreign field remote branch" This reverts commit 90e45f0. * add o1js as submodule (#26) Co-authored-by: Pablo Deymonnaz <[email protected]> * Remove cs generation * Fix integration flow * Remove Mina monorepo steps * Fix verifier circuit tests name * Remove KZG prover * Add init O1JS step * Fix o1js step * Ignore o1js tests * Add integration job * Fix workflow file * Add checkout step * Add o1js setup in integration test --------- Co-authored-by: Florian <[email protected]> Co-authored-by: Pablo Deymonnaz <[email protected]>
- Loading branch information
1 parent
f1c3e19
commit 4afa259
Showing
26 changed files
with
2,924 additions
and
2,094 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
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 |
---|---|---|
@@ -1,3 +1 @@ | ||
# Generated on EVM Bridge preinstall | ||
mina_monorepo | ||
|
||
/proof.json |
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,3 @@ | ||
[submodule "verifier_circuit/o1js"] | ||
path = verifier_circuit/o1js | ||
url = https://github.com/o1-labs/o1js.git |
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,11 @@ | ||
.PHONY: run | ||
|
||
run: | ||
@echo "Setting up o1js..." | ||
@git submodule update --init --recursive | ||
@echo "Generating public input for verifier circuit..." | ||
@cd public_input_gen && cargo r --release | ||
@echo "Done!" | ||
@echo "Proving verifier circuit..." | ||
@cd verifier_circuit && npm i && make | ||
@echo "Done!" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.