-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle.js
36 lines (33 loc) · 821 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
33
34
35
36
require('babel-register');
module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
network_id: "*",
websockets: true
},
live: {
host: "10.102.52.139",
port: 8545,
network_id: "*",
from: "0x9e442f4c99f09764b904af8c0337dfdf8d7efe69",
websockets: true,
gas: 4712388
},
infura: {
host: "https://mainnet.infura.io/gzpHdNpMS5wLQ0dsSDog",
port: 8545,
network_id: "*",
from: "0x9e442f4c99f09764b904af8c0337dfdf8d7efe69",
websockets: true,
gas: 4712388
}
},
solc: {
optimizer: {
enabled: true,
runs: 200
}
}
};