Skip to content

Commit

Permalink
Fix hardhat error (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
jordibonet-lambdaclass committed Feb 1, 2024
1 parent 6e423e9 commit a38f718
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -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'
}
};

0 comments on commit a38f718

Please sign in to comment.