Skip to content

Commit

Permalink
Merge pull request #18 from lambdaclass/witness
Browse files Browse the repository at this point in the history
Witness generation for KZG proving
  • Loading branch information
gabrielbosio authored Sep 27, 2023
2 parents 2fe319f + 1b02561 commit c1b4c22
Show file tree
Hide file tree
Showing 14 changed files with 1,211 additions and 1,340 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ on:
jobs:
kzg_prover:
name: KZG Prover
uses: lambdaclass/mina_bridge/.github/workflows/rust_ci.yaml@main
uses: ./.github/workflows/rust_ci.yaml
with:
directory: kzg_prover
skip_run: true

public_input_gen:
name: Public input generation
uses: lambdaclass/mina_bridge/.github/workflows/rust_ci.yaml@main
uses: ./.github/workflows/rust_ci.yaml
with:
directory: public_input_gen

verify_circuit_tests:
name: Verifying circuit Rust tests
uses: lambdaclass/mina_bridge/.github/workflows/rust_ci.yaml@main
uses: ./.github/workflows/rust_ci.yaml
with:
directory: verify_circuit_tests

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rust_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:

- name: Set up cargo cache
uses: Swatinem/rust-cache@v2

- name: Clone Mina monorepo
run: sh ../evm_bridge/scripts/preinstall.sh

- name: Run cargo check
run: cargo check --workspace
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Generated on EVM Bridge preinstall
mina_monorepo

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,4 @@ make
```

This will create the constraint system of the verification of a proof with fixed values.
This will also clone the Monorepo version of Mina so that the bridge uses o1js from there.
Loading

0 comments on commit c1b4c22

Please sign in to comment.