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}"),
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",