Skip to content

Commit

Permalink
Fix versions
Browse files Browse the repository at this point in the history
Signed-off-by: Danil <deniallugo@gmail.com>
  • Loading branch information
Deniallugo committed Sep 16, 2024
1 parent 3a2c14d commit a5a1906
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-core-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ jobs:
- name: Initialize Contract verifier
run: |
ci_run zk_inception contract-verifier init --zksolc-version=v1.5.3 --zkvyper-version=v1.5.3 --solc-version=0.8.27 --vyper-version=v0.4.0 --chain era
ci_run zk_inception contract-verifier init --zksolc-version=v1.5.3 --zkvyper-version=v1.5.4 --solc-version=0.8.27 --vyper-version=v0.3.10 --chain era
ci_run zk_inception contract-verifier run --chain era &> ${{ env.SERVER_LOGS_DIR }}/contract-verifier-rollup.log &
- name: Run servers
Expand Down
6 changes: 3 additions & 3 deletions core/tests/ts-integration/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import '@matterlabs/hardhat-zksync-vyper';

export default {
zksolc: {
version: '1.3.21',
version: '1.5.3',
compilerSource: 'binary',
settings: {
isSystem: true
}
},
zkvyper: {
version: '1.3.13',
version: '1.5.4',
compilerSource: 'binary'
},
networks: {
Expand All @@ -20,7 +20,7 @@ export default {
}
},
solidity: {
version: '0.8.23'
version: '0.8.27'
},
vyper: {
version: '0.3.10'
Expand Down
2 changes: 1 addition & 1 deletion core/tests/ts-integration/scripts/compile-yul.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { getZksolcUrl, saltFromUrl } from '@matterlabs/hardhat-zksync-solc';
import { getCompilersDir } from 'hardhat/internal/util/global-dir';
import path from 'path';

const COMPILER_VERSION = '1.3.21';
const COMPILER_VERSION = '1.5.3';
const IS_COMPILER_PRE_RELEASE = false;

async function compilerLocation(): Promise<string> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const ZKSOLC_VERSION = 'v1.5.3';
const SOLC_VERSION = '0.8.27';
const ZK_VM_SOLC_VERSION = 'zkVM-0.8.27-1.0.0';

const ZKVYPER_VERSION = 'v1.5.3';
const VYPER_VERSION = '0.4.0';
const ZKVYPER_VERSION = 'v1.5.4';
const VYPER_VERSION = '0.3.10';

type HttpMethod = 'POST' | 'GET';

Expand Down

0 comments on commit a5a1906

Please sign in to comment.