safe-react/truffle.js

17 lines
274 B
JavaScript
Raw Normal View History

2018-03-01 08:05:56 +00:00
module.exports = {
migrations_directory: './migrations',
2018-03-01 08:05:56 +00:00
networks: {
development: {
host: 'localhost',
2018-03-01 08:05:56 +00:00
port: 8545,
network_id: '*', //* Match any network id
},
2018-03-01 08:05:56 +00:00
},
solc: {
optimizer: {
enabled: true,
runs: 500,
},
},
}