-
Notifications
You must be signed in to change notification settings - Fork 44
/
hardhat.config.js
55 lines (53 loc) · 1.22 KB
/
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
48
49
50
51
52
53
54
55
require("@nomiclabs/hardhat-waffle");
require("@nomiclabs/hardhat-etherscan");
require("@nomiclabs/hardhat-truffle5");
require("@nomiclabs/hardhat-ethers");
require("hardhat-gas-reporter");
const keys = require('./dev-keys.json');
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
accounts: {
mnemonic: keys.mnemonic,
},
allowUnlimitedContractSize: true,
forking: {
//url: "https://mainnet.infura.io/v3/" + keys.infuraKey,
url: "https://eth-mainnet.alchemyapi.io/v2/" + keys.alchemyKeyMainnet,
// blockNumber: 13984950, // <-- edit here
},
},
mainnet: {
url: "https://eth-mainnet.alchemyapi.io/v2/" + keys.alchemyKeyMainnet,
accounts: {
mnemonic: keys.mnemonic,
},
},
},
solidity: {
compilers: [{
version: "0.5.16",
settings: {
optimizer: {
enabled: true,
runs: 200
},
},
},
],
},
mocha: {
timeout: 2000000,
},
gasReporter: {
enabled: (process.env.REPORT_GAS) ? true : false,
currency: 'USD',
},
etherscan: {
apiKey: keys.etherscanAPI,
},
};