Replies: 2 comments 2 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
-
A typo is there.... constructorArguements: args, // ❌ try {
console.log("waiting22222");
await run("verify:verify", {
address: contractAddress,
constructorArguements: args, // ❌
}); Another prominent thing... networks: {
hardhat: {
url: "http://127.0.0.1:8545 //😉
},
sepolia: {
url: SEPOLIA_RPC_URL,
accounts: [PRIVATE_KEY],
chainId: 11155111,
blockConfirmations: 5 // 😉 prominent to mine blocks.
},
} |
Beta Was this translation helpful? Give feedback.
0 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.
Uh oh!
There was an error while loading. Please reload this page.
-
When invoking the verify function, an error occurs showing"ConnectTimeoutError: Connect Timeout Error." Here are the error details:
When I attempted to verify the contract using the terminal, I commented out the section of the code that calls the verify function. However, a new error has emerged. Here is the new error:
I'm unsure how to resolve this issue and would appreciate any assistance I can get.
For better understanding, here are some of my code files:
depoly.js
hardhat.config.js
I attempted to verify the contract by entering the command line in the terminal, but I am still encountering the same error. Below are the commands I entered and the resulting output. I feel quite confused and would greatly appreciate someone's assistance in resolving this issue.
Command input:
Output:
I hope this additional information helps in understanding the problem.
Beta Was this translation helpful? Give feedback.
All reactions