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