import '@nomiclabs/hardhat-ethers'; import '@nomiclabs/hardhat-waffle'; import '@typechain/hardhat'; import 'hardhat-gas-reporter'; import 'solidity-coverage'; /** * @type import('hardhat/config').HardhatUserConfig */ module.exports = { solidity: { version: '0.8.13', settings: { optimizer: { enabled: true, runs: 999999, }, }, }, gasReporter: { currency: 'USD', }, typechain: { outDir: './types', target: 'ethers-v5', alwaysGenerateOverloads: true, }, mocha: { bail: true, }, };