From 2b08762c2471cfe0f31dd55663c2fe8fc66ef82b Mon Sep 17 00:00:00 2001 From: Andrea Franz Date: Tue, 10 Oct 2023 00:24:03 +0200 Subject: [PATCH] add dev network --- hardhat.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hardhat.config.ts b/hardhat.config.ts index 57718be3..c8eacae1 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -197,6 +197,9 @@ const config: HardhatUserConfig = { }, localhost: createTestnetConfig("localhost", "http://localhost:8545"), + // dev is still a local chain but it's based on our dev environment + // with hardcoded deterministic addresses for deployed contracts + dev: createTestnetConfig("dev", "http://localhost:8545"), hardhat: { forking: { url: `${process.env.FORK_RPC_URL}`,