From a38f718a8ae566ed4c6f1da50c7e43f9586a849c Mon Sep 17 00:00:00 2001 From: Jordi <146965181+jordibonet-lambdaclass@users.noreply.github.com> Date: Thu, 1 Feb 2024 18:30:03 +0100 Subject: [PATCH] Fix hardhat error (#91) --- hardhat.config.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 hardhat.config.ts diff --git a/hardhat.config.ts b/hardhat.config.ts new file mode 100644 index 00000000000..00abe2b32ef --- /dev/null +++ b/hardhat.config.ts @@ -0,0 +1,28 @@ +import '@matterlabs/hardhat-zksync-solc'; +import '@nomiclabs/hardhat-vyper'; +import '@matterlabs/hardhat-zksync-vyper'; + +export default { + zksolc: { + version: '1.3.21', + compilerSource: 'binary', + settings: { + isSystem: true + } + }, + zkvyper: { + version: '1.3.13', + compilerSource: 'binary' + }, + networks: { + hardhat: { + zksync: true + } + }, + solidity: { + version: '0.8.23' + }, + vyper: { + version: '0.3.10' + } +};