79510487

Date: 2025-03-15 01:13:51
Score: 1
Natty:
Report link

Here is a very useful and simple script that lists all the available networks in your HRE. Run it as a Hardhat script to see if Sepolia is listed there at all:

const hre = require("hardhat");

async function main() {
  console.log("Available networks in Hardhat configuration:");
  console.log(hre.config.networks);
}

main()
  .then(() => process.exit(0))
  .catch((error) => {
    console.error(error);
    process.exit(1);
  });

It should list your Sepolia network like this:

Listed Sepolia network in my HRE

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tony Nagy