-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhardhat.config.ts
46 lines (45 loc) · 1.11 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
require("@matterlabs/hardhat-zksync-deploy");
require("@matterlabs/hardhat-zksync-solc");
import "@nomiclabs/hardhat-ethers";
import {PRIVATE_KEY, INFURA_KEY} from "./config";
module.exports = {
zksolc: {
version: "0.1.0",
compilerSource: "docker",
settings: {
optimizer: {
enabled: true,
},
experimental: {
dockerImage: "matterlabs/zksolc",
},
},
},
zkSyncDeploy: {
zkSyncNetwork: "https://zksync2-testnet.zksync.dev",
ethNetwork: `https://goerli.infura.io/v3/${INFURA_KEY}`,
},
networks: {
hardhat: {
zksync: true,
},
goerli: {
url: `https://goerli.infura.io/v3/${INFURA_KEY}`,
accounts: [PRIVATE_KEY]
},
},
solidity: {
version: "0.8.10",
settings: {
optimizer: {
enabled: true,
runs: 200
},
outputSelection: {
'*': {
'*': ['storageLayout']
}
}
}
},
};