semaphore-protocol / semaphore

A zero-knowledge protocol for anonymous interactions.
https://semaphore.pse.dev
MIT License
883 stars 193 forks source link

Turn on Solidity optimizer #740

Closed 0xbok closed 4 months ago

0xbok commented 4 months ago

This project is using Solidity with optimizer turned off.

Relevant Hardhat documentation.

solidity: {
  version: "0.8.23",
  settings: {
    optimizer: {
      enabled: true,
      runs: 200,
    },
  },
},