From a5a1906644f00706a92d9f63831a3d0a6e142154 Mon Sep 17 00:00:00 2001 From: Danil Date: Mon, 16 Sep 2024 15:18:42 +0200 Subject: [PATCH] Fix versions Signed-off-by: Danil --- .github/workflows/ci-core-reusable.yml | 2 +- core/tests/ts-integration/hardhat.config.ts | 6 +++--- core/tests/ts-integration/scripts/compile-yul.ts | 2 +- .../ts-integration/tests/api/contract-verification.test.ts | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-core-reusable.yml b/.github/workflows/ci-core-reusable.yml index aaa442c06d5f..9dafbbf0109b 100644 --- a/.github/workflows/ci-core-reusable.yml +++ b/.github/workflows/ci-core-reusable.yml @@ -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 diff --git a/core/tests/ts-integration/hardhat.config.ts b/core/tests/ts-integration/hardhat.config.ts index 00abe2b32efb..bfaab95de716 100644 --- a/core/tests/ts-integration/hardhat.config.ts +++ b/core/tests/ts-integration/hardhat.config.ts @@ -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: { @@ -20,7 +20,7 @@ export default { } }, solidity: { - version: '0.8.23' + version: '0.8.27' }, vyper: { version: '0.3.10' diff --git a/core/tests/ts-integration/scripts/compile-yul.ts b/core/tests/ts-integration/scripts/compile-yul.ts index dda65456a6c6..89238e034f5c 100644 --- a/core/tests/ts-integration/scripts/compile-yul.ts +++ b/core/tests/ts-integration/scripts/compile-yul.ts @@ -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 { diff --git a/core/tests/ts-integration/tests/api/contract-verification.test.ts b/core/tests/ts-integration/tests/api/contract-verification.test.ts index df89dc2a7171..84076c5212e0 100644 --- a/core/tests/ts-integration/tests/api/contract-verification.test.ts +++ b/core/tests/ts-integration/tests/api/contract-verification.test.ts @@ -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';