-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle.js
31 lines (31 loc) · 867 Bytes
/
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
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
ganache: {
host: "localhost",
port: 7545,
network_id: "*" // Match any network id
},
itemstore: {
host: "localhost",
port: 8545,
network_id: "4224",
gas: 4700000
},
rinkeby: {
host: "localhost",
port: 8545,
network_id: "4", //rinkeby test network
gas: 4700000
},
live: {
host: "localhost",
port: 8545,
network_id: "1",
gas: 4700000,
gasPrice: 57000000000,
from: "0xbf6f5e78e154799c7856f4cf9f269cf7a7201310"
}
}
};