Unverified Commit 585db1f6 by Hadrien Croubois Committed by GitHub

Improve Hardhat config (#2612)

Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
parent 7f6a1666
......@@ -28,7 +28,7 @@ jobs:
- run: npm run test
env:
FORCE_COLOR: 1
ENABLE_GAS_REPORT: 1
ENABLE_GAS_REPORT: true
- name: Print gas report
run: cat gas-report.txt
......
/// 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('@nomiclabs/hardhat-solhint');
require('solidity-coverage');
require('hardhat-gas-reporter');
if (argv.enableGasReport) {
require('hardhat-gas-reporter');
}
for (const f of fs.readdirSync(path.join(__dirname, 'hardhat'))) {
require(path.join(__dirname, 'hardhat', f));
}
const enableGasReport = !!process.env.ENABLE_GAS_REPORT;
const enableProduction = process.env.COMPILE_MODE === 'production';
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
solidity: {
version: '0.8.0',
version: '0.8.3',
settings: {
optimizer: {
enabled: enableGasReport || enableProduction,
enabled: argv.enableGasReport || argv.compileMode === 'production',
runs: 200,
},
},
......@@ -32,8 +43,7 @@ module.exports = {
},
},
gasReporter: {
enable: enableGasReport,
currency: 'USD',
outputFile: process.env.CI ? 'gas-report.txt' : undefined,
outputFile: argv.ci ? 'gas-report.txt' : undefined,
},
};
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -27,7 +27,7 @@
"release": "scripts/release/release.sh",
"version": "scripts/release/version.sh",
"test": "hardhat test",
"gas-report": "env ENABLE_GAS_REPORT=1 npm run test"
"gas-report": "env ENABLE_GAS_REPORT=true npm run test"
},
"repository": {
"type": "git",
......@@ -76,6 +76,7 @@
"solhint": "^3.2.0",
"solidity-coverage": "^0.7.11",
"solidity-docgen": "^0.5.3",
"web3": "^1.3.0"
"web3": "^1.3.0",
"yargs": "^16.2.0"
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment