You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.0 KiB
51 lines
1.0 KiB
/// ENVVAR
|
|
// - ENABLE_GAS_REPORT
|
|
// - CI
|
|
// - COMPILE_MODE
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const argv = require('yargs/yargs')()
|
|
.env('')
|
|
.boolean('enableGasReport')
|
|
.boolean('ci')
|
|
.string('compileMode')
|
|
.argv;
|
|
|
|
require('@nomiclabs/hardhat-truffle5');
|
|
require('solidity-coverage');
|
|
|
|
if (argv.enableGasReport) {
|
|
require('hardhat-gas-reporter');
|
|
}
|
|
|
|
for (const f of fs.readdirSync(path.join(__dirname, 'hardhat'))) {
|
|
require(path.join(__dirname, 'hardhat', f));
|
|
}
|
|
|
|
const withOptimizations = argv.enableGasReport || argv.compileMode === 'production';
|
|
|
|
/**
|
|
* @type import('hardhat/config').HardhatUserConfig
|
|
*/
|
|
module.exports = {
|
|
solidity: {
|
|
version: '0.8.3',
|
|
settings: {
|
|
optimizer: {
|
|
enabled: withOptimizations,
|
|
runs: 200,
|
|
},
|
|
},
|
|
},
|
|
networks: {
|
|
hardhat: {
|
|
blockGasLimit: 10000000,
|
|
allowUnlimitedContractSize: !withOptimizations,
|
|
},
|
|
},
|
|
gasReporter: {
|
|
currency: 'USD',
|
|
outputFile: argv.ci ? 'gas-report.txt' : undefined,
|
|
},
|
|
};
|
|
|