Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9a4f6dc
feat: add get latest height route to rpc
matthias-wright Oct 10, 2025
ffb9422
chore: add optional IP cli arg
matthias-wright Oct 14, 2025
03d24c0
feat: if ckpt is provided, read peer list from ckpt instead of genesis
matthias-wright Oct 17, 2025
2affb4b
feat: add stake and checkpoint bin (WIP)
matthias-wright Oct 17, 2025
65dade8
feat: add registry change view delta to finalizer
matthias-wright Oct 17, 2025
a005f1f
feat: add genesis validators to consensus state
matthias-wright Oct 17, 2025
b17a119
feat: activate validators that staked at the end of epoch
matthias-wright Oct 20, 2025
2fbaf73
feat: bring in reth bindings with graceful shutdown
matthias-wright Oct 20, 2025
ceca6b4
feat: graceful shutdown
matthias-wright Oct 21, 2025
7c4e771
chore: use custom reth binding
matthias-wright Oct 21, 2025
bf41af2
chore: don't restart node0
matthias-wright Oct 21, 2025
2314c61
chore: clippy + fmt
matthias-wright Oct 21, 2025
bdb3159
feat: allow withdrawal requests from inactive validators
matthias-wright Oct 21, 2025
45ad578
chore: clippy
matthias-wright Oct 21, 2025
5edfffa
feat: add NetworkOracle trait and add oracle to finalizer actor
matthias-wright Oct 21, 2025
30c3cbb
fix: don't add own public key to oracle when joining
matthias-wright Oct 21, 2025
50f2aff
chore: filter out inactive peers in run_node
matthias-wright Oct 21, 2025
240f909
fix: test_metrics_endpoint
matthias-wright Oct 21, 2025
295c0f6
fix: add own public key to committee list if it is not contained
matthias-wright Oct 21, 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
108 changes: 104 additions & 4 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ commonware-macros = "0.0.62"

alloy-consensus = "1.0.12"
alloy-eips = { version = "1.0.19", features = ["ssz"] }
alloy-genesis = "1.0.9"
alloy-network = "1.0.9"
alloy-node-bindings = "1.0.9"
alloy-rpc-client = { version = "1.0.9", features = [
Expand All @@ -41,6 +42,7 @@ alloy-transport-http = { version = "1.0.9", features = ["hyper", "jwt-auth"] }
alloy-provider = { version = "1.0.9", features = ["hyper", "engine-api","ipc"] }
alloy-primitives = "1.2.1"
alloy-transport-ipc = { version = "1.0.9" }
url = "2.5"

futures = "0.3.31"
http = "1.0"
Expand Down
Loading