forked from ethersphere/swap-swear-and-swindle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
42 lines (38 loc) · 887 Bytes
/
hardhat.config.js
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
require("@nomiclabs/hardhat-truffle5");
require("solidity-coverage")
// Define mnemonic for accounts.
let mnemonic = process.env.MNEMONIC;
if (!mnemonic) {
// NOTE: this fallback is for development only!
// When using other networks, set the secret in .env.
// DO NOT commit or share your mnemonic with others!
mnemonic = 'test test test test test test test test test test test test';
}
const accounts = { mnemonic };
// Config for hardhat.
module.exports = {
solidity: { version: '0.7.6',
settings: {
optimizer: {
enabled: true,
runs: 200
},
}
},
networks: {
hardhat: {
accounts,
},
localhost: {
url: 'http://localhost:8545',
accounts,
},
staging: {
url: 'https://goerli.infura.io/v3/' + process.env.INFURA_TOKEN,
accounts,
},
},
paths: {
sources: 'contracts',
},
};