Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
9b407aa
feat(rust): add derivation pipeline test framework
ajsutton Mar 10, 2026
2b155fb
fix(rust): fix CI lint failures in derivation-tests
ajsutton Mar 10, 2026
62d85c5
style(rust): apply nightly rustfmt formatting to derivation-tests
ajsutton Mar 10, 2026
a97e195
fix(rust): remove unused BatchSubmission import in test
ajsutton Mar 10, 2026
90b44e1
feat(rust): add real EVM execution to L2 block builder
ajsutton Mar 10, 2026
10ba2f8
fix(rust): L1/beacon/batch fixes + span batch support + verification …
ajsutton Mar 10, 2026
7e187aa
feat(rust): add missing API methods, tests, and test infrastructure
ajsutton Mar 10, 2026
fbda074
fix(rust): critical fixes for end-to-end derivation test framework
ajsutton Mar 10, 2026
b3769ad
test(rust): add final verification gate tests
ajsutton Mar 10, 2026
2a11641
test(rust): pin golden super root values in derivation tests
ajsutton Mar 10, 2026
0572fed
feat(rust): wire op-program and kona-host integration tests
ajsutton Mar 10, 2026
2f92fb2
fix(rust): fix op-program integration and update golden hashes
ajsutton Mar 11, 2026
a33fd6d
docs(rust): add derivation-tests README
ajsutton Mar 11, 2026
d0b8119
docs(rust): add just targets for derivation-tests
ajsutton Mar 11, 2026
268f3b2
feat(rust): implement EIP-4788/EIP-2935 system calls and reorganize t…
ajsutton Mar 11, 2026
c743e12
fix(rust): use rollup genesis system config for deposit tx construction
ajsutton Mar 11, 2026
5d62aec
fix(rust): address 21 review findings in derivation-tests
ajsutton Mar 11, 2026
ef8a3d1
chore: remove accidentally committed .claude/settings.local.json
ajsutton Mar 11, 2026
00e16e9
refactor(rust): unify integration test scenarios across all programs
ajsutton Mar 11, 2026
3862018
fix(rust): resolve clippy and formatting lint failures
ajsutton Mar 12, 2026
b99299f
refactor(rust): replace #[ignore] with nextest binary filtering for d…
ajsutton Mar 12, 2026
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
192 changes: 183 additions & 9 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ members = [

# Alloy OP Hardforks
"alloy-op-hardforks/",

# Derivation test framework
"derivation-tests/",
]
default-members = [
"kona/bin/host",
Expand Down Expand Up @@ -453,6 +456,7 @@ pin-project = "1.1.10"
tracing-futures = "0.2"
tower = "0.5.3"
tower-http = "0.6"
axum = "0.8"

# ==================== TOKIO ====================
tokio = { version = "1.49.0", default-features = false }
Expand Down
Loading
Loading