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

WIP: E2E ZK Validity Proofs #62

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7bf1837
zk l2 output oracle verifying proofs
zobront Jul 25, 2024
fae014a
config formatting
zobront Jul 25, 2024
1fa6b80
matching abs prestate
zobront Jul 25, 2024
0a98735
no hardcoded values in setUseZK
zobront Jul 25, 2024
74f818b
switch to zobront/sp1-contracts
zobront Jul 25, 2024
a8c46ad
return all versions to original
zobront Jul 25, 2024
feff800
save
zobront Jul 25, 2024
44f611a
diff from l2oo, tests still failing
zobront Jul 26, 2024
7644e2e
reset commented out tests
zobront Jul 26, 2024
68d337d
version tweaks
zobront Jul 26, 2024
8e81421
?
zobront Jul 26, 2024
a16474c
checkpoint default
zobront Jul 26, 2024
2f0d4e9
tests passing, some commented out
zobront Jul 26, 2024
081d92a
chipping away at tests
zobront Jul 26, 2024
3855889
more test progress
zobront Jul 26, 2024
434178e
set vkey
zobront Jul 29, 2024
d4df54d
merge in proposer updates
zobront Jul 29, 2024
cb7b383
start l2oo with genesis output root
zobront Jul 31, 2024
ed43453
simpler deployment with scripts after for easier maintenance
zobront Jul 31, 2024
3de2bea
revert deploy config
zobront Jul 31, 2024
a06b6db
simplify config changes
zobront Jul 31, 2024
d074af6
initialize l2oo script includes vkey and verifier
zobront Jul 31, 2024
06b3b2c
reset starting block num so dummy proof passes
zobront Aug 1, 2024
976986b
detailed proposer plan
zobront Aug 6, 2024
a9184c1
blockhash checkpoint in plan
zobront Aug 6, 2024
fd2a3c1
detailed db changes
zobront Aug 6, 2024
96360dc
big push on op proposer
zobront Aug 6, 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
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@
[submodule "packages/contracts-bedrock/lib/automate"]
path = packages/contracts-bedrock/lib/automate
url = https://github.com/gelatodigital/automate
[submodule "packages/contracts-bedrock/lib/sp1-contracts"]
path = packages/contracts-bedrock/lib/sp1-contracts
url = https://github.com/zobront/sp1-contracts
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ require (
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
github.com/miekg/dns v1.1.58 // indirect
github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b // indirect
github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,8 @@ github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzp
github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
github.com/mattn/go-runewidth v0.0.14 h1:+xnbZSEeDbOIg5/mE6JF0w6n9duR1l3/WmbinWVwUuU=
github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU=
github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
github.com/microcosm-cc/bluemonday v1.0.1/go.mod h1:hsXNsILzKxV+sX77C5b8FSuKF00vh2OMYv+xgHpAMF4=
github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI=
Expand Down
Loading