Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.

Commit 427bf00

Browse files
committed
Merge branch 'fix-repo' into recovered-history
* fix-repo: move things around to maintain compatibility with previous commits upload Initial commit
2 parents 8099ab0 + 7d3344b commit 427bf00

File tree

541 files changed

+76588
-115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

541 files changed

+76588
-115
lines changed

.gitignore

Lines changed: 10 additions & 111 deletions
Original file line numberDiff line numberDiff line change
@@ -1,115 +1,14 @@
1-
# Editor directories and files
2-
.idea
3-
*.suo
4-
*.ntvs*
5-
*.njsproj
6-
*.sln
7-
.vscode
8-
.DS_Store
9-
*.bak
10-
node_modules
11-
*.log
12-
target
13-
a.out
14-
.gitconfig
15-
cobertura.xml
16-
tags
17-
*.orig
18-
.direnv
19-
20-
# Yarn files
21-
.yarn/
22-
.yarnrc.yml
23-
.yarnrc
24-
25-
zksync_pk.key
26-
dist
27-
todo
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug/
4+
target/
285

6+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
298
Cargo.lock
30-
!/Cargo.lock
31-
!/infrastructure/zksync-crypto/Cargo.lock
32-
!/prover/Cargo.lock
33-
!/zk_toolbox/Cargo.lock
34-
35-
/etc/env/target/*
36-
/etc/env/.current
37-
/etc/env/configs/*
38-
!/etc/env/configs/dev.toml
39-
!/etc/env/configs/dev_validium.toml
40-
!/etc/env/configs/dev_validium_docker.toml
41-
!/etc/env/configs/ext-node.toml
42-
!/etc/env/configs/ext-node-validium.toml
43-
!/etc/env/configs/ext-node-docker.toml
44-
!/etc/env/configs/ext-node-validium-docker.toml
45-
!/etc/env/configs/stage.toml
46-
!/etc/env/configs/stage-proofs.toml
47-
!/etc/env/configs/testnet.toml
48-
!/etc/env/configs/mainnet.toml
49-
/etc/env/l1-inits
50-
!/etc/env/l1-inits/stage.env
51-
!/etc/env/l1-inits/stage_proofs.env
52-
!/etc/env/l1-inits/testnet.env
53-
!/etc/env/l1-inits/mainnet.env
54-
/etc/env/l2-inits
55-
!/etc/env/l2-inits/stage.init.env
56-
!/etc/env/l2-inits/stage_proofs.init.env
57-
!/etc/env/l2-inits/testnet.init.env
58-
!/etc/env/l2-inits/mainnet.init.env
59-
!/etc/env/base
60-
!/etc/env/file_based
61-
!/etc/env/dev.toml
62-
!/etc/env/dev_validium.toml
63-
!/etc/env/dev_validium_docker.toml
64-
!/etc/env/docker.toml
65-
!/etc/env/ext-node.toml
66-
!/etc/env/ext-node-docker.toml
67-
!/etc/env/ext-node-validium.toml
68-
!/etc/env/*.yaml
69-
!/etc/env/ext-node-validium-docker.toml
70-
/etc/tokens/localhost.json
71-
/etc/zksolc-bin/*
72-
/etc/zkvyper-bin/*
73-
/etc/solc-bin/*
74-
/etc/vyper-bin/*
75-
!/keys
76-
/keys/*
77-
!/keys/packed
78-
/tmp
79-
/volumes
80-
/logs
81-
/loadtest-config
82-
/sdk/binaryen
83-
84-
.ipynb_checkpoints
85-
86-
loadtest_accounts_*
87-
88-
go_to_env.sh
89-
server_logs.txt
90-
91-
core/lib/storage/.env
92-
93-
.zcli-config.json
94-
95-
db/
96-
en_db/
97-
db-ssd/
98-
backups/
99-
artifacts/
100-
artifacts-zk/
101-
cache-zk/
102-
zksolc
103-
verified_sources
104-
105-
# Hyperchain related
106-
hyperchain-*.yml
107-
/etc/hyperchains/prover-keys
108-
/etc/hyperchains/artifacts
1099

110-
# Prover keys that should not be commited
111-
prover/vk_setup_data_generator_server_fri/data/setup_*
10+
# These are backup files generated by rustfmt
11+
**/*.rs.bk
11212

113-
# Zk Toolbox
114-
chains/era/configs/*
115-
configs/*
13+
# MSVC Windows builds of rustc generate these, which store debugging information
14+
*.pdb

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Mintlayer
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

bin/ci_localnet_up

100755100644
File mode changed.

bin/ci_run

100755100644
File mode changed.

bin/pre_download_compilers.sh

100755100644
File mode changed.

bin/run_loadtest_from_github_actions

100755100644
File mode changed.

bin/run_retried

100755100644
File mode changed.

bin/zk

100755100644
File mode changed.

bin/zkt

100755100644
File mode changed.

contracts

Submodule contracts deleted from f4ae6a1

0 commit comments

Comments
 (0)