Skip to content

Commit

Permalink
add optimizations back
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Dec 16, 2024
1 parent f5d539f commit 60332e2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion contracts/nft/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,19 @@ const config: HardhatUserConfig = {
networks: {
...getHardhatConfigNetworks(),
},
solidity: "0.8.26",
solidity: {
compilers: [
{
settings: {
optimizer: {
enabled: true,
runs: 1000,
},
},
version: "0.8.26",
},
],
},
};

export default config;

0 comments on commit 60332e2

Please sign in to comment.