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
117 changes: 92 additions & 25 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ tower = "0.5.0"
backon = { version = "1", default-features = false, features = ["std", "tokio-sleep"] }
arbitrary = { version = "=1.4.2", features = ["derive"] }
blake3 = "1.8.4"
ed25519-dalek = { version = "2", features = ["serde"] }
ed25519-dalek = { version = "3", features = ["serde"] }

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Serde break for Authorization RPC

High Severity

Bumping ed25519-dalek to 3 with serde switches VerifyingKey and Signature JSON encoding to serdect hex strings. Authorization is passed as a JSON-RPC argument to flashblocks_forkchoiceUpdatedV3, so clients still on dalek 2 (for example rollup-boost) that emit the old byte-array form will fail to deserialize, breaking flashblocks authorization delivery.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 2eb6ea7. Configure here.

sha2 = "0.10.9"
kzg-rs = { version = "0.2.8", features = ["rkyv", "serde"] }
c-kzg = { version = "2.0.0", default-features = false }
Expand Down
Loading