* Bump required compiler version to 0.5.2. * Fix shadowed variable warning in ERC20Migrator. * Rename Counter to Counters. * Add dummy state variable to SafeERC20Helper. * Update changelog entry. * Fix CountersImpl name. * Improve changelog entry.
23 lines
400 B
JavaScript
23 lines
400 B
JavaScript
module.exports = {
|
|
networks: {
|
|
development: {
|
|
host: 'localhost',
|
|
port: 8545,
|
|
network_id: '*', // eslint-disable-line camelcase
|
|
},
|
|
coverage: {
|
|
host: 'localhost',
|
|
network_id: '*', // eslint-disable-line camelcase
|
|
port: 8555,
|
|
gas: 0xfffffffffff,
|
|
gasPrice: 0x01,
|
|
},
|
|
},
|
|
|
|
compilers: {
|
|
solc: {
|
|
version: '0.5.2',
|
|
},
|
|
},
|
|
};
|