Skip to content

Commit

Permalink
feat(contract-verifier): Add zksolc v1.5.0 (#2201)
Browse files Browse the repository at this point in the history
## What ❔

Add zksolc v1.5.0

## Why ❔

<!-- Why are these changes done? What goal do they contribute to? What
are the principles behind them? -->
<!-- Example: PR templates ensure PR reviewers, observers, and future
iterators are in context about the evolution of repos. -->

## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [ ] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
- [ ] Code has been formatted via `zk fmt` and `zk lint`.
- [ ] Spellcheck has been run via `zk spellcheck`.
  • Loading branch information
perekopskiy authored Jun 11, 2024
1 parent 6d6b57e commit 8c71733
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/contract-verifier/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ RUN mkdir -p /etc/zksolc-bin/vm-1.5.0-a167aa3 && \
wget https://github.com/matter-labs/era-compiler-solidity/releases/download/prerelease-a167aa3-code4rena/zksolc-linux-amd64-musl-v1.5.0 -O /etc/zksolc-bin/vm-1.5.0-a167aa3/zksolc && \
chmod +x /etc/zksolc-bin/vm-1.5.0-a167aa3/zksolc

# install zksolc 1.5.x
RUN for VERSION in $(seq -f "v1.5.%g" 0 0); do \
mkdir -p /etc/zksolc-bin/$VERSION && \
wget https://github.com/matter-labs/zksolc-bin/raw/main/linux-amd64/zksolc-linux-amd64-musl-$VERSION -O /etc/zksolc-bin/$VERSION/zksolc && \
chmod +x /etc/zksolc-bin/$VERSION/zksolc; \
done

# install zkvyper 1.3.x
RUN for VERSION in $(seq -f "v1.3.%g" 9 17); do \
mkdir -p /etc/zkvyper-bin/$VERSION && \
Expand Down

0 comments on commit 8c71733

Please sign in to comment.