-
Notifications
You must be signed in to change notification settings - Fork 23
/
truffle.js
32 lines (32 loc) · 828 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
32
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
gas: 4712388, // 4 milliShannon
gasPrice:100000000000, // 100 Shannon == 100 billion Wei
//from: web3.eth.accounts[0]
},
testnet: {
host: "127.0.0.1",
//host: "192.241.195.178",
port: 45585,
network_id: "*", // Match any network id
gas: 4712388, // 4 milliShannon
gasPrice:100000000000, // 100 Shannon == 100 billion Wei
//from: web3.eth.accounts[0]
},
live: {
host: "localhost",
port:8545,
network_id: 1,
gas: 4712388, // 4 milliShannon
gasPrice:100000000000, // 100 Shannon == 100 billion Wei
//from: web3.eth.accounts[0]
}
},
mocha: {
useColors: true
}
};