This repository hosts a Linea tracing implementation for Besu based on an implementation in Go.
Tracing refers to the process of extracting data from the execution of an EVM client in order to construct large matrices known as execution traces. Execution traces are subject to the constraint system specified in the linea-specification repo and implemented in the linea-constraints repo.
It serves developers by making the Linea tech stack open source under the Apache 2.0 license.
Linea is a developer-ready layer 2 network scaling Ethereum. It's secured with a zero-knowledge rollup, built on lattice-based cryptography, and powered by Consensys.
If you already have an understanding of the tech stack, use our Get Started guide.
Discover existing plugins and understand the plugin release process.
Linea's stack is made up of multiple repositories, these include:
This repository contains the elements of the Linea stack responsible for this process.
Linea abstracts away the complexity of this technical architecture to allow developers to:
... and more.
Contributions of any kind are welcome!
If the proposed update is non-trivial, also tag us for discussion.
Include the issue number in the pull request description and (optionally) in the branch name.
Consider starting with a "good first issue".
Before contributing, ensure you're familiar with:
To update the reference tests, run the following commands:
cd reference-tests/src/test/resources/ethereum-tests
git fetch
git checkout <branch or commit>
# update LegacyTests submodule of new commit
git submodule update --init --recursive
# go back to project root
cd ../../../../..
git add reference-tests/src/test/resources/ethereum-tests/
git commit -m "<commit message>"