Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Scroll dev 1115 #222

Closed
wants to merge 48 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
a4da395
squash
lispc Nov 1, 2022
5c8ade0
clean create
lispc Nov 1, 2022
d88e35e
update circuit params
lispc Nov 1, 2022
4e98008
Fix bus mapping for rw consistency (#214)
z2trillion Nov 15, 2022
6987af6
Merge remote-tracking branch 'origin/main' into scroll-dev-1031
lispc Nov 15, 2022
30ff82d
Merge remote-tracking branch 'scroll/scroll-dev-1031' into scroll-dev…
lispc Nov 15, 2022
f3cb689
include CodeHash trait in busmapping
noel2004 Nov 1, 2022
dfd4d28
make codehash respect dynamic method in CDB
noel2004 Nov 2, 2022
18a5b42
Merge remote-tracking branch 'origin/main' into scroll-dev-1031
lispc Nov 15, 2022
ddfc8f1
Merge remote-tracking branch 'origin/main' into scroll-dev-1115
lispc Nov 16, 2022
546fd91
Revert "update circuit params"
lispc Nov 16, 2022
b9d1def
fix all
lispc Nov 16, 2022
a200e9c
fmt
lispc Nov 16, 2022
28433de
Merge remote-tracking branch 'origin/main' into scroll-dev-1115
lispc Dec 2, 2022
e1404f8
fix build
lispc Dec 2, 2022
ba0e6b6
fix call
lispc Dec 2, 2022
da0028c
Merge remote-tracking branch 'origin/main' into scroll-dev-1115
lispc Dec 2, 2022
0bbedb2
Merge remote-tracking branch 'origin/main' into scroll-dev-1115
lispc Dec 7, 2022
730a279
lint
lispc Dec 7, 2022
97cac71
CircuitParams
lispc Dec 7, 2022
882c6e3
Add function `call_context_as_word` and fix `current_value` to Word t…
silathdiir Dec 8, 2022
537b94f
Fix to not invoke `transfer` for call related opcodes (CALLCODE, DELE…
silathdiir Dec 8, 2022
5507298
Fix to use `current_call.value` to setup next-call context for DELEGA…
silathdiir Dec 8, 2022
0c352df
Update to set first transaction with value `1000`. It sets `current_c…
silathdiir Dec 8, 2022
56cd71c
Add comments to explain some special code.
silathdiir Dec 8, 2022
6ea2911
fixing
lispc Dec 9, 2022
e54a95f
Merge remote-tracking branch 'origin/main' into scroll-dev-1115
lispc Dec 9, 2022
c1402a9
Merge branch 'scroll-dev-1115-fixing' into scroll-dev-1115
lispc Dec 9, 2022
cc1998f
lint
lispc Dec 9, 2022
c4a9728
Merge remote-tracking branch 'scroll/fix/no-transfer-except-call' int…
lispc Dec 9, 2022
175a8e0
fixed
lispc Dec 9, 2022
fcb689e
fix static call; mainnet blocks work
lispc Dec 9, 2022
56f55d6
support prevrandao
lispc Dec 9, 2022
4d6e416
clean
lispc Dec 10, 2022
bf78f5b
Merge branch 'scroll-dev-1115' of github.com:scroll-tech/zkevm-circui…
lispc Dec 11, 2022
658e20c
fix dummy error
DreamWuGit Dec 12, 2022
8062d09
Merge branch 'main' into fix_dummy_error
DreamWuGit Dec 12, 2022
e72ade2
Merge remote-tracking branch 'origin/fix_dummy_error' into scroll-dev…
lispc Dec 12, 2022
f33b7ff
Merge branch 'scroll-dev-1115' of github.com:scroll-tech/zkevm-circui…
lispc Dec 13, 2022
d3a8270
fix common-rs
lispc Dec 14, 2022
c8c1fb2
add super circuit mock
lispc Dec 14, 2022
04948bb
upgrade halo2
lispc Dec 14, 2022
127f1b9
add tx circuit mock prove
lispc Dec 14, 2022
7d6fe99
many fix
lispc Dec 14, 2022
3bc8b91
params for mock prove
lispc Dec 15, 2022
36b21ae
disable some constraints for super circuit
lispc Dec 15, 2022
d354f98
pass common-rs for pack mode
lispc Dec 19, 2022
50731b5
add all zero row into mpt table to avoid stupid halo2 error format pr…
lispc Dec 19, 2022
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: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,14 @@ jobs:
command: test
args: --verbose --release --all --all-features --exclude integration-tests --exclude circuit-benchmarks
- name: Run heavy tests # heavy tests are run serially to avoid OOM
if: false
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --release --all --all-features --exclude integration-tests --exclude circuit-benchmarks serial_ -- --ignored --test-threads 1

build:
if: github.event.pull_request.draft == false
if: false

name: Build target ${{ matrix.target }}
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
*.png
.DS_Store
.vscode
*.log
*.json
*.sh
Loading