-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelper-hardhat-config.js
More file actions
46 lines (43 loc) · 1.05 KB
/
helper-hardhat-config.js
File metadata and controls
46 lines (43 loc) · 1.05 KB
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
const { ethers } = require("hardhat")
const networkConfig = {
default: {
name: "hardhat",
minDelay: 3600,
votingPeriod: 5,
votingDelay: 1,
quorum: 4,
addressZero: "0x0000000000000000000000000000000000000000",
},
80001: {
name: "mumbai",
minDelay: 3600,
votingPeriod: "50400",
votingDelay: "7200",
quorum: "60",
addressZero: "0x0000000000000000000000000000000000000000",
},
11155111: {
name: "sepolia",
minDelay: 3600,
votingPeriod: "50400",
votingDelay: "7200",
quorum: "60",
addressZero: "0x0000000000000000000000000000000000000000",
},
31337: {
name: "localhost",
minDelay: 3600,
votingPeriod: 5,
votingDelay: 1,
quorum: 4,
addressZero: "0x0000000000000000000000000000000000000000",
},
mocha: {
timeout: 200000,
},
}
const developmentChains = ["hardhat", "localhost"]
module.exports = {
networkConfig,
developmentChains,
}