core-artifacts
Version:
Consist artifacts of the maple protocol
36 lines (34 loc) • 572 B
JavaScript
module.exports = {
defaultNetwork: 'localhost',
gasReporter: {
showMethodSig: true,
currency: 'USD'
},
paths: {
root: './flattened-contracts',
sources: 'contracts'
},
networks: {
localhost: {
url: 'http://localhost:8545',
}
},
solidity: {
compilers: [
{
version: '0.6.11',
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
}
]
},
contractSizer: {
alphaSort: false,
runOnCompile: true,
disambiguatePaths: false
}
}