-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhardhat.config.js
48 lines (47 loc) · 1.02 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
require("@nomiclabs/hardhat-etherscan");
require("@nomiclabs/hardhat-truffle5");
require("@nomiclabs/hardhat-ethers");
const keys = require('./dev-keys.json');
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
defaultNetwork: 'hardhat',
networks: {
hardhat: {
accounts: {
mnemonic: keys.mnemonic,
},
forking: {
//url: "https://mainnet.infura.io/v3/" + keys.infuraKey,
url: 'https://eth-mainnet.alchemyapi.io/v2/' + keys.alchemyKeyMainnet,
// blockNumber: 15087700, // <-- edit here
},
},
mainnet: {
url: 'https://eth-mainnet.alchemyapi.io/v2/' + keys.alchemyKeyMainnet,
accounts: {
mnemonic: keys.mnemonic,
},
},
},
solidity: {
compilers: [
{
version: '0.6.12',
settings: {
optimizer: {
enabled: true,
runs: 150,
},
},
},
],
},
mocha: {
timeout: 2000000,
},
etherscan: {
apiKey: keys.etherscanAPI,
},
};