Skip to content
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

feat: EVM Equivalence in Yul #1612

Closed
wants to merge 382 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
382 commits
Select commit Hold shift + click to select a range
5521734
refactor(dup-opcode): Add tests for dup opcode
fborello-lambda Apr 9, 2024
f508631
feat(swap-opcode): Add tests for swap opcodes
fborello-lambda Apr 10, 2024
6763c10
chore(dup-opcode): Remove println from test
fborello-lambda Apr 10, 2024
64e61f9
Add basic "print" functions
jrchatruc Apr 9, 2024
ac8c84e
Better print functionality
jrchatruc Apr 10, 2024
521d528
Add lt opcode
ManuelBilbao Apr 9, 2024
89f7da8
Add gt opcode
ManuelBilbao Apr 9, 2024
887db91
Add slt opcode
ManuelBilbao Apr 9, 2024
989f317
Move signextend tests
ManuelBilbao Apr 9, 2024
c0d620c
Add sgt opcode
ManuelBilbao Apr 9, 2024
2ba100f
Add eq opcode
ManuelBilbao Apr 9, 2024
65b2984
Add iszero opcode
ManuelBilbao Apr 9, 2024
e63b1a3
Add xor opcode
ManuelBilbao Apr 9, 2024
792279f
Add not opcode
ManuelBilbao Apr 9, 2024
a24f581
Add byte opcode
ManuelBilbao Apr 10, 2024
34b23fb
Add jump opcode
ManuelBilbao Apr 9, 2024
f8064f4
Add jumpi opcode
ManuelBilbao Apr 9, 2024
8d39633
Add caller opcode
ManuelBilbao Apr 11, 2024
abe4513
Delete .envrc
ManuelBilbao Apr 11, 2024
a3b550b
Add callvalue opcode
ManuelBilbao Apr 11, 2024
936e606
Add calldataload opcode
ManuelBilbao Apr 11, 2024
3c8d054
Add calldatasize opcode
ManuelBilbao Apr 11, 2024
21ee438
Add calldatacopy opcode
ManuelBilbao Apr 11, 2024
1057d36
Add sload op
gianbelinche Apr 10, 2024
c3bed38
Add cold/warm cases for sload and sstore
gianbelinche Apr 11, 2024
2c0f8f8
Add msize op
gianbelinche Apr 11, 2024
028ff4b
Fix sload tests
gianbelinche Apr 11, 2024
8fca32d
Add pop opcode
ManuelBilbao Apr 10, 2024
c96cf44
Add mload and mstore opcodes
ManuelBilbao Apr 10, 2024
0c9a211
Add tests to mload and mstore
ManuelBilbao Apr 10, 2024
aff18d3
Add mstore8 opcode
ManuelBilbao Apr 10, 2024
c6c2bc9
Add address opcode
ManuelBilbao Apr 10, 2024
bcdf9d8
Fix address test
ManuelBilbao Apr 10, 2024
5905470
Add pc opcode
ManuelBilbao Apr 10, 2024
ab24ed1
Add balance opcode
ManuelBilbao Apr 10, 2024
dbeba6d
Add origin opcode
ManuelBilbao Apr 10, 2024
20e9ffa
Add gas opcode
ManuelBilbao Apr 11, 2024
5659509
Fix tests
ManuelBilbao Apr 12, 2024
614c137
feat(blockenvironment-opcodes): Add basic tests
fborello-lambda Apr 11, 2024
a5fbfae
chore(blockenvironment-opcodes): remove comment
fborello-lambda Apr 11, 2024
01ae28f
Add tests for create opcode
ManuelBilbao Apr 16, 2024
11c0f57
Add more complex contract create
ManuelBilbao Apr 17, 2024
404b2eb
Add tests for create2
ManuelBilbao Apr 17, 2024
9c4653e
Update tests for create2
ManuelBilbao Apr 17, 2024
bcf4422
Test CALL opcode (#213)
fborello-lambda Apr 18, 2024
0d0c4be
Add balance gas test
gianbelinche Apr 12, 2024
cb19b06
Add balance gas tests
gianbelinche Apr 15, 2024
77d88eb
Fix balance tests gas results
gianbelinche Apr 15, 2024
660418c
feat(keccak-opcode): add tests template (WIP)
fborello-lambda Apr 11, 2024
037569d
chore(keccak-opcode): cargo fmt
fborello-lambda Apr 11, 2024
c8c05f4
fix(keccak-opcode): fix tests
fborello-lambda Apr 11, 2024
bb2f75f
Fix mstore opcode
ManuelBilbao Apr 12, 2024
4999eb5
fix(keccak-opcode): Fix test
fborello-lambda Apr 12, 2024
6c96949
feat(environment3-opcodes): add tests for OPs: CODESIZE CODECOPY GASP…
fborello-lambda Apr 11, 2024
2407af8
feat(codecopy-opcode): Add test for codecopy
fborello-lambda Apr 12, 2024
195c0ac
fix(codecopy): Fix test
fborello-lambda Apr 12, 2024
225fa78
chore(codesize-test): change comment
fborello-lambda Apr 12, 2024
7bc0374
chore(codesize-test): Change comment
fborello-lambda Apr 12, 2024
8403151
feat(log0..4-opcodes): Implement tests for log opcodes
fborello-lambda Apr 16, 2024
db264ba
fix(log0..4-opcodes): Remove imports
fborello-lambda Apr 16, 2024
f85c32e
fix(log0..4-opcodes): Check if the memory value logged is valid
fborello-lambda Apr 16, 2024
d87f3c6
fix(byte_opcodes): Fix tests
fborello-lambda Apr 15, 2024
cd2b321
Re add debug tracer
jrchatruc Apr 17, 2024
e27a8ba
Initial tests of return and revert
gianbelinche Apr 15, 2024
bae7399
Add callcode tests
gianbelinche Apr 16, 2024
45c4481
Remove debug code
gianbelinche Apr 16, 2024
841a61b
Format code
gianbelinche Apr 16, 2024
3218aed
Add invalid test
gianbelinche Apr 17, 2024
cfcca18
Remove callcode tests
gianbelinche Apr 17, 2024
a2b76a3
Change zksolc download path
gianbelinche Apr 17, 2024
dd9dce9
Add preprocessor for evm interpreter
gianbelinche Apr 18, 2024
d51fdd4
Fix contract we run
jrchatruc Apr 18, 2024
44ab523
Fix recompile_interpreter.sh
ManuelBilbao Apr 18, 2024
7e82e4c
Format
ManuelBilbao Apr 18, 2024
1e7f513
fix(call tests): Fix call with create tests
fborello-lambda Apr 19, 2024
6717987
feat(env4-opcodes): Add tests for env4 opcodes
fborello-lambda Apr 22, 2024
dfe87ab
fix(op-extcodesize): Fix tests
fborello-lambda Apr 22, 2024
1182408
test(op-returndatacopy): fix tests
fborello-lambda Apr 24, 2024
8d6396a
Implement before_execution on CallTracer so we get prints on integrat…
jrchatruc Apr 22, 2024
47ae04e
Add reload_interpreter script to get print changes faster
jrchatruc Apr 22, 2024
34bb290
Add environment variable for running with yul/solidity
gianbelinche Apr 25, 2024
078a88f
Format code
gianbelinche Apr 25, 2024
3cfa509
Add benchmark writing to csv file
gianbelinche Apr 25, 2024
32e2618
Format code
gianbelinche Apr 25, 2024
ecc7c99
Add pyhton script for comparing benchmarks
gianbelinche Apr 25, 2024
35da47f
Fix date calculation
gianbelinche Apr 25, 2024
1d0e313
test(op-extcodehash): Add tests
fborello-lambda Apr 24, 2024
ed874d4
refactor(op-extcodehash): isolate tests, ignore for now
fborello-lambda Apr 25, 2024
1c80ba7
chore: fix typo
fborello-lambda Apr 25, 2024
02588b4
Add delegatecall opcode tests
ManuelBilbao Apr 24, 2024
32ff610
Fix tests
jrchatruc Apr 25, 2024
d5e4b30
Update script to handle zksolc 1.4.1
jrchatruc Apr 26, 2024
d2982b2
Update to be compatible with old versions as well
jrchatruc Apr 26, 2024
e5fe147
(WIP) Add CI for Yul EVM Interpreter
ManuelBilbao Apr 25, 2024
e91536d
Add evm-equivalence-yul to trigger branches
ManuelBilbao Apr 25, 2024
f011fbc
Change rust version
ManuelBilbao Apr 25, 2024
cb86c5d
Alter zksolc download link
ManuelBilbao Apr 25, 2024
1657e02
Remove rust version
ManuelBilbao Apr 25, 2024
1a14308
Remove RUSTFLAGS env var
ManuelBilbao Apr 25, 2024
e94ce29
Test env var on step
ManuelBilbao Apr 25, 2024
1076f2d
Change the way ZKSYNC_HOME is set
ManuelBilbao Apr 25, 2024
51be2b8
Add recompile EVM interpreter step
ManuelBilbao Apr 25, 2024
9c748ff
Add recompile EVM interpreter step env vars
ManuelBilbao Apr 25, 2024
abf66ba
Add zksolc download step
ManuelBilbao Apr 25, 2024
302fafe
Add execution permissions to zksolc
ManuelBilbao Apr 25, 2024
58fc7e6
Add solc installation step
ManuelBilbao Apr 25, 2024
98c6044
Pin solc version
ManuelBilbao Apr 25, 2024
f880533
Download solc binary from github
ManuelBilbao Apr 25, 2024
63dad60
Fix tests contract path
ManuelBilbao Apr 25, 2024
dbb5e96
Revert last commit
ManuelBilbao Apr 25, 2024
be0031a
Remove counter contract
ManuelBilbao Apr 25, 2024
09f9882
Readd counter contract
ManuelBilbao Apr 25, 2024
6260d41
Add new line to counter contract
ManuelBilbao Apr 25, 2024
79360ea
Add integration tests
ManuelBilbao Apr 25, 2024
ad80bdc
Fix integration tests
ManuelBilbao Apr 25, 2024
ec2fe84
Refactor integration tests
ManuelBilbao Apr 25, 2024
f5814f6
Test background
ManuelBilbao Apr 25, 2024
d6afe75
Add sqlx installation
ManuelBilbao Apr 25, 2024
24f541f
Fix sqlx
ManuelBilbao Apr 25, 2024
423bb60
Fix sqlx install
ManuelBilbao Apr 25, 2024
e891155
Fix sqlx install
ManuelBilbao Apr 25, 2024
fb942a8
Refactor integration tests
ManuelBilbao Apr 25, 2024
bc5e49f
Refactor CI
ManuelBilbao Apr 26, 2024
d798890
Add start services step
ManuelBilbao Apr 26, 2024
e306e1e
Remove sccache
ManuelBilbao Apr 26, 2024
4e55a8d
Alter ci_localnet_up
ManuelBilbao Apr 26, 2024
7ad420e
Test without docker
ManuelBilbao Apr 26, 2024
09691ae
Change zksolc version to linux
ManuelBilbao Apr 26, 2024
84da48e
Fix typo
ManuelBilbao Apr 26, 2024
289c1c5
Start services
ManuelBilbao Apr 26, 2024
b00388e
Create dirs for volumes
ManuelBilbao Apr 26, 2024
8561abd
Remove warnings errors
ManuelBilbao Apr 26, 2024
06a85d8
Move tests with server start
ManuelBilbao Apr 26, 2024
75bd0a8
Test server without background
ManuelBilbao Apr 26, 2024
5a8a6bc
Remove warnings errors
ManuelBilbao Apr 26, 2024
4bcc71d
Move server to background and add sleep
ManuelBilbao Apr 26, 2024
7aa62d0
Put all together
ManuelBilbao Apr 26, 2024
be4dae4
Re-add missing test
jrchatruc Apr 29, 2024
de93271
Add div opcode
ManuelBilbao Apr 9, 2024
d294ea8
feat(dup-opcode): Add tests
fborello-lambda Apr 9, 2024
93b8148
Better print functionality
jrchatruc Apr 10, 2024
f789120
Add eq opcode
ManuelBilbao Apr 9, 2024
72762ff
Add iszero opcode
ManuelBilbao Apr 9, 2024
4ed836d
Add xor opcode
ManuelBilbao Apr 9, 2024
aca61ff
Add caller opcode
ManuelBilbao Apr 11, 2024
3e85395
Add tests to mload and mstore
ManuelBilbao Apr 10, 2024
c299ef2
Fix address test
ManuelBilbao Apr 10, 2024
9e5e29a
Initial tests of return and revert
gianbelinche Apr 15, 2024
7e7ecfc
Remove debug code
gianbelinche Apr 16, 2024
5c612ac
Add test for call gas
gianbelinche Apr 26, 2024
9e95014
Add environment variable for running with yul/solidity
gianbelinche Apr 25, 2024
e460b02
Add tests for gas call and create
gianbelinche Apr 26, 2024
10b1b4d
Add tests for delegatecall and keccak gas
gianbelinche Apr 29, 2024
be7d869
Add tests for calldatacopy
gianbelinche Apr 29, 2024
84fc12f
Fix various tests
jrchatruc Apr 29, 2024
a529b1f
Remove envrc file
jrchatruc Apr 29, 2024
38826ba
Add div opcode
ManuelBilbao Apr 9, 2024
322ef9e
feat(dup-opcode): Add tests
fborello-lambda Apr 9, 2024
889e739
Better print functionality
jrchatruc Apr 10, 2024
8135495
Move signextend tests
ManuelBilbao Apr 9, 2024
2af752b
Add eq opcode
ManuelBilbao Apr 9, 2024
716ca5f
Add iszero opcode
ManuelBilbao Apr 9, 2024
5ba40d8
Add xor opcode
ManuelBilbao Apr 9, 2024
d7b8ddb
Fix address test
ManuelBilbao Apr 10, 2024
a38b60b
Initial tests of return and revert
gianbelinche Apr 15, 2024
af34fb2
Remove debug code
gianbelinche Apr 16, 2024
422b723
Add environment variable for running with yul/solidity
gianbelinche Apr 25, 2024
74759f8
feat(precompiles): Add test for 0x2(SHA2-256)
fborello-lambda Apr 26, 2024
aac510c
wip(pairing precompile)
fborello-lambda Apr 29, 2024
a744b54
fix: tests
fborello-lambda Apr 29, 2024
d92181d
Re-add changes
jrchatruc Apr 29, 2024
4a76360
Update submodule
jrchatruc Apr 29, 2024
a6389a6
Add benchmarks for integrations tests
gianbelinche Apr 29, 2024
5b49319
Format code
gianbelinche Apr 29, 2024
2b701a5
Update submodule
jrchatruc Apr 30, 2024
31c2cb5
Merge pull request #1815 from lambdaclass/evm-call-gas-fix
jrchatruc Apr 30, 2024
10dbdb7
Fix tests gas
gianbelinche Apr 30, 2024
5f8440b
Merge matter-labs/evm-equivalence-yul into lambdaclass/evm-yul-test-p…
fborello-lambda Apr 30, 2024
e31ad2e
Add uniswap gas test
gianbelinche Apr 30, 2024
2464f70
Add gas consumption integration tests
gianbelinche Apr 30, 2024
1d9ac4e
Merge branch 'evm-equivalence-yul' into evm-integration-tests-benchmarks
gianbelinche Apr 30, 2024
9c03af5
Update submodule
jrchatruc May 2, 2024
f32cb8c
Merge pull request #1814 from lambdaclass/evm-yul-test-precompiles
jrchatruc May 2, 2024
09319ed
Merge pull request #1837 from lambdaclass/evm-fix-codecopy-gas
jrchatruc May 2, 2024
bce5cb8
Update submodule
jrchatruc May 2, 2024
9dedca5
Fix balance breaking when passing rich accounts
jrchatruc May 2, 2024
68101eb
Remove ignore flag from extcodehash tests
ManuelBilbao May 2, 2024
97b7c3c
Revert "Remove ignore flag from extcodehash tests"
ManuelBilbao May 2, 2024
f61d009
Remove ignore flag from extcodehash tests
ManuelBilbao May 2, 2024
246e96f
Update submodule
jrchatruc May 2, 2024
6bdd61c
Add gas estimates
gianbelinche May 2, 2024
601ced0
Merge branch 'evm-equivalence-yul' into evm-integration-tests-benchmarks
gianbelinche May 2, 2024
cf8f668
Format code
gianbelinche May 2, 2024
3bafb2e
Remove benchmark
gianbelinche May 2, 2024
6c3848e
Format
gianbelinche May 2, 2024
38c0d1c
Add more opcodes to test
gianbelinche May 3, 2024
4278b3a
Skip test
gianbelinche May 3, 2024
ee98e91
Format code
gianbelinche May 3, 2024
e522700
Remove ignore flag from extcodehash tests
ManuelBilbao May 2, 2024
0642f87
Revert "Remove ignore flag from extcodehash tests"
ManuelBilbao May 2, 2024
0249ddd
Merge branch 'evm-equivalence-yul' into evm-integration-tests-benchmarks
gianbelinche May 3, 2024
06c54ee
Fix contract names
gianbelinche May 6, 2024
4095526
Add erc20 example
gianbelinche May 6, 2024
01a0c1e
Change package name
gianbelinche May 6, 2024
68c3aa5
Add zksolc 1.5.0 support to recompile interpreter
gianbelinche May 7, 2024
083e751
Add tests for multiple exp
gianbelinche May 7, 2024
e68a946
Add tests for selfbalance
gianbelinche May 7, 2024
2129f85
Update README
gianbelinche May 8, 2024
6188d23
Add environment variable for native run
gianbelinche May 8, 2024
18086a4
Merge pull request #1852 from lambdaclass/yul-extcodehash
jrchatruc May 8, 2024
1068596
Add basic scenario for eth
gianbelinche May 10, 2024
8dc6bb3
Make mint and transfer transaction
gianbelinche May 13, 2024
2ef8878
Add env for Layer 1 scenario
gianbelinche May 13, 2024
0eb2c3e
Handle eth tx with 0x (#218)
fkrause98 May 14, 2024
bdc0732
Handle eth tx with 0x (#218)
fkrause98 May 14, 2024
fd3ab43
Update submodule
jrchatruc May 16, 2024
8108803
Update submodule
jrchatruc May 16, 2024
c9fa8b8
Remove ignore flag from extcodehash tests
ManuelBilbao May 2, 2024
c546457
Revert "Remove ignore flag from extcodehash tests"
ManuelBilbao May 2, 2024
b349209
Merge branch 'evm-equivalence-yul' into evm-erc20
gianbelinche May 17, 2024
c286f18
Merge branch 'evm-equivalence-yul' into evm-integration-tests-benchmarks
jrchatruc May 22, 2024
21cb479
Merge pull request #1832 from lambdaclass/evm-integration-tests-bench…
jrchatruc May 22, 2024
19e3700
Merge branch 'evm-equivalence-yul' into evm-erc20
jrchatruc May 22, 2024
8def9dd
Merge pull request #1871 from lambdaclass/evm-erc20
jrchatruc May 22, 2024
b885817
Merge branch 'evm-equivalence-yul' into evm-fix-exp
jrchatruc May 22, 2024
4a6b5ad
Fix test
jrchatruc May 22, 2024
5764c38
Merge pull request #1874 from lambdaclass/evm-fix-exp
jrchatruc May 22, 2024
1bafd56
Update submodule
jrchatruc May 28, 2024
e0d9ccf
Add load tests
gianbelinche May 30, 2024
ab0efa7
Format code
gianbelinche May 30, 2024
fb52d81
Modify load tests for evm deploy
gianbelinche May 31, 2024
3ad3937
Make deploy evm compatible
gianbelinche Jun 3, 2024
54b19a6
Fix execution for evm
gianbelinche Jun 4, 2024
e30fcef
Deploy on different accounts
gianbelinche Jun 4, 2024
bd3c1f3
Remove prints
gianbelinche Jun 4, 2024
21b2e7f
Remove unnecessary code
gianbelinche Jun 4, 2024
12bac90
Add map err to deploy
gianbelinche Jun 4, 2024
11967c3
Fix transfers
gianbelinche Jun 4, 2024
c9e28ed
Recover original transfer inner
gianbelinche Jun 4, 2024
94fad95
Remove unnecessary changes
gianbelinche Jun 4, 2024
675303e
Remove load test from evm contract tests
gianbelinche Jun 4, 2024
21938a2
Remove formatting
gianbelinche Jun 4, 2024
6b7970d
Add env var for evm execution
gianbelinche Jun 4, 2024
fb58388
Add tests to extcodecopy
gianbelinche Jun 7, 2024
756a7f2
Update submodule
jrchatruc Jun 10, 2024
953b325
Merge pull request #2191 from lambdaclass/extcodecopy-fix
jrchatruc Jun 10, 2024
8942670
Merge branch 'evm-equivalence-yul' of github.com:lambdaclass/zksync-e…
gianbelinche Jul 3, 2024
ff4d226
Fix zksolc changes
gianbelinche Jul 3, 2024
4f7f5f2
Merge pull request #2380 from lambdaclass/yul-fix-zksolc-changes
jrchatruc Aug 1, 2024
9ce7bbf
Merge pull request #2142 from lambdaclass/load-tests
jrchatruc Aug 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 111 additions & 0 deletions .github/workflows/ci-evm-yul.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
name: CI Yul equivalent EVM

on:
pull_request:
merge_group:
push:
branches:
- staging
- trying
- main
- evm-equivalence-yul

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
tests:
runs-on: ubuntu-latest
name: Run tests
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 2
submodules: "recursive"

- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Install node
uses: actions/setup-node@v4
with:
node-version: 21.7

- name: Install yarn
run: corepack enable
# https://yarnpkg.com/corepack

- name: Install preprocessor
run: npm install -g preprocess-cli-tool

- name: Install sqlx
run: cargo install sqlx-cli@^0.5 --locked

- name: Download solc
run: |
curl -L -o bin/solc https://github.com/ethereum/solidity/releases/download/v0.8.24/solc-static-linux \
&& chmod +x bin/solc

- name: Download zksolc
run: |
curl -L -o bin/zksolc https://github.com/matter-labs/zksolc-bin/releases/download/v1.4.0/zksolc-linux-amd64-musl-v1.4.0 \
&& chmod +x bin/zksolc

- name: Setup environment
run: |
echo ZKSYNC_HOME=$(pwd) >> $GITHUB_ENV
echo $(pwd)/bin >> $GITHUB_PATH
echo IN_DOCKER=1 >> .env
echo ZKSYNC_DEBUG_LOGS=true >> .env

- name: Build system contracts
run: |
cd contracts/system-contracts \
&& yarn install \
&& yarn build

- name: Build EVM test contracts
run: |
cd etc/evm-contracts-test-data \
&& yarn install \
&& yarn build

- name: Build zkEVM test contracts
run: |
cd etc/contracts-test-data \
&& sed -i 's/zksolc-macosx-arm64/zksolc-linux-amd64-musl/' hardhat.config.ts \
&& yarn install \
&& yarn build

- name: Compile EVM interpreter
run: bash recompile_interpreter.sh

- name: Run unit tests
run: ZKSYNC_HOME=$(pwd) cargo test evm_simulator
env:
RUSTFLAGS: ""

- name: Start services
run: |
mkdir -p ./volumes/postgres ./volumes/reth/data
docker compose up -d

- name: Init
run: |
sed -i 's/zksolc-macosx-arm64/zksolc-linux-amd64-musl/' etc/contracts-test-data/hardhat.config.ts
zk
zk env dev
zk config compile dev
zk init
env:
RUSTFLAGS: ""

- name: Run integration tests
run: |
zk server --components "api,tree,eth,state_keeper,housekeeper" >/dev/null &
sleep 10
cd core/tests/ts-integration && yarn test evm-contracts-test.ts
env:
RUSTFLAGS: ""
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ cobertura.xml
tags
*.orig
.direnv
.envrc

# Yarn files
.yarn/
Expand Down Expand Up @@ -60,13 +61,16 @@ go_to_env.sh
server_logs.txt

core/lib/storage/.env
/core/lib/multivm/benchmarks/*.csv
/core/tests/ts-integration/benchmarks/*.csv

.zcli-config.json

db/
en_db/
db-ssd/
backups/
cache/
artifacts/
artifacts-zk/
cache-zk/
Expand Down
Loading