Skip to content

feat: add devnet 5 support#378

Draft
MegaRedHand wants to merge 2 commits into
mainfrom
devnet5
Draft

feat: add devnet 5 support#378
MegaRedHand wants to merge 2 commits into
mainfrom
devnet5

Conversation

@MegaRedHand
Copy link
Copy Markdown
Collaborator

🗒️ Description / Motivation

  • What does this PR change?
  • Why is this change needed?
  • What problem does it solve?

What Changed

  • List the files or areas touched
  • Brief summary of each change

Correctness / Behavior Guarantees

  • What invariants are preserved or updated?
  • Are there any behavior changes reviewers should know about?

Tests Added / Run

  • What tests were added or updated?
  • What commands did you run to verify this change?

Related Issues / PRs

  • Closes #
  • Related to #

✅ Verification Checklist

  • Ran make fmt — clean
  • Ran make lint (clippy with -D warnings) — clean
  • Ran cargo test --workspace --release — all passing

pablodeymo and others added 2 commits May 12, 2026 16:25
…361)

## 🗒️ Description / Motivation

Ports the typed two-level multi-signature envelope introduced by
contributor commit

[`anshalshukla/leanSpec@0ab09dd`](anshalshukla/leanSpec@0ab09dd)
("dummy type 1 and type 2 aggregation with block proofs") to ethlambda:

- `TypeOneMultiSignature` — single-message N-signer proof; replaces
`AggregatedSignatureProof` on the `SignedAggregatedAttestation` gossip
wire.
- `TypeTwoMultiSignature` — merged multi-message proof binding every
per-attestation Type-1 plus a singleton proposer Type-1 over the block
root.
- `SignedBlock.signature: BlockSignatures` → `SignedBlock.proof:
ByteListMiB` carrying the SSZ-encoded merged Type-2.

The upstream commit is WIP (verify functions are explicit stubs, not yet
in canonical `leanethereum/leanSpec`). ethlambda leads the wire-shape
migration so the type plumbing is in place when canonical absorbs the
refactor and real `lean_multisig` bindings land. **Opening as draft
until canonical catches up.**

## What Changed

Landed as three commits, one per phase. Each phase compiled and passed
`make test` independently.

### Phase 1 — `f2d0fb5` — additive type plumbing
- `crates/common/types/src/block.rs` — added `TypeOneInfo`,
`TypeOneMultiSignature`, `TypeOneInfos` (SSZ-list limit
`MAX_ATTESTATIONS_DATA + 1`), `TypeTwoMultiSignature`, and
`BytecodeClaim` (typed alias for `H256`, placeholder until
`lean_multisig` defines the trusted evaluation).
- SSZ round-trip + capacity unit tests.
- Pure additive: no consumers yet.

### Phase 2 — `18a60b5` — gossip-layer pipeline
- `crates/common/types/src/attestation.rs` —
`SignedAggregatedAttestation.proof` → `TypeOneMultiSignature`.
- `crates/blockchain/src/aggregation.rs` —
`AggregatedGroupOutput.proof`, `aggregate_job`, `resolve_child_pubkeys`,
`select_proofs_greedily` all carry/read Type-1.
- `crates/storage/src/store.rs` — `PayloadEntry.proofs:
Vec<TypeOneMultiSignature>`; subsumption logic reads
`info.participants`.
- Block-builder helpers (`compact_attestations`,
`extend_proofs_greedily`, `build_block`) operate on Type-1 throughout.
- Temporary `to_legacy` / `from_legacy` boundary at block assembly +
block-body ingestion so `SignedBlock` wire stayed legacy through Phase
2.

### Phase 3 — `fc9ce1f` — block wire + storage
- `SignedBlock.signature: BlockSignatures` → `SignedBlock.proof:
ByteListMiB`. Legacy `BlockSignatures` / `AttestationSignatures` /
`AggregatedSignatureProof` removed.
- `crates/blockchain/src/lib.rs::propose_block` wraps the proposer XMSS
as a singleton Type-1, calls `aggregate_type_2`, SSZ-encodes the merged
proof, and stashes it on `SignedBlock.proof`.
- `crates/blockchain/src/store.rs::verify_signatures` rewritten as a
structural-only check (mirrors upstream `verify_type_2` stub): decode
the merged proof, assert `info.len() == attestations.len() + 1`,
validate per-attestation `(message, slot, participants)` alignment and
the trailing proposer entry; no per-Type-1 crypto.
- `crates/storage/src/store.rs::write_signed_block` / `get_signed_block`
now store `ByteListMiB` blobs in the existing `BlockSignatures` column
family (renaming deferred to avoid a CF migration).
- `aggregate_type_2` is a no-crypto stub today: it preserves the full
`TypeOneInfos` metadata list but leaves `proof: ByteListMiB::default()`.
Real merging arrives when `lean_multisig` exposes a merged-proof
primitive — the existing `aggregate_proofs` only handles single-message
merging.
- Test fixtures regenerated from canonical leanSpec (`make
leanSpec/fixtures`). The regen also cleared three pre-existing
forkchoice spec failures on `main` (`AttestationTooFarInFuture` ×2,
`AggregateVerificationFailed(InvalidProof)` on
`test_valid_gossip_aggregated_attestation`) — they were stale-fixture
artifacts.

## Correctness / Behavior Guarantees

**Verified at gossip:** `on_gossip_aggregated_attestation` continues to
run real `ethlambda_crypto::verify_aggregated_signature` on every
`SignedAggregatedAttestation`. Invalid aggregates are rejected at the
gossip boundary just like before.

**Block-level becomes structural:** Block-level verification no longer
crypto-verifies the merged proof. The merged proof bytes can't be split
client-side (the type-2 merging primitive doesn't exist in
`lean-multisig` yet — the existing `aggregate_proofs` is single-message
only). `verify_signatures` enforces:
- `info.len() == attestations.len() + 1`,
- each `info[i]` matches the corresponding `block.body.attestations[i]`
on `participants`, `slot`, and `message`,
- the trailing `info[N]` has `message == block_root`, `slot ==
block.slot`, single-bit `participants` set to `block.proposer_index`,
- all participant indices fit within the validator registry.

This is the conscious "mirror upstream stubs" trade-off agreed during
planning. When `lean_multisig` ships a real `verify_type_2`, the
structural stub is swapped for the real call.

**Block-body ingestion preserves fork-choice LMD GHOST inputs:** since
the merged proof can't be split, `process_new_block` inserts info-only
Type-1 entries (real `(message, slot, participants)`, empty proof bytes)
into the payload buffer. `extract_latest_known_attestations` works
unchanged. Empty-bytes entries never get fed back into
`aggregate_proofs` (that path is only hit when multiple proofs share the
same `AttestationData`, in which case at least one came from gossip with
real bytes).

**Storage:** Table name kept (`BlockSignatures`) to avoid a RocksDB CF
migration; doc comment updated. Renaming to `Table::BlockProof` is a
follow-up.

**Skipped tests, all behind `TODO(type1-type2)`:**
- `ssz_spectests.rs`: `SignedBlock`, `BlockSignatures`,
`AggregatedSignatureProof`, `SignedAggregatedAttestation` — on-disk SSZ
bytes still use the legacy schema since canonical leanSpec hasn't
absorbed the refactor.
- `signature_spectests.rs`: `test_invalid_proposer_signature` — relies
on block-level proposer-signature crypto, which is now a structural
stub.

Attempted to bump `LEAN_SPEC_COMMIT_HASH` to
`anshalshukla/leanSpec@0ab09dd` to regenerate fixtures against the new
schema. Reverted: the upstream testing harness in that commit
(`leanSpec/packages/testing/src/consensus_testing/keys.py`) still
imports `AttestationSignatures`, which the same commit removes — `fill`
crashes on module load. Documented in a `NOTE(type1-type2)` in the
Makefile.

## Tests Added / Run

- Added: SSZ round-trip and capacity unit tests for the new
Type-1/Type-2 containers in `crates/common/types/src/block.rs`.
- Updated: `verify_signatures_rejects_participants_mismatch`,
`build_block_caps_attestation_data_entries`,
`on_block_rejects_duplicate_attestation_data`, the
`compact_attestations` and `extend_proofs_greedily` tests, all
`forkchoice_spectests.rs` step builders, `signature_types.rs` fixture
converter, and the `rpc::test_get_latest_finalized_block` test — all
rebuilt to construct the new merged-proof shape.
- Verified locally:
  - `make fmt` — clean
  - `cargo clippy --workspace --all-targets -- -D warnings` — clean
- `cargo test --workspace --release` — green (84 forkchoice spec tests,
7 signature spec tests with 1 expected skip, all unit tests pass)

## Related Issues / PRs

- Upstream commit being ported:
[`anshalshukla/leanSpec@0ab09dd`](anshalshukla/leanSpec@0ab09dd)
- Follow-ups when canonical absorbs the refactor:
- Swap the structural `verify_type_2` stub for the real `lean_multisig`
primitive.
- Revert `LEAN_SPEC_COMMIT_HASH` skip markers in `ssz_spectests.rs` and
`signature_spectests.rs`.
  - Consider renaming `Table::BlockSignatures` → `Table::BlockProof`.

## ✅ Verification Checklist

- [x] Ran `make fmt` — clean
- [x] Ran `make lint` (clippy with `-D warnings`) — clean
- [x] Ran `cargo test --workspace --release` — all passing

---------

Co-authored-by: Tomás Grüner <47506558+MegaRedHand@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants