Skip to content
Merged
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
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ actual_slot = finalized_slot + 1 + relative_index
- Post-quantum signature scheme
- 52-byte public keys, 3112-byte signatures
- Epoch-based to prevent reuse
- Aggregation via leanVM for efficiency
- Aggregation via leanVM (previously leanMultisig) for efficiency

**Signature Aggregation (Two-Phase):**
1. **Gossip signatures**: Fresh XMSS from network → aggregate via leanVM
Expand Down
40 changes: 20 additions & 20 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions crates/common/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ version.workspace = true
[dependencies]
ethlambda-types.workspace = true

lean-multisig = { git = "https://github.com/leanEthereum/leanMultisig.git", rev = "5eba3b1" }
# lean-multisig is the XMSS signature aggregation crate from leanVM (the repo was
# previously named leanMultisig). The crate package keeps the lean-multisig name.
lean-multisig = { git = "https://github.com/leanEthereum/leanVM.git", rev = "5eba3b1" }
# leansig_wrapper provides XmssPublicKey/XmssSignature types used by lean-multisig's public API
leansig_wrapper = { git = "https://github.com/leanEthereum/leanMultisig.git", rev = "5eba3b1" }
leansig_wrapper = { git = "https://github.com/leanEthereum/leanVM.git", rev = "5eba3b1" }

leansig.workspace = true
thiserror.workspace = true
Expand Down