Skip to content
Discussion options

You must be logged in to vote

Now the problem is glaring: the name of your contract in the above picture is DogeNFT, but when you used the DevOps tool in your mint script, you passed in DOGIE as shown in the line of code below.

address mostRecentlyDeployedDogieNft = DevOpsTools.get_most_recent_deployment("DOGIE", block.chainid);

So, change the line in your mint script to the below, and your code should now work fine.

address mostRecentlyDeployedDogieNft = DevOpsTools.get_most_recent_deployment("DogeNFT", block.chainid);

Replies: 3 comments 16 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@EngrPips
Comment options

Comment options

You must be logged in to vote
15 replies
@EngrPips
Comment options

@ArnaudBand
Comment options

@ArnaudBand
Comment options

@EngrPips
Comment options

Answer selected by ArnaudBand
@ArnaudBand
Comment options

@EngrPips
Comment options

@kinjun751
Comment options

@EngrPips
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants