Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions crates/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ regex.workspace = true
thiserror.workspace = true
tracing.workspace = true
url.workspace = true
walkdir.workspace = true
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions crates/app/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ pub mod eth2wrap;
/// Private key locking service.
pub mod privkeylock;

/// Validator-stack process sniper: periodically scans a `/proc`-like
/// filesystem for running Ethereum validator stack processes and reports the
/// detected component names and CLI parameters through a callback.
pub mod stacksnipe;

/// Listen for SSE from Beacon Node
pub mod sse;

Expand Down
Loading
Loading