mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-10 18:15:37 +00:00
19 lines
284 B
JavaScript
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,
|
|
},
|
|
},
|
|
}
|