Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
deea1f1
refactor: add receipt buulder in block executor
panos-xyz Feb 8, 2026
a053181
refactor: add ethereum primitives features for evm crate tests
panos-xyz Feb 9, 2026
a6f2201
refactor: add morph block executor factory
panos-xyz Feb 9, 2026
37fa9e7
docs: add some comments
panos-xyz Feb 9, 2026
4597b8f
feat: add morph-reth bin and node wire
panos-xyz Feb 11, 2026
396eae7
fix: fixed eth_call l1 fee rpl encode
panos-xyz Feb 12, 2026
3579377
fix: remove redundant ReceiptBuilder impl
panos-xyz Feb 12, 2026
b2fe930
test
panos-xyz Feb 20, 2026
40900f7
test: add local test script
panos-xyz Feb 24, 2026
a117100
refactor(engine-api): reuse reth engine pipeline for custom L2 api
panos-xyz Feb 25, 2026
8cfaf7e
refactor: add legacy state root flag for block sync
panos-xyz Feb 25, 2026
ffead97
docs: add CLAUDE.md project instructions for AI-assisted development
panos-xyz Feb 26, 2025
eeeebf0
chore: switch reth deps to morph-l2 fork and update docs
panos-xyz Feb 26, 2026
328ea97
refactor(local-test): migrate from nohup to pm2 for process management
panos-xyz Feb 27, 2026
09e2340
fix(node): avoid DB read in withdraw trie root validation to reduce l…
panos-xyz Feb 27, 2026
a797b9c
fix(revm): add disabled precompile stubs for ripemd160/blake2f in Ber…
panos-xyz Feb 28, 2026
81cdb39
Revert "fix(revm): add disabled precompile stubs for ripemd160/blake2…
panos-xyz Mar 1, 2026
3f406f9
fix(revm): add disabled precompile stubs for ripemd160/blake2f in Ber…
panos-xyz Mar 1, 2026
1d28675
fix(chainspec): add missing hardfork timestamps to mainnet and hoodi …
panos-xyz Mar 2, 2026
8ad5947
fix(local-test): disable NAT external IP probing to suppress security…
panos-xyz Mar 2, 2026
c5ae532
feat(node): add geth diskRoot RPC cross-validation for MPT state root
panos-xyz Mar 2, 2026
5655416
fix(node): use rustls-tls for reqwest to avoid system OpenSSL dependency
panos-xyz Mar 2, 2026
9807ce6
fix(node): promote diskRoot cross-validation log from debug to info
panos-xyz Mar 2, 2026
9d075df
fix(node): delete morph-reth when stop
panos-xyz Mar 2, 2026
c6e50bc
fix(node): add log
panos-xyz Mar 2, 2026
3116268
fix(node): pass configured PVB to BasicEngineValidatorBuilder
panos-xyz Mar 2, 2026
eeb70f2
docs: add engine API block tag and FCU optimization design
panos-xyz Feb 28, 2026
e4bad6a
docs: add engine API block tag implementation plan
panos-xyz Feb 28, 2026
dd38794
feat(engine-api): add engine_setBlockTags RPC and decouple tag update…
panos-xyz Feb 28, 2026
3a0e55f
chore: commit local node and sync test updates
panos-xyz Mar 2, 2026
a30895a
chore: remove unused reth engine env defaults
panos-xyz Mar 2, 2026
264f006
refactor: rename MPTFork hardfork to Jade (#33)
chengwenxi Feb 27, 2026
0450ec9
style: fmt all
panos-xyz Mar 2, 2026
0dfb3e2
fix(node): pass configured PVB to MorphTreeEngineValidatorBuilder
panos-xyz Mar 2, 2026
fc5d46e
fix: correct three bugs found in code review
panos-xyz Mar 2, 2026
ea07143
fix(node): batch Finish checkpoint updates for engine imports
panos-xyz Mar 2, 2026
26cc1da
debug(node): add startup head diagnostics for replay mismatch
panos-xyz Mar 2, 2026
b001003
revert: remove recent head diagnostics and checkpoint batching
panos-xyz Mar 3, 2026
d39b137
refactor(code-quality): simplify code based on review findings
panos-xyz Mar 3, 2026
f4bd35b
fix(engine-api): restore EngineStateTracker and set_block_tags after …
panos-xyz Mar 3, 2026
6d980ce
fix: hardfork SpecId mapping, fee vault routing, and cleanup
panos-xyz Mar 3, 2026
b98dc55
simplify(evm): inline fee vault recipient logic directly at call sites
panos-xyz Mar 3, 2026
419217c
docs(engine-api): add set_block_tags to trait method overview
panos-xyz Mar 3, 2026
2464753
fix(chainspec): align Prague activation with Viridian
panos-xyz Mar 3, 2026
59b1ea3
style: cargo fmt
panos-xyz Mar 3, 2026
086e6f3
chore: add local test scripts
panos-xyz Mar 3, 2026
1894301
refactor(engine-api): remove unused forkchoice tracking from EngineSt…
panos-xyz Mar 3, 2026
e56739b
fix(engine-api): correct swapped error messages in build_l2_payload
panos-xyz Mar 4, 2026
614ea21
fix(local-test): bind HTTP RPC to 0.0.0.0 for external access
panos-xyz Mar 4, 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
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/target
CLAUDE.md
.DS_Store
/docs

# Local test artifacts
local-test/
CLAUDE.md

Loading