Open
Description
Hello, I am following this tutorial to create a minting service. however, seems like the https://nft.storage/ is taking long so the minting is not succeeding.
i see error:
mintNFT
src/components/Minter.jsx:33
30 | setStatus("Blockchain transaction sent, waiting confirmation...");
31 |
32 | // Wait for the transaction to be confirmed, then get the token ID out of the emitted Transfer event.
> 33 | const receipt = await tx.wait();
| ^ 34 | let tokenId = null;
35 | for (const event of receipt.events) {
36 | if (event.event !== 'Transfer') {
I checked my account in the https://nft.storage/files/ and I can see some files are in Queued status.
Does anything need to change in this tuturial?
Thanks,
Tom
Activity