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(libzkp): ccc v0.10.2 (enable sha256, remove StructLog.stack) #691

Merged
merged 30 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4578bb9
upgrade zkevm version
colinlyguo Apr 5, 2024
ca5287c
change Cargo.lock
colinlyguo Apr 5, 2024
05b94c0
Merge branch 'develop' into new-zkevm
colinlyguo Apr 5, 2024
de17ba2
try fix
colinlyguo Apr 5, 2024
71964a1
update Cargo.lock
colinlyguo Apr 5, 2024
818eed0
fix
colinlyguo Apr 5, 2024
5608cc5
upgrade rust-toolchain version
colinlyguo Apr 5, 2024
18c47f4
update rust-toolchain
colinlyguo Apr 5, 2024
5f06bce
fix build
lispc Apr 5, 2024
1e6a700
upgrade zkp
lispc Apr 5, 2024
c1fc87d
fix ccc
lispc Apr 5, 2024
69702c1
chore: auto version bump [bot]
colinlyguo Apr 7, 2024
af57606
chore(libzkp): upgrade to v0.10.1
lispc Apr 10, 2024
885da45
Merge remote-tracking branch 'origin/develop' into new-zkevm
lispc Apr 10, 2024
3747fb1
clean poseidon-circuit deps
lispc Apr 10, 2024
00b715f
chore: auto version bump [bot]
lispc Apr 10, 2024
1d06e5e
chore: auto version bump [bot]
colinlyguo Apr 10, 2024
120216b
fix patch version
colinlyguo Apr 10, 2024
f9b9846
disable stack
0xmountaintop Apr 2, 2024
2dc79a8
upgrade libzkp
lispc Apr 10, 2024
7590e47
Merge branch 'new-zkevm' of github.com:scroll-tech/go-ethereum into n…
lispc Apr 10, 2024
404ce29
fix(rollup-verifier): update codecv1
colinlyguo Apr 12, 2024
5ff4613
Merge branch 'update-codecv1' into new-zkevm
colinlyguo Apr 12, 2024
2b01811
fix genesis batch codec check
colinlyguo Apr 13, 2024
a25fd04
bump version
colinlyguo Apr 13, 2024
e952c44
Merge branch 'update-codecv1' into new-zkevm
colinlyguo Apr 13, 2024
42cf0df
use temporary version tag
Thegaram Apr 14, 2024
38f6025
Merge branch 'develop' into new-zkevm
Thegaram Apr 18, 2024
8c2be2d
Merge branch 'develop' into new-zkevm
Thegaram Apr 22, 2024
78cd28f
Merge branch 'develop' into new-zkevm
Thegaram Apr 29, 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
1 change: 1 addition & 0 deletions eth/tracers/api_blocktrace.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ func (api *API) createTraceEnvAndGetBlockTrace(ctx context.Context, config *Trac
config = &TraceConfig{
LogConfig: &vm.LogConfig{
DisableStorage: true,
DisableStack: true,
EnableMemory: false,
EnableReturnData: true,
},
Expand Down
2 changes: 1 addition & 1 deletion params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
const (
VersionMajor = 5 // Major version component of the current release
VersionMinor = 2 // Minor version component of the current release
VersionPatch = 0 // Patch version component of the current release
VersionPatch = 1 // Patch version component of the current release
VersionMeta = "mainnet" // Version metadata to append to the version string
)

Expand Down
Loading
Loading