forked from SuperFarmDAO/SuperFarm-Sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardhat.config.js
More file actions
85 lines (80 loc) · 1.77 KB
/
Copy pathhardhat.config.js
File metadata and controls
85 lines (80 loc) · 1.77 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
require("@nomiclabs/hardhat-waffle");
require('dotenv').config();
require("@nomiclabs/hardhat-etherscan");
const chainIds = {
ganache: 1337,
goerli: 5,
hardhat: 31337,
kovan: 42,
mainnet: 1,
rinkeby: 4,
ropsten: 3,
};
// Ensure that we have all the environment variables we need.
let mnemonic;
if (!process.env.MNEMONIC) {
throw new Error("Please set your MNEMONIC in a .env file");
} else {
mnemonic = process.env.MNEMONIC;
}
let infuraApiKey;
if (!process.env.INFURA_API_KEY) {
throw new Error("Please set your INFURA_API_KEY in a .env file");
} else {
infuraApiKey = process.env.INFURA_API_KEY;
}
function createNetworkConfig(network) {
const url = "https://" + network + ".infura.io/v3/" + infuraApiKey;
return {
accounts: {
count: 10,
initialIndex: 0,
mnemonic,
path: "m/44'/60'/0'/0",
},
chainId: chainIds[network],
url,
};
}
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
accounts: {
mnemonic,
},
chainId: chainIds.hardhat,
},
mainnet: createNetworkConfig("mainnet"),
goerli: createNetworkConfig("goerli"),
kovan: createNetworkConfig("kovan"),
rinkeby: createNetworkConfig("rinkeby"),
ropsten: createNetworkConfig("ropsten"),
},
paths: {
artifacts: "./artifacts",
cache: "./cache",
sources: "./contracts",
tests: "./test",
},
solidity: {
compilers: [
{
version: "0.6.12",
settings: {
// https://hardhat.org/hardhat-network/#solidity-optimizer-support
optimizer: {
enabled: true,
runs: 200,
},
},
}
],
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY
}
};