-
Notifications
You must be signed in to change notification settings - Fork 1
feat(l2): support Pico backend #54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds support for the Pico backend as a new ZK-VM option for the L2 system, following the integration work done in the ethrex repository (PR #5440).
Key changes:
- Adds Pico as a supported backend alongside SP1, Risc0, ZisK, and OpenVM
- Updates all ethrex dependencies to use the "pico" branch instead of "main"
- Introduces new Pico-specific dependencies and Plonky3 libraries from brevis-network fork
- Adds CI/CD workflow support for building and testing with the Pico feature
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
src/cli.rs |
Adds Pico backend case to the ZKVM match statement and updates the error message to include Pico |
Cargo.toml |
Changes all ethrex dependency branches from "main" to "pico" and adds the pico feature flag |
Cargo.lock |
Updates dependency lock file with new Pico-related packages (pico-sdk, pico-vm, pico-derive, etc.) and Plonky3 libraries from brevis-network fork |
.github/workflows/pr-main.yaml |
Adds "pico" and "l2,pico" to the feature matrix and adds conditional logic to use nightly Rust for Pico builds |
.github/actions/install-pico/action.yml |
Defines a new composite action to install the Pico toolchain and CLI |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Support was added to ethrex in lambdaclass/ethrex#5440