forked from KyberNetwork/smart-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtruffle.js
More file actions
34 lines (34 loc) · 724 Bytes
/
truffle.js
File metadata and controls
34 lines (34 loc) · 724 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
module.exports = {
solc: {
optimizer: {
enabled: true,
runs: 200
}
},
networks: {
development: {
host: "localhost",
port: 8545,
gas: 6000000,
gasPrice: 40000000000,
network_id: "*" // Match any network id
},
rinkeby: {
host: "localhost", // Connect to geth on the specified
port: 8545,
gasPrice: 4000000000,
network_id: 4,
gas: 4612388 // Gas limit used for deploys
},
simulation: {
host: "blockchain", // Connect to geth on the specified
port: 8545,
gasPrice: 4000000000,
network_id: 4,
gas: 4612388 // Gas limit used for deploys
}
},
mocha: {
enableTimeouts: false
}
};