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
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,25 +118,24 @@ Docker images are published to `ghcr.io/lambdaclass/ethlambda` with the followin

[`RELEASE.md`](./RELEASE.md) has more details on our release process and how to tag new images.

### pq-devnet-4
### pq-devnet-5

We are running the `pq-devnet-4` spec. A Docker tag `devnet4` is available for this version.
We are running the `pq-devnet-5` spec. A Docker tag `devnet5` is available for this version.

### pq-devnet-5
### pq-devnet-6

[We are working on adding support for the `pq-devnet-5` spec](https://github.com/lambdaclass/ethlambda/issues/285). A Docker tag `devnet5` will be published for this version.
`pq-devnet-6` is in a planning phase; no features have been specified yet. Likely candidates are replacing [LMD-GHOST](docs/lmd_ghost.md) and [3SF-mini](docs/3sf_mini.md), or [execution layer integration](https://github.com/lambdaclass/ethlambda/pull/367).

### Older devnets

Docker tags for each devnet are released, with format `devnetX` (i.e. `devnet1`, `devnet2`, `devnet3`).
Docker tags for each devnet are released, with format `devnetX` (i.e. `devnet1`, `devnet2`, `devnet3`, `devnet4`).

Support for older devnet releases is discontinued when the next devnet version is released.

## Incoming features

Some features we are looking to implement in the near future, in order of priority:

- [Add support for pq-devnet-5](https://github.com/lambdaclass/ethlambda/issues/285)
- [RPC endpoints for chain data consumption](https://github.com/lambdaclass/ethlambda/issues/75)
- [Add guest program and ZK proving of the STF](https://github.com/lambdaclass/ethlambda/issues/156)

Expand Down
2 changes: 1 addition & 1 deletion bin/ethlambda/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ mod tests {
use super::*;

/// Validator-config snippet matching `lean-quickstart`'s ansible-devnet
/// (devnet-4) where networks share a non-default committee count.
/// where networks share a non-default committee count.
const VC_WITH_COMMITTEE_COUNT: &str = r#"
shuffle: roundrobin
deployment_mode: ansible
Expand Down
2 changes: 0 additions & 2 deletions crates/common/crypto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ use leansig_wrapper::{XmssPublicKey as LeanSigPubKey, XmssSignature as LeanSigSi
use thiserror::Error;

/// log(1/rate) for the WHIR commitment scheme used inside lean-multisig.
/// 2 matches the devnet-4 cross-client convention (zeam, ream, grandine, lantern
/// all use 2); the leanVM devnet5 examples also use 2 for recursion.
const LOG_INV_RATE: usize = 2;

// Lazy initialization for prover and verifier setup
Expand Down
Loading