diff --git a/hardhat.config.js b/hardhat.config.js index c3ff2cb..5210741 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -17,6 +17,16 @@ task("accounts", "Prints the list of accounts", async () => { * @type import('hardhat/config').HardhatUserConfig */ module.exports = { + defaultNetwork: "hardhat", + networks: { + hardhat: { + chainId: 1337, + mining: { + auto: false, + interval: [3000, 6000] + } + }, + }, solidity: "0.6.0", };