Lesson 9: "Network Rinkeby doesn't exist" #1159
Unanswered
DorianDaSilva
asked this question in
Q&A
Replies: 2 comments 7 replies
-
Try a different chain: (I used Rinkeby and Goerli on Alchemy - both worked fine) if it does not work still, send the repo and I will look into it |
Beta Was this translation helpful? Give feedback.
5 replies
-
Rinkeby on alchemy is working fine.The only networks about to be depricated are networks: {
rinkeby: {
url: RINKEBY_RPC_URL,
accounts: [PRIVATE_KEY],
chainId: 4,
blockConfirmations: 6,
},
}, The module.exports = {
solidity: {
compilers: [{ version: "0.8.8" }, { version: "0.6.6" }],
},
defaultNetwork: "hardhat",
networks: {
rinkeby: {
url: RINKEBY_RPC_URL,
accounts: [PRIVATE_KEY],
chainId: 4,
blockConfirmations: 6,
},
},
gasReporter: {
enabled: true,
outputFile: "gas-report.txt",
noColors: true,
currency: "USD",
coinmarketcap: COINMARKETCAP_API_KEY,
token: "ETH",
},
etherscan: {
apiKey: ETHERSCAN_API_KEY,
},
namedAccounts: {
deployer: {
default: 0,
},
player: {
default: 1,
},
},
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As a solution for the issue #1088 hasn't been found after 1 week of research & collab, I proceeded to cloning the course repo for the lesson hoping to be able to run staging test properly but instead I am getting the following error:
Error HH100: Network rinkeby doesn't exist
I am wondering if Alchemy's Rinkeby is deprecated since it is not being called & suspect this may be the reason for the "timeout error" in the issue linked above.
So far, I have created a new subscription with a new consumer and used the consumer address to register upkeep but errors persist.
Should I switch to a different testnet or try a different RPC provider?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions