mirror of
https://github.com/semaphore-protocol/semaphore.git
synced 2026-04-28 03:00:41 -04:00
perf(contracts): turn on solidity optimizer
Turn on solidity optimizer re #740
This commit is contained in:
@@ -14,7 +14,15 @@ import "./tasks/deploy"
|
||||
dotenvConfig({ path: resolve(__dirname, "../../.env") })
|
||||
|
||||
const hardhatConfig: HardhatUserConfig = {
|
||||
solidity: "0.8.23",
|
||||
solidity: {
|
||||
version: "0.8.23",
|
||||
settings: {
|
||||
optimizer: {
|
||||
enabled: true,
|
||||
runs: 200
|
||||
}
|
||||
}
|
||||
},
|
||||
networks: {
|
||||
hardhat: {
|
||||
chainId: 1337,
|
||||
|
||||
Reference in New Issue
Block a user