-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtruffle.js
More file actions
27 lines (26 loc) · 690 Bytes
/
Copy pathtruffle.js
File metadata and controls
27 lines (26 loc) · 690 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
// Allows us to use ES6 in our migrations and tests.
require('babel-register');
module.exports = {
networks: {
ganache: {
host: '127.0.0.1',
port: 7545,
network_id: '*' // Match any network id
},
development: {
host: 'localhost',
port: 8545,
network_id: '*',
gas: 470000,
from: '0xD76500f49C1E24B6F07778c5Ab7c51059C9e0751'
},
live: {
host: 'localhost',
port: 8545,
network_id: '*',
gas: 335134,
gasPrice: 4,
from: '0x7125ead4c84651bd0657a2e61f6acfecd52d0f92'
}
}
}