Error HH100: Network rinkeby doesn't exist #2316
-
Hi, I am having a problem connecting to Rinkeby network. please see below the error and my config. % yarn hardhat run scripts/deploy.js --network rinkeby For more info go to https://hardhat.org/HH100 or run Hardhat with --show-stack-traces require("@nomicfoundation/hardhat-toolbox") const RINKEBY_RPC_URL = process.env.RINKEBY_RPC_URL /** @type import('hardhat/config').HardhatUserConfig */ rinkeby: { solidity: "0.8.9", |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@behzadz1 : Correct your
You did not put your networks inside Just copy & paste the below corrected
It will resolve your issue! |
Beta Was this translation helpful? Give feedback.
@behzadz1 : Correct your
hardhat.config.js
like this :You did not put your networks inside
networks{}
thats why it is saying rinkeby does not existsJust copy & paste the below corrected
hardhat.config.js
file.