mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-02-01 11:53:20 +00:00
29 lines
502 B
JavaScript
29 lines
502 B
JavaScript
require("@nomiclabs/hardhat-waffle")
|
|
require("hardhat-deploy")
|
|
require("hardhat-deploy-ethers")
|
|
require("hardhat-gas-reporter")
|
|
|
|
module.exports = {
|
|
solidity: {
|
|
version: "0.8.8",
|
|
settings: {
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 1000,
|
|
},
|
|
},
|
|
},
|
|
namedAccounts: {
|
|
deployer: { default: 0 },
|
|
},
|
|
networks: {
|
|
hardhat: {
|
|
tags: ["local"],
|
|
},
|
|
},
|
|
gasReporter: {
|
|
enabled: process.env.REPORT_GAS ? true : false,
|
|
showTimeSpent: true,
|
|
},
|
|
}
|