chore: hardhat config

This commit is contained in:
2026-05-28 15:45:39 -03:00
parent 36e1dd30ce
commit 76783c2d6b

View File

@@ -94,11 +94,11 @@ const config: HardhatUserConfig = {
}, },
}, },
// network: getChainConfig("{INSERT_NAME}"), // network: getChainConfig("{INSERT_NAME}"),
mainnet: getChainConfig("mainnet"), mainnet: () => getChainConfig("mainnet"),
sepolia: getChainConfig("eth-sepolia"), sepolia: () => getChainConfig("eth-sepolia"),
mumbai: getChainConfig("polygon-mumbai"), mumbai: () => getChainConfig("polygon-mumbai"),
rootstock: getChainConfig("rootstock"), rootstock: () => getChainConfig("rootstock"),
rsktestnet: getChainConfig("rootstock-testnet"), rsktestnet: () => getChainConfig("rootstock-testnet"),
}, },
paths: { paths: {
artifacts: "./artifacts", artifacts: "./artifacts",