forked from keep-network/tbtc-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
54 lines (49 loc) · 965 Bytes
/
hardhat.config.ts
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
import type { HardhatUserConfig } from "hardhat/config"
import "@keep-network/hardhat-helpers"
import "@nomiclabs/hardhat-ethers"
import "@nomiclabs/hardhat-waffle"
import "hardhat-deploy"
const config: HardhatUserConfig = {
networks: {
development: {
url: "http://127.0.0.1:8545",
},
system_tests: {
url: "http://127.0.0.1:8545",
},
},
// Indices for named accounts should match the ones defined in `@keep-network/tbtc-v2`.
namedAccounts: {
deployer: {
default: 1,
},
governance: {
default: 2,
},
chaosnetOwner: {
default: 3,
},
esdm: {
default: 4,
},
keepTechnicalWalletTeam: {
default: 5,
},
keepCommunityMultiSig: {
default: 6,
},
treasury: {
default: 7,
},
maintainer: {
default: 8,
},
depositor: {
default: 9,
},
},
mocha: {
timeout: 14400000, // 4 hours
},
}
export default config