-
Notifications
You must be signed in to change notification settings - Fork 1
/
hardhat.config.js
42 lines (40 loc) · 1006 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-waffle");
require("@nomiclabs/hardhat-etherscan");
const { ffmnemonic, alchemyProjectId, etherscanKey, infuraProjectId } = require("./secrets.json");
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
solidity: {
version: "0.6.10",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
},
networks: {
// mainnet: {
// url: `https://eth-mainnet.alchemyapi.io/v2/${alchemyProjectId}`,
// gasPrice: 45000000000,
// gas: 3200000,
// accounts: { mnemonic: ffmnemonic }
// },
hardhat: {
forking: {
url: `https://eth-mainnet.alchemyapi.io/v2/${alchemyProjectId}`,
blockNumber: 11735500
}
},
kovan: {
url: `https://kovan.infura.io/v3/${infuraProjectId}`,
accounts: { mnemonic: ffmnemonic }
}
},
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: etherscanKey
}
};