-
Notifications
You must be signed in to change notification settings - Fork 5
/
hardhat.config.ts
51 lines (44 loc) · 1.08 KB
/
hardhat.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { HardhatUserConfig } from 'hardhat/config';
import "@matterlabs/hardhat-zksync-chai-matchers";
import "@matterlabs/hardhat-zksync-toolbox";
import "@matterlabs/hardhat-zksync-deploy";
import "@matterlabs/hardhat-zksync-solc";
import "@typechain/hardhat";
import * as dotenv from "dotenv";
dotenv.config();
const zkSyncTestnet =
process.env.NODE_ENV == "test"
? {
url: "http://localhost:3050",
ethNetwork: "http://localhost:8545",
zksync: true,
}
: {
url: "https://zksync2-testnet.zksync.dev",
ethNetwork: process.env.alchemy_api_goerli,
zksync: true,
};
const compilers = [
{version: "0.8.0"}, {version: "0.8.1"}, {version: "0.8.11"},
]
const config:HardhatUserConfig = {
zksolc: {
version: '1.3.6',
compilerSource: 'binary',
settings: {
isSystem: true
},
},
defaultNetwork: "zkSyncTestnet",
networks: {
hardhat: {
// @ts-ignore
zksync: true
},
zkSyncTestnet,
},
solidity: {
compilers: compilers,
},
};
export default config;