You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/developers/tutorials/how-to-mint-an-nft/index.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -73,11 +73,11 @@ Once you’ve created an account:
73
73
74
74
- Upload an image to Pinata — this will be the image asset for your NFT. Feel free to name the asset whatever you wish
75
75
76
-
- After you upload, you'll see the file info in the table on the "Files" page. You'll also see a CID column. You can copy the CID by clicking the copy button next to it. You can view your upload at: `https://gateway.pinata.cloud/ipfs/<CID>`. You can find the image we used on IPFS [here](https://gateway.pinata.cloud/ipfs/QmarPqdEuzh5RsWpyH2hZ3qSXBCzC5RyK3ZHnFkAsk7u2f), for example.
76
+
- After you upload, you'll see the file info in the table on the "Files" page. You'll also see a CID column. You can copy the CID by clicking the copy button next to it. You can view your upload at: `https://gateway.pinata.cloud/ipfs/<CID>`. You can find the image we used on IPFS [here](https://gateway.pinata.cloud/ipfs/QmZdd5KYdCFApWn7eTZJ1qgJu18urJrP9Yh1TZcZrZxxB5), for example.
77
77
78
78
For the more visual learners, the steps above are summarized here:
79
79
80
-

80
+

81
81
82
82
Now, we’re going to want to upload one more document to Pinata. But before we do that, we need to create it!
83
83
@@ -113,12 +113,12 @@ Now, to interact with our contract, we need to create an instance of it in our c
113
113
114
114

115
115
116
-
In the above example, our contract address is 0x81c587EB0fE773404c42c1d2666b5f557C470eED.
116
+
In the above example, our contract address is 0x5a738a5c5fe46a1fd5ee7dd7e38f722e2aef7778.
117
117
118
118
Next we will use the Web3 [contract method](https://web3js.readthedocs.io/en/v1.2.0/web3-eth-contract.html?highlight=constructor#web3-eth-contract) to create our contract using the ABI and address. In your `mint-nft.js` file, add the following:
0 commit comments