-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtruffle.js
More file actions
31 lines (30 loc) · 711 Bytes
/
truffle.js
File metadata and controls
31 lines (30 loc) · 711 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
// Allows us to use ES6 in our migrations and tests.
require('babel-register')
module.exports = {
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*', // Match any network id
from: '0xe98b66de7c650e009f4362dcfb5ab5b20140b2bb'
},
kovan: {
network_id: 42,
host:'localhost',
port:8545,
from:'0xe98b66de7c650e009f4362dcfb5ab5b20140b2bb'
},
rinkeby: {
host: "10.0.0.14",
port: 8545,
network_id: 4,
from:'0xe98b66de7c650e009f4362dcfb5ab5b20140b2bb'
},
live: {
host: "10.0.0.14",
port: 8545,
network_id: 1,
from:'0xe98b66de7c650e009f4362dcfb5ab5b20140b2bb'
}
}
}