-
|
I'm follow along with Patrick to deploy the NFTs to Sepolia at Lesson 14 (22:30:58). After successfuly deployed 3 contracts: After several time trying to debug, I faced this error:
But now, when I run Here's my repo: https://github.com/veoquynhs/hardhat-nft-fcc |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
|
you have to play around with this works for me |
Beta Was this translation helpful? Give feedback.
-
|
Bro, if the main issue solved, close this Q&A and open new one. |
Beta Was this translation helpful? Give feedback.
you have to play around with
ethers.about
basicNft.getAddress is not a functionissuechange it to
basicNft.addressawait verify(basicNft.address, args)and others also
await verify(randomIpfsNft.address, args)await verify(dynamicSvgNft.address, args)this works for me
I tried to use
getAddressandtargetbut didn't work.