mirror of
https://github.com/status-im/dagger-contracts.git
synced 2025-01-11 14:55:06 +00:00
169a446769
Contract size was becoming too large without optimization.
24 lines
371 B
JavaScript
24 lines
371 B
JavaScript
require("@nomiclabs/hardhat-waffle")
|
|
require("hardhat-deploy")
|
|
require("hardhat-deploy-ethers")
|
|
|
|
module.exports = {
|
|
solidity: {
|
|
version: "0.8.4",
|
|
settings: {
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 1000,
|
|
},
|
|
},
|
|
},
|
|
namedAccounts: {
|
|
deployer: { default: 0 },
|
|
},
|
|
networks: {
|
|
hardhat: {
|
|
tags: ["local"],
|
|
},
|
|
},
|
|
}
|