forked from markcarey/daoit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
hardhat.config.js
80 lines (79 loc) · 1.88 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
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
/**
* @type import('hardhat/config').HardhatUserConfig
*/
require('dotenv').config();
require("@nomiclabs/hardhat-ethers");
require("@nomiclabs/hardhat-etherscan");
require("@nomiclabs/hardhat-web3");
require("@nomiclabs/hardhat-waffle");
const { API_URL, MUMBAI_API_URL, POLYGON_API_URL, PRIVATE_KEY, ETHERSCAN_API_KEY, POLYSCAN_API_KEY } = process.env;
module.exports = {
solidity: {
compilers: [
{
version: "0.8.2",
settings: {
optimizer: {
enabled: true,
runs: 1
}
}
},
{
version: "0.8.0",
settings: {
optimizer: {
enabled: true,
runs: 1
}
}
},
{
version: "0.4.11",
settings: {
optimizer: {
enabled: true,
runs: 1
}
}
}
]
},
defaultNetwork: "mumbai",
networks: {
hardhat: {
accounts: [{ privateKey: `0x${PRIVATE_KEY}`, balance: "10000000000000000000000"}],
forking: {
url: MUMBAI_API_URL,
blockNumber: 24222206 // assumes mumbai fork
},
loggingEnabled: true,
gasMultiplier: 7,
gasPrice: 1000000000 * 5,
blockGasLimit: 0x1fffffffffffff
},
rinkeby: {
url: API_URL,
accounts: [`0x${PRIVATE_KEY}`],
gasMultiplier: 10,
gasPrice: 1000000000 * 10,
blockGasLimit: 0x1fffffffffffff
},
mumbai: {
url: MUMBAI_API_URL,
accounts: [`0x${PRIVATE_KEY}`]
//gasMultiplier: 3,
//gasPrice: 1000000000 * 2
},
polygon: {
url: POLYGON_API_URL,
accounts: [`0x${PRIVATE_KEY}`],
gasPrice: 1000000000 * 40
}
},
etherscan: {
apiKey: POLYSCAN_API_KEY
}
}
//
// npx hardhat node --fork https://eth-kovan.alchemyapi.io/v2/n_mDCfTpJ8I959arPP7PwiOptjubLm57 --fork-block-number 28431621