forked from ProjectWyvern/wyvern-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle.js
45 lines (45 loc) · 847 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
37
38
39
40
41
42
43
44
45
module.exports = {
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*',
gas: 6700000
},
kovan: {
host: 'localhost',
port: 8545,
network_id: '*',
gas: 6700000
},
rinkeby: {
host: 'localhost',
from: '0xb483a98e72a583cc9b45b70cee07ac628d633d69',
port: 8545,
network_id: '*',
gas: 6700000,
gasPrice: 21000000000
},
coverage: {
host: 'localhost',
network_id: '*',
port: 8545,
gas: 0xfffffffffff,
gasPrice: 0x01
},
main: {
host: 'localhost',
port: 8547,
from: '0x0084a81668B9A978416aBEB88bC1572816cc7cAC',
network_id: 1,
gas: 6700000,
gasPrice: 6110000000
}
},
solc: {
optimizer: {
enabled: true,
runs: 200
}
}
}