Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
87c80a4
feat(metrics): add Prometheus metrics for Engine API and payload builder
panos-xyz Apr 14, 2026
6aa4607
chore: fix rustfmt and remove stale cargo-deny advisory
panos-xyz Apr 14, 2026
f6082e2
chore: restore RUSTSEC-2026-0002 and add RUSTSEC-2026-0097 to cargo-d…
panos-xyz Apr 14, 2026
199dca9
fix: remove trailing comma in morph-engine dashboard JSON
panos-xyz Apr 14, 2026
f3d531a
chore: fix CodeRabbit review comments
panos-xyz Apr 14, 2026
60354c0
fix: address high/medium/low review issues
panos-xyz Apr 14, 2026
03d8054
fix: unify morph-reth Grafana dashboard layout
panos-xyz Apr 14, 2026
13fb789
feat(metrics): add unified Grafana dashboard and local devnet test infra
panos-xyz Apr 14, 2026
e4a314b
refactor(metrics): simplify Grafana dashboard, make morph-reth.json s…
panos-xyz Apr 15, 2026
f03aad3
refactor(payload-builder): drop skip counters, replace with logs
panos-xyz Apr 15, 2026
b24f3c5
refactor(dashboard): polish Overview row, drop broken panels, fix emp…
panos-xyz Apr 15, 2026
810789c
fix(dashboard): guard DB Average Commit Time against divide-by-zero NaN
panos-xyz Apr 15, 2026
ba53802
fix(dashboard): Connected peers align with Storage row + visible bars
panos-xyz Apr 15, 2026
5d2479e
refactor(dashboard): layout overhaul, chain/role filters, idle-state …
panos-xyz Apr 15, 2026
d56ff00
chore: stop tracking local-test/ (local-only test harness, kept out o…
panos-xyz Apr 15, 2026
8341ab6
revert(local-test): restore main state
panos-xyz Apr 15, 2026
5671fbc
Clean up .gitignore by removing specific paths
panos-xyz Apr 15, 2026
235af70
Update .gitignore
panos-xyz Apr 15, 2026
11cc60f
chore: ignore RUSTSEC-2026-0098 and RUSTSEC-2026-0099 (rustls-webpki)
panos-xyz Apr 15, 2026
1a6ff69
chore: resolve merge conflict with main (RUSTSEC-2026-0097 comment)
panos-xyz Apr 16, 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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ CLAUDE.md

.worktrees/
.claude/
.omc/
.omc/local-test/jwt.hex
local-test/__pycache__/
28 changes: 16 additions & 12 deletions 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 crates/engine-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ morph-payload-types.workspace = true
morph-primitives = { workspace = true, features = ["reth-codec"] }

# reth
reth-metrics.workspace = true
reth-node-api.workspace = true
reth-payload-builder.workspace = true
reth-payload-primitives.workspace = true
Expand All @@ -30,6 +31,9 @@ alloy-eips.workspace = true
alloy-primitives.workspace = true
alloy-rpc-types-engine.workspace = true

# metrics
metrics.workspace = true

# misc
async-trait.workspace = true
auto_impl.workspace = true
Expand Down
Loading
Loading