codex-contracts-eth/hardhat.config.js
Mark Spanbroek 438fb605c0 Ensure local ethereum node has at least 256 blocks
Storage contract cannot be deployed when block height
is less than 256 blocks.
2022-03-15 17:01:04 +01:00

16 lines
257 B
JavaScript

require("@nomiclabs/hardhat-waffle")
require("hardhat-deploy")
require("hardhat-deploy-ethers")
module.exports = {
solidity: "0.8.4",
namedAccounts: {
deployer: { default: 0 },
},
networks: {
hardhat: {
tags: ["local"],
},
},
}