From 76783c2d6bfd967937d17dcc62fa0ab72f885bff Mon Sep 17 00:00:00 2001 From: Arthur Abeilice Date: Thu, 28 May 2026 15:45:39 -0300 Subject: [PATCH] chore: hardhat config --- hardhat.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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",