diff --git a/hardhat.config.js b/hardhat.config.js index 6129ed5..2399e1f 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -3,7 +3,15 @@ require("hardhat-deploy") require("hardhat-deploy-ethers") module.exports = { - solidity: "0.8.4", + solidity: { + version: "0.8.4", + settings: { + optimizer: { + enabled: true, + runs: 1000, + }, + }, + }, namedAccounts: { deployer: { default: 0 }, },