HH110:HH110: Invalid JSON-RPC response received: {"message":"Not Found","logref":null,"path":null,"_links":{"self":{"href":"/v2/_2uylrsFAdStt7HcTBACM67Yo-gJEIy5;","templated":false,"profile":null,"deprecation":null,"title":null,"hreflang":null,"type":null,"name":null}},"_embedded":{"errors":[{"message":"Page Not Found","logref":null,"path":null,"_links":{},"_embedded":{}}]}} #5190
Unanswered
rachit2905
asked this question in
Q&A
Replies: 1 comment 2 replies
-
@rachit2905 update this; sepolia: {
url: Sepolia_RPCURL,
accounts: [process.env.PRIVATE_KEY],
chainId: 11155111,
}, |
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.
-
I receive this error when i try to deploy my smart contract on Sepolia test network
`//require("@nomiclabs/hardhat-waffle");
require("@nomicfoundation/hardhat-toolbox");
require("dotenv").config();
/** @type import('hardhat/config').HardhatUserConfig */
const Sepolia_RPCURL = process.env.Sepolia_RPC_URL;
const PRIVATE_KEY = process.env.PRIVATE_KEY;
module.exports = {
defaultNetwork: "hardhat",
networks: {
Sepolia: {
url: Sepolia_RPCURL,
account: [
0x${PRIVATE_KEY}
],chainID: 5,
},
},
solidity: "0.8.18",
};`
Beta Was this translation helpful? Give feedback.
All reactions