mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-09 17:45:38 +00:00
17 lines
274 B
JavaScript
17 lines
274 B
JavaScript
module.exports = {
|
|
migrations_directory: './migrations',
|
|
networks: {
|
|
development: {
|
|
host: 'localhost',
|
|
port: 8545,
|
|
network_id: '*', //* Match any network id
|
|
},
|
|
},
|
|
solc: {
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 500,
|
|
},
|
|
},
|
|
}
|