-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtruffle.js
More file actions
41 lines (41 loc) · 779 Bytes
/
truffle.js
File metadata and controls
41 lines (41 loc) · 779 Bytes
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
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*" // Match any network id
},
ci: {
host: "localhost",
port: 8545,
network_id: "*" // Match any network id
},
coverage: {
host: "localhost",
port: 8555,
network_id: "*", // Match any network id
gas: 0xFFFFFFF,
gasprice: 0x1
},
testrpca: {
host: "localhost",
port: 8545,
network_id: "*" // Match any network id
},
testrpcb: {
host: "localhost",
port: 8546,
network_id: "*" // Match any network id
}
},
mocha: {
useColors: true,
enableTimeouts: false
},
solc: {
optimizer: {
enabled: true,
runs: 200
}
}
};