Issues when minting #3267
-
When i try minting to goerli network, it just says
without actually minting, This is my minting script:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 30 replies
-
This is my git link just incase.. |
Beta Was this translation helpful? Give feedback.
-
@Benrockiee : Change this line, From this : To this : Let me know, If the issue persists! |
Beta Was this translation helpful? Give feedback.
-
Same as the last issue, try replacing the "getContractAt" line with this one: Also, are you putting |
Beta Was this translation helpful? Give feedback.
@Benrockiee : Change this line,
From this :
const spideyNft = await ethers.getContractAt("SpideyNft", deployer)
To this :
const spideyNft = await ethers.getContract("SpideyNft", deployer)
:getContract
not -->getContractAt
Let me know, If the issue persists!