Replies: 3 comments
-
match the parameter with variable, change async function verify(contractAddress, args) {
console.log("Verifying Contract......")
try {
run("verify:verify", {
address: contractAddress,
constructorArguments: args,
})
} catch (e) {
if (e.message.toLowerCase().includes("already verified")) {
console.log("already verified")
} else {
console.log(e)
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
I encountered some other errors:
2 - Then i save the contract address in a variable called addressContract and pass that variable as argument |
Beta Was this translation helpful? Give feedback.
0 replies
-
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.
-
The following is the error message I am getting :
My deploy.js is :
Beta Was this translation helpful? Give feedback.
All reactions