5 releases (1 unstable)
new 28.1.0-non-semver-compat | May 8, 2025 |
---|---|
28.0.0-non-semver-compat | May 5, 2025 |
26.7.0-non-semver-compat | Mar 6, 2025 |
26.2.1-non-semver-compat | Jan 29, 2025 |
0.1.0 | Jul 15, 2024 |
#571 in Magic Beans
103 downloads per month
Used in zksync_default_da_clients
6MB
132K
SLoC
ZKsync Era: A ZK Rollup For Scaling Ethereum
ZKsync Era is a layer 2 rollup that uses zero-knowledge proofs to scale Ethereum without compromising on security or decentralization. Since it's EVM compatible (Solidity/Vyper), 99% of Ethereum projects can redeploy without refactoring or re-auditing a single line of code. ZKsync Era also uses an LLVM-based compiler that will eventually let developers write smart contracts in C++, Rust and other popular languages.
Documentation
The most recent documentation can be found here:
Policies
License
ZKsync Era is distributed under the terms of either
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/blog/license/mit/)
at your option.
Official Links
Disclaimer
ZKsync Era has been through lots of testing and audits. Although it is live, it is still in alpha state and will go through more audits and bug bounty programs. We would love to hear our community's thoughts and suggestions about it! It is important to state that forking it now can potentially lead to missing important security updates, critical features, and performance improvements.
lib.rs
:
ZK Stack node initialization framework.
This crate provides core abstractions that allow one to compose a ZK Stack node. Main concepts used in this crate are:
WiringLayer
- builder interface for tasks.Task
- a unit of work that can be executed by the node.Resource
- a piece of logic that can be shared between tasks. Most resources are represented by generic interfaces and also serve as points of customization for tasks.ZkStackService
- a container for tasks and resources that takes care of initialization, running and shutting down.ZkStackServiceBuilder
- a builder for the service.
Dependencies
~189MB
~3.5M SLoC