-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle.js
39 lines (38 loc) · 1.1 KB
/
truffle.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
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
host: "10.133.22.201",
port: 8545,
gas: 0x47b760,
gasPrice: 0,
from: "0xb168e15ee077ca7f086acf9435a19a5707416301",
network_id: "2017" // Match any network id
},
node2: {
host: "10.133.22.201",
port: 8546,
gas: 0x47b760,
gasPrice: 0,
from: "0xb168e15ee077ca7f086acf9435a19a5707416301",
network_id: "2017" // Match any network id
},
node3: {
host: "10.133.22.201",
port: 8547,
gas: 0x47b760,
gasPrice: 0,
from: "0xb168e15ee077ca7f086acf9435a19a5707416301",
network_id: "2017" // Match any network id
},
node4: {
host: "10.133.22.201",
port: 8548,
gas: 0x47b760,
gasPrice: 0,
from: "0xb168e15ee077ca7f086acf9435a19a5707416301",
network_id: "2017" // Match any network id
}
}
};