zkSync io Live on Mainnet!.
zkSync is a scaling and privacy engine for Ethereum. Its current functionality scope includes low gas transfers of ETH and ERC20 tokens in the Ethereum network. This document is a description of the JS library that can be used to interact with zkSync.
zkSync is built on ZK Rollup architecture. ZK Rollup is an L2 scaling solution in which all funds are held by a smart contract on the mainchain, while computation and storage are performed off-chain. For every Rollup block, a state transition zero-knowledge proof (SNARK) is generated and verified by the mainchain contract. This SNARK includes the proof of the validity of every single transaction in the Rollup block. Additionally, the public data update for every block is published over the mainchain network in the cheap calldata.
This architecture provides the following guarantees:
- The Rollup validator(s) can never corrupt the state or steal funds (unlike Sidechains).
- Users can always retrieve the funds from the Rollup even if validator(s) stop cooperating because the data is available (unlike Plasma).
- Thanks to validity proofs, neither users nor a single other trusted party needs to be online to monitor Rollup blocks in order to prevent fraud.
In other words, ZK Rollup strictly inherits the security guarantees of the underlying L1.
To learn how to use zkSync, please refer to the zkSync SDK documentation.
Prepare dev environment prerequisites: see docs/setup-dev.md
Setup:
zksync initDuring the first initialization you have to download around 8 GB of setup files, this should be done once.
If you have a problem on this step of the initialization, see help for the zksync plonk-setup command.
To completely reset the dev environment:
- Stop services:
zksync dev-down
- Repeat the setup procedure above
zksync redeployEnv config files are held in etc/env/
List configurations:
zksync envSwitch between configurations:
zksync env <ENV_NAME>Run server:
zksync serverServer is configured using env files in ./etc/env directory.
After the first initialization, file ./etc/env/dev.env will be created. By default, this file is copied from the ./etc/env/dev.env.example template.
Server can produce block of different sizes, the list of available sizes is determined by the SUPPORTED_BLOCK_CHUNKS_SIZES environment variable.
Block sizes which will actually be produced by the server can be configured using the BLOCK_CHUNK_SIZES environment variable.
Note: for proof generation for large blocks requires a lot of resources and an average user machine is only capable of creating proofs for the smallest block sizes.
After that you may need to invalidate cargo cache by touching the files of models:
touch core/models/**/*.rsThis is required, because models take the environment variable value at the compile time, and
we have to recompile this module to set correct values.
If you use additional caching systems (like sccache), you may have to remove their cache as well.
Run prover:
zksync proverRun client
zksync clientClient UI will be available at http://localhost:8080.
Make sure you have environment variables set right, you can check it by running:
zksync env. You should see * dev in output.
zksync dockerhub-pushzksync uses pre-commit git hooks for basic code integrity checks. Hooks are set up automatically
within the workspace initialization process. These hooks will not allow to commit the code which does
not pass several checks.
Currently the following criteria are checked:
- Code should always be formatted via
cargo fmt. - Dummy Prover should not be staged for commit (see below for the explanation).
-
cd core/storage - Add diesel migration
- Rename
core/storage/schema.rs.generatedtoschema.rs - Run tests:
zksync db-tests
-
Running all the
rusttests:f cargo test -
Running the database tests:
zksync db-tests
-
Running the integration test:
zksync server # Has to be run in the 1st terminal zksync prover # Has to be run in the 2nd terminal zksync integration-simple # Has to be run in the 3rd terminal
-
Running the full integration tests (similar to
integration-simple, but performs different full exits)zksync server # Has to be run in the 1st terminal zksync prover # Has to be run in the 2nd terminal zksync integration-full-exit # Has to be run in the 3rd terminal
-
Running the circuit tests:
zksync circuit-tests
-
Running the prover tests:
zksync prover-tests
-
Running the benchmarks:
f cargo bench
-
Running the loadtest:
zksync server # Has to be run in the 1st terminal zksync prover # Has to be run in the 2nd terminal zksync loadtest # Has to be run in the 3rd terminal
Using the real prover for the development can be not really handy, since it's pretty slow and resource consuming.
Instead, one may want to use the Dummy Prover: lightweight version of prover, which does not actually proves anything, but acts like it does.
To enable the dummy prover, run:
zksync dummy-prover enableAnd after that you will be able to use the dummy prover instead of actual prover:
zksync dummy-prover # Instead of `zksync prover`Warning: setup-dummy-prover subcommand changes the Verifier.sol contract, which is a part of git repository.
Be sure not to commit these changes when using the dummy prover!
If one will need to switch back to the real prover, a following command is required:
zksync dummy-prover disableThis command will revert changes in the contract and redeploy it, so the actual prover will be usable again.
Also you can always check the current status of the dummy verifier:
$ zksync dummy-prover status
Dummy Verifier status: disabled- To generate proofs one must have the universal setup files (which are downloaded during the first initialization).
- To verify generated proofs one must have verification keys. Verification keys are generated for specific circuit & Verifier.sol contract; without these keys it is impossible to verify proofs on the Ethereum network.
Steps to do after updating circuit:
- Update circuit version by updating
KEY_DIRin your env file (don't forget to place it todev.env.example) (last parts of this variable usually means last commit where you updated circuit). - Regenerate verification keys and Verifier contract using
zksync verify-keys gencommand. - Pack generated verification keys using
zksync verify-keys packcommand and commit resulting file to repo.
zksync build-contractszksync publish-sourcezkSync is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE, LICENSE-MIT for details.