-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
47 lines (45 loc) · 977 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
43
44
45
46
47
require("@nomiclabs/hardhat-waffle");
require("@nomiclabs/hardhat-etherscan");
require("@nomiclabs/hardhat-ethers");
require("hardhat-deploy");
require("hardhat-contract-sizer");
require('hardhat-docgen');
module.exports = {
solidity: {
version: "0.8.8",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
},
networks: {
hardhat: {
chainId: 1337
},
rinkeby: {
url: process.env.RINKEBY_API_URI,
accounts: [process.env.RINKEBY_ACCOUNT_PRIVATE_KEY],
},
mainnet: {
url: process.env.MAINNET_API_URI,
accounts: [process.env.MAINNET_ACCOUNT_PRIVATE_KEY],
}
},
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: process.env.ETHERSCAN_API_KEY
},
namedAccounts: {
deployer: {
default: 0, // first account
},
},
docgen: {
path: './client/public/docgen',
clear: true,
runOnCompile: true,
}
};