Replies: 3 comments 3 replies
-
This constructor minted 100 nfts on my testing , per the author's referenced comments. Would advise to test on your own for further safety. constructor(
string memory _tokenName,
string memory _tokenSymbol,
uint256 _cost,
uint256 _maxSupply,
uint256 _maxMintAmountPerTx,
string memory _hiddenMetadataUri
) ERC721A(_tokenName, _tokenSymbol) {
setCost(_cost);
maxSupply = _maxSupply;
setMaxMintAmountPerTx(_maxMintAmountPerTx);
setHiddenMetadataUri(_hiddenMetadataUri);
_safeMint(msg.sender, 100);
} |
Beta Was this translation helpful? Give feedback.
-
Thank you very much @mewmix for you help. I have to move this to discussions since it's not really a bug report. |
Beta Was this translation helpful? Give feedback.
-
@mewmix Just out of curiosity, I tried this twice, but it's not minting anything to the owner's wallet for me. How did it work? Did you have to confirm multiple transactions maybe? One for deployment, then again for the mints? |
Beta Was this translation helpful? Give feedback.
-
Hey @liarco!
So I'm not sure this is a bug or not but one of the comments mentioned this was not working?
#39 (comment)
I seen you left this comment previously to that:
#39 (comment)
Essentially I would like to mint a certain amount like 100 to keep for the team. A couple questions on this:
Thank you for the help and apologies if this was not a bug!
Beta Was this translation helpful? Give feedback.
All reactions