Skip to content

Commit

Permalink
feat(contract-verifier): Add zkvyper 1.3.13 (#552)
Browse files Browse the repository at this point in the history
## What ❔

Adds zkvyper 1.3.13 to contract verifier

## Why ❔

People need it! 

## 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`.
  • Loading branch information
popzxc authored Nov 28, 2023
1 parent 9cada1a commit 198deda
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-core-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ jobs:
mv vyper0.3.3 $(pwd)/etc/vyper-bin/0.3.3/vyper
chmod +x $(pwd)/etc/vyper-bin/0.3.3/vyper
mkdir -p $(pwd)/etc/zkvyper-bin/v1.3.11
wget https://github.com/matter-labs/zkvyper-bin/raw/main/linux-amd64/zkvyper-linux-amd64-musl-v1.3.11
mv zkvyper-linux-amd64-musl-v1.3.11 $(pwd)/etc/zkvyper-bin/v1.3.11/zkvyper
chmod +x $(pwd)/etc/zkvyper-bin/v1.3.11/zkvyper
mkdir -p $(pwd)/etc/zkvyper-bin/v1.3.13
wget https://github.com/matter-labs/zkvyper-bin/raw/main/linux-amd64/zkvyper-linux-amd64-musl-v1.3.13
mv zkvyper-linux-amd64-musl-v1.3.13 $(pwd)/etc/zkvyper-bin/v1.3.13/zkvyper
chmod +x $(pwd)/etc/zkvyper-bin/v1.3.13/zkvyper
- name: Start services
run: |
Expand Down
2 changes: 1 addition & 1 deletion core/tests/ts-integration/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default {
}
},
zkvyper: {
version: '1.3.11',
version: '1.3.13',
compilerSource: 'binary'
},
networks: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const DATE_REGEX = /\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{6})?/;
const ZKSOLC_VERSION = 'v1.3.16';
const SOLC_VERSION = '0.8.21';

const ZKVYPER_VERSION = 'v1.3.11';
const ZKVYPER_VERSION = 'v1.3.13';
const VYPER_VERSION = '0.3.3';

type HttpMethod = 'POST' | 'GET';
Expand Down
2 changes: 1 addition & 1 deletion docker/contract-verifier/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN skip_versions="v1.3.12 v1.3.15" && \
done

# install zkvyper 1.3.x
RUN for VERSION in $(seq -f "v1.3.%g" 9 11); do \
RUN for VERSION in $(seq -f "v1.3.%g" 9 13); do \
mkdir -p /etc/zkvyper-bin/$VERSION && \
wget https://github.com/matter-labs/zkvyper-bin/raw/main/linux-amd64/zkvyper-linux-amd64-musl-$VERSION -O /etc/zkvyper-bin/$VERSION/zkvyper && \
chmod +x /etc/zkvyper-bin/$VERSION/zkvyper; \
Expand Down

0 comments on commit 198deda

Please sign in to comment.