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: scroll mode #73

Merged
merged 37 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a716d42
add NullProvider
lightsing Jan 6, 2025
23c5be9
add custom ExecutionWitness type
lightsing Jan 6, 2025
8b25147
add scroll chains
lightsing Jan 6, 2025
6cf4097
re-export BundleAccount
lightsing Jan 6, 2025
6e4334f
add L2MessageQueue pre-deployed
lightsing Jan 6, 2025
9cd1e6d
move ext trait to sub mod
lightsing Jan 6, 2025
3684cf6
add DiskRoot rpc response type
lightsing Jan 6, 2025
914b3c3
update deps
lightsing Jan 6, 2025
71ef4e7
add ScrollExecutorProvider
lightsing Jan 6, 2025
c8bb0bf
gate chunk mod
lightsing Jan 6, 2025
7964d51
re-export DatabaseRef trait
lightsing Jan 6, 2025
654bb45
update database impl
lightsing Jan 6, 2025
69aca29
move withdraw_root out
lightsing Jan 6, 2025
043b9f9
update feature gate
lightsing Jan 6, 2025
9cbd61d
update tool to dump scroll witness
lightsing Jan 6, 2025
94d9ef3
fix non-touched storage root
lightsing Jan 6, 2025
6e4753c
use re-exported BundleAccount
lightsing Jan 6, 2025
db423b9
update feature gate
lightsing Jan 6, 2025
6c5ca8a
update bin
lightsing Jan 6, 2025
b19045f
update deps
lightsing Jan 6, 2025
f922658
update deps
lightsing Jan 7, 2025
d1290ab
add testdata
lightsing Jan 7, 2025
d214d94
handle error
lightsing Jan 7, 2025
22463d1
fix not sync
lightsing Jan 7, 2025
f5f0f72
handle error
lightsing Jan 7, 2025
b609752
update and remove tokio
lightsing Jan 7, 2025
9f1efa8
clippy
lightsing Jan 7, 2025
1851aec
add tx_bytes_hash_in
lightsing Jan 8, 2025
fe571fe
export DatabaseError
lightsing Jan 8, 2025
fbff3e8
fix doc
lightsing Jan 8, 2025
57318d0
no block_hashes in scroll
lightsing Jan 8, 2025
d1e2f9d
fix
lightsing Jan 8, 2025
c4a39cc
use tuple windows (sproll-evm/pull#93)
lightsing Jan 9, 2025
509bee7
fix tests
lightsing Jan 9, 2025
bf8f2c9
fmt
lightsing Jan 9, 2025
e3a618f
toolchain
lightsing Jan 9, 2025
8d37bfe
drop support of sled
lightsing Jan 9, 2025
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "nightly-2024-07-07"
toolchain: "nightly-2024-12-06"
components: rustfmt
- name: Cargo fmt
run: cargo fmt --all -- --check
Expand All @@ -53,7 +53,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "nightly-2024-07-07"
toolchain: "nightly-2024-12-06"
components: clippy
- name: cargo cache
uses: Swatinem/rust-cache@v2
Expand All @@ -63,9 +63,9 @@ jobs:
run: cargo clippy --workspace --features dev -- -D warnings
- name: clippy metrics
run: cargo clippy --workspace --features metrics -- -D warnings
# - name: clippy all
# run: cargo clippy --workspace --all-features -- -D warnings
- name: clippy all
run: cargo clippy --workspace --all-features -- -D warnings
- name: clippy test
run: cargo clippy --workspace --tests -- -D warnings
# - name: clippy test all
# run: cargo clippy --workspace --tests --all-features -- -D warnings # scroll feature is broken now
- name: clippy test all
run: cargo clippy --workspace --tests --all-features -- -D warnings
Loading
Loading