safe-react/truffle.js

19 lines
284 B
JavaScript

// @flow
module.exports = {
migrations_directory: './migrations',
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*', //* Match any network id
},
},
solc: {
optimizer: {
enabled: true,
runs: 500,
},
},
}