Skip to content
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

feat: proof of correct derivation #13

Merged
merged 58 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from 55 commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
b422705
develop setup
mrain Jul 9, 2024
b93ed9a
Merge branch 'main' of github.com:EspressoSystems/zkrollup-integratio…
mrain Jul 9, 2024
dddd849
ns filtering gadget
mrain Jul 11, 2024
6c77c81
Merge branch 'main' of github.com:EspressoSystems/zkrollup-integratio…
mrain Jul 11, 2024
e1738c5
Merge branch 'develop' of github.com:EspressoSystems/zkrollup-integra…
mrain Jul 11, 2024
3084c1a
cargo workspace clean
mrain Jul 11, 2024
f22f093
scan for ns_id
mrain Jul 11, 2024
8c7db61
namespace table filtering & mock input
mrain Jul 17, 2024
4e487a0
update document; wrap public inputs
mrain Jul 17, 2024
c154d9d
Update sp1/program/src/main.rs
mrain Jul 17, 2024
73f8100
global mark
mrain Jul 18, 2024
f9d7658
Merge pull request #10 from EspressoSystems/cl/ns-filter
mrain Jul 18, 2024
827665f
tried namespace proof
mrain Jul 24, 2024
62f7445
redo srs
mrain Jul 24, 2024
f375191
manual (de)ser for VidParam
mrain Jul 25, 2024
4cb2bef
Merge pull request #18 from EspressoSystems/cl/comm-equiv
mrain Jul 29, 2024
e575f39
serde_json for header
mrain Aug 2, 2024
8c0e65d
Merge branch 'main' of github.com:EspressoSystems/zkrollup-integratio…
mrain Aug 2, 2024
a20fbf7
Merge branch 'main' into develop
alxiong Aug 15, 2024
cc2c6be
fix: CI passing again
alxiong Aug 15, 2024
62d292d
add circuit spec in README
alxiong Aug 16, 2024
be1b707
bench & precompiles
mrain Aug 20, 2024
b3b4ee8
Merge branch 'develop' of github.com:EspressoSystems/zkrollup-integra…
mrain Aug 20, 2024
1973916
left over deps
mrain Aug 20, 2024
0903049
Merge pull request #39 from EspressoSystems/cl/opt
mrain Aug 20, 2024
558c04f
multi espresso blocks
mrain Aug 21, 2024
0509ac5
use fixed ns_id for all
mrain Aug 22, 2024
0d9bc40
comments
mrain Aug 22, 2024
bc3434d
Merge branch 'main' into develop
alxiong Aug 22, 2024
0672867
Merge branch 'develop' of github.com:EspressoSystems/zkrollup-integra…
mrain Aug 22, 2024
8395d40
ci: passing proof gen (#42)
alxiong Aug 22, 2024
d5011b6
Documentation
mrain Aug 22, 2024
9f66ddb
Merge branch 'develop' of github.com:EspressoSystems/zkrollup-integra…
mrain Aug 22, 2024
81f639d
Update README.md
mrain Aug 23, 2024
a28db36
Update README.md
mrain Aug 23, 2024
220a4f4
Update README.md
mrain Aug 23, 2024
cfe1a8a
Update README.md
mrain Aug 23, 2024
f959762
Update README.md
mrain Aug 23, 2024
78534bb
Update README.md
mrain Aug 23, 2024
b452988
Update README.md
mrain Aug 23, 2024
de438e7
Update README.md
mrain Aug 23, 2024
0ebea09
Update README.md
mrain Aug 23, 2024
ef2b9d4
Update README.md
mrain Aug 23, 2024
329816e
rearrange public inputs and naming
mrain Aug 23, 2024
dc2fb8c
Merge pull request #40 from EspressoSystems/cl/multi-espresso-block
mrain Aug 23, 2024
31cf0bc
comments & fmt
mrain Aug 26, 2024
6312cb6
address comments
mrain Aug 26, 2024
26f220d
comment
mrain Aug 26, 2024
0f11a12
minor improv on script
alxiong Aug 27, 2024
cf21fee
customized deser
mrain Aug 27, 2024
5172e69
update fixtures for pre-custom-serde
Aug 28, 2024
2eca493
update fixture
Aug 28, 2024
5aafaef
update contracts and use sp1 v1.1.0
alxiong Aug 28, 2024
58ce16d
fix fixture writer and contract logic
alxiong Aug 28, 2024
1c1069a
add missing cargo-sort
alxiong Aug 28, 2024
d9bf339
Update README.md
mrain Aug 28, 2024
079dae5
address comments
mrain Aug 28, 2024
776f0e6
Merge branch 'develop' of github.com:EspressoSystems/zkrollup-integra…
mrain Aug 28, 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
13 changes: 12 additions & 1 deletion .github/workflows/proof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ name: Proof Generation
on:
workflow_dispatch:

env:
SHELL: "/bin/bash"

jobs:
sp1-proof-gen:
runs-on: buildjet-4vcpu-ubuntu-2204
runs-on: buildjet-8vcpu-ubuntu-2204
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -23,7 +26,15 @@ jobs:
with:
prefix-key: v2-rust

- uses: buildjet/cache@v3
with:
path: ~/.local/share/ark-srs
key: buildjet-ark-srs-${{ hashFiles('**/*.bin') }}
restore-keys: |
buildjet-ark-srs-

- name: Install SP1 toolchain
shell: bash
run: |
curl -L https://sp1.succinct.xyz | bash
~/.sp1/bin/sp1up
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
tmp/
.pre-commit-config.yaml
target/
elf/
Loading