forked from daostack/arc.js_legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtruffle.js
More file actions
38 lines (37 loc) · 665 Bytes
/
truffle.js
File metadata and controls
38 lines (37 loc) · 665 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
32
33
34
35
36
37
38
require("babel-polyfill");
require("babel-register")({
"presets": ["es2015"],
"plugins": ["syntax-async-functions", "transform-regenerator"]
});
module.exports = {
networks: {
live: {
host: "localhost",
port: 8546,
network_id: "1",
gas: 4543760
},
ganache: {
host: "localhost",
port: 8545,
network_id: "*",
gas: 4543760
},
ropsten: {
host: "localhost",
port: 8548,
network_id: "3",
gas: 4543760
},
kovan: {
host: "localhost",
port: 8547,
network_id: "42",
gas: 4543760
}
},
rpc: {
host: "localhost",
port: 8545
}
};