From 6e02fdded0009865ba20c9a958c71bc0f433f6cc Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Sat, 5 Oct 2024 13:36:25 +0200 Subject: [PATCH] Change Hardhat default network to `localfhenix` Without this it seems to use the remote testnet --- hardhat.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index ab40cee..7fec4c5 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -41,7 +41,7 @@ if (!keys) { const config: HardhatUserConfig = { solidity: "0.8.25", - defaultNetwork: "hardhat", + defaultNetwork: "localfhenix", networks: { testnet: testnetConfig, },