Skip to content

Merge missing commits after revert #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 43 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
60ca6c5
Updated `.gitignore` to ignore generated plonky2 state
BGluth Mar 26, 2024
970ff10
Merge pull request #43 from 0xPolygonZero/gitignore_prover_state
BGluth Mar 26, 2024
60f258d
Update prover default features (#46)
Nashtare Mar 28, 2024
34de9d8
feat: add circuit version consistency check
lastminutedev Apr 2, 2024
995f706
fix: use circuits code digests instead of evm_arithmetization pkg ver…
lastminutedev Apr 3, 2024
952d2cb
fix: fix clippy issue
lastminutedev Apr 3, 2024
864635b
Reduce verbosity in logs
Nashtare Apr 8, 2024
5e221d8
Bump h2 from 0.3.25 to 0.3.26
dependabot[bot] Apr 8, 2024
4e4e315
Merge pull request #50 from 0xPolygonZero/dependabot/cargo/h2-0.3.26
Nashtare Apr 8, 2024
6b4b968
Merge pull request #49 from 0xPolygonZero/verbosity
Nashtare Apr 8, 2024
2de2237
fix: add pr comments fixes
lastminutedev Apr 9, 2024
80f8da2
Debug & proving scripts now use indentical logging
BGluth Apr 10, 2024
dcd354d
Merge pull request #52 from 0xPolygonZero/script_logging_improvement
BGluth Apr 10, 2024
10080f0
Add flag to scripts
Nashtare Apr 11, 2024
29bdd31
Merge pull request #53 from 0xPolygonZero/script-native
Nashtare Apr 11, 2024
26d3526
Allow verifier to load .env file
Nashtare Apr 12, 2024
b81956b
Add logging info from verifier side
Nashtare Apr 12, 2024
e075b86
Merge pull request #55 from 0xPolygonZero/load_env_verifier
Nashtare Apr 12, 2024
7678a6c
Merge pull request #47 from 0xPolygonZero/add_circuit_version_check
muursh Apr 16, 2024
b54b670
Updated docs for new parameter in `prove_blocks.sh`
BGluth Apr 17, 2024
61b2cd6
Apply suggestions from code review (Nashtare)
BGluth Apr 17, 2024
713b539
Merge pull request #59 from 0xPolygonZero/docs/missing_param_in_prove…
BGluth Apr 17, 2024
27bdf41
Now logs time to generate proofs
BGluth Apr 19, 2024
b3b01e5
Removed agg & block proof timing logic
BGluth Apr 19, 2024
1ea7a09
Merge pull request #61 from 0xPolygonZero/proof_timing
BGluth Apr 19, 2024
37207d8
Fixed txn proof logs not rendering correctly
BGluth Apr 19, 2024
7bfa083
Cleaned up txn proof timing output even more
BGluth Apr 19, 2024
26a38fd
Merge pull request #63 from 0xPolygonZero/fix/txn_log_times_cleanup
BGluth Apr 19, 2024
b05d60a
feat: adding block proof ci
praetoriansentry Apr 22, 2024
da40410
Update tools/simple_test.sh
praetoriansentry Apr 22, 2024
3f5ad04
Merge pull request #65 from 0xPolygonZero/jhilliard/block-proof-ci
praetoriansentry Apr 22, 2024
ea5d63e
Cargo audit updates (#66)
muursh Apr 23, 2024
361edbf
Implement RAII span for transaction timing to avoid cloning input (#67)
cpubot Apr 23, 2024
e18dbd5
feat: provide IR for debugging upon failure (#48)
vladimir-trifonov Apr 24, 2024
b25c112
fix: fix circuit version consistency check (#58)
vladimir-trifonov Apr 24, 2024
d913fad
Reduce sizes and add distinction with test_only mode (#69)
Nashtare Apr 24, 2024
314d071
Merge pull request #41 from BCWResearch/update-config
patrick-bcw May 15, 2024
ac43fc2
Merged from polygon
StephenMal May 16, 2024
d008579
Merged, formatted, and updated coordinator
StephenMal May 16, 2024
6f8283b
ran fmt
StephenMal May 16, 2024
b35dcc6
uncommented tracing
StephenMal May 16, 2024
5d2cc77
Merge pull request #42 from BCWResearch/pull_original
Stephen-BCW May 16, 2024
43e5cb6
Update Cargo.toml
julian-bcw May 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- "**"
workflow_dispatch:
Expand Down Expand Up @@ -63,3 +64,16 @@ jobs:

- name: Run cargo clippy
run: cargo clippy --all-targets -- -D warnings

simple_proof:
name: Execute bash script to generate and verify a proof from a small block
runs-on: zero-ci

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Run the script
run: |
pushd tools
./simple_test.sh
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ circuits/
# Folders containing logs from the utility scripts in tools/
debug/
proofs/

# Serialized generated prover & verifier state used by plonky2
prover_state_*
verifier_state_*
Loading
Loading