diff --git a/hardhat.config.ts b/hardhat.config.ts index ab1093d..40eb589 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -94,11 +94,11 @@ const config: HardhatUserConfig = { }, }, // network: getChainConfig("{INSERT_NAME}"), - mainnet: getChainConfig("mainnet"), - sepolia: getChainConfig("eth-sepolia"), - mumbai: getChainConfig("polygon-mumbai"), - rootstock: getChainConfig("rootstock"), - rsktestnet: getChainConfig("rootstock-testnet"), + mainnet: () => getChainConfig("mainnet"), + sepolia: () => getChainConfig("eth-sepolia"), + mumbai: () => getChainConfig("polygon-mumbai"), + rootstock: () => getChainConfig("rootstock"), + rsktestnet: () => getChainConfig("rootstock-testnet"), }, paths: { artifacts: "./artifacts",