2021-10-12 06:35:24 +00:00
|
|
|
require("@nomiclabs/hardhat-waffle")
|
2021-11-16 09:44:13 +00:00
|
|
|
require("hardhat-deploy")
|
2021-11-16 13:06:37 +00:00
|
|
|
require("hardhat-deploy-ethers")
|
2021-10-12 06:35:24 +00:00
|
|
|
|
|
|
|
module.exports = {
|
2022-04-06 12:51:25 +00:00
|
|
|
solidity: {
|
2022-09-29 10:18:02 +00:00
|
|
|
version: "0.8.8",
|
2022-04-06 12:51:25 +00:00
|
|
|
settings: {
|
|
|
|
optimizer: {
|
|
|
|
enabled: true,
|
|
|
|
runs: 1000,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-16 12:54:38 +00:00
|
|
|
namedAccounts: {
|
2022-03-15 15:45:35 +00:00
|
|
|
deployer: { default: 0 },
|
|
|
|
},
|
|
|
|
networks: {
|
|
|
|
hardhat: {
|
|
|
|
tags: ["local"],
|
|
|
|
},
|
|
|
|
},
|
2021-10-12 06:35:24 +00:00
|
|
|
}
|