From d17e28a3df57c2fd375bd99f39e8a0d23f9355dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Wed, 11 Feb 2026 16:50:07 -0300 Subject: [PATCH 1/2] docs: update readme with dependencies --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0fa249d..0203762 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,14 @@ Minimalist, fast and modular implementation of the Lean Ethereum client written ## Getting started +### Prerequisites + +- [Rust](https://rust-lang.org/tools/install) +- [Git](https://git-scm.com/install) +- [Docker](https://www.docker.com/get-started) + +### Building and testing + We use `cargo` as our build system, but prefer `make` as a convenient wrapper for common tasks. These are some common targets: ```sh @@ -19,7 +27,7 @@ make docker-build DOCKER_TAG=local Run `make help` or take a look at our [`Makefile`](./Makefile) for other useful commands. -## Running in a devnet +### Running in a devnet To run a local devnet with multiple clients using [lean-quickstart](https://github.com/blockblaz/lean-quickstart): From 4c412cc31030859d81bbc5e291af8794f6eca8bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Wed, 11 Feb 2026 17:32:35 -0300 Subject: [PATCH 2/2] docs: add yq to prerequisites --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0203762..cfce2f9 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ Minimalist, fast and modular implementation of the Lean Ethereum client written - [Rust](https://rust-lang.org/tools/install) - [Git](https://git-scm.com/install) - [Docker](https://www.docker.com/get-started) +- [yq](https://github.com/mikefarah/yq#install) ### Building and testing