Skip to content

Commit 513ffab

Browse files
committed
Update links from Ropsten to Goerli
1 parent be6c67e commit 513ffab

File tree

1 file changed

+3
-3
lines changed
  • src/content/developers/tutorials/how-to-mint-an-nft

1 file changed

+3
-3
lines changed

src/content/developers/tutorials/how-to-mint-an-nft/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Once you’re done editing the JSON file, save it and upload it to Pinata, follo
109109

110110
## Step 5: Create an instance of your contract {#instance-contract}
111111

112-
Now, to interact with our contract, we need to create an instance of it in our code. To do so we’ll need our contract address which we can get from the deployment or [Etherscan](https://ropsten.etherscan.io/) by looking up the address you used to deploy the contract.
112+
Now, to interact with our contract, we need to create an instance of it in our code. To do so we’ll need our contract address which we can get from the deployment or [Etherscan](https://goerli.etherscan.io/) by looking up the address you used to deploy the contract.
113113

114114
![View your contract address on Etherscan](./viewContractEtherscan.png)
115115

@@ -130,7 +130,7 @@ Now, in order to create and send transactions to the Ethereum chain, we’ll use
130130
Add your public key to your `.env` file — if you completed part 1 of the tutorial, our `.env` file should now look like this:
131131

132132
```js
133-
API_URL = "https://eth-ropsten.alchemyapi.io/v2/your-api-key"
133+
API_URL = "https://eth-goerli.g.alchemy.com/v2/your-api-key"
134134
PRIVATE_KEY = "your-private-account-address"
135135
PUBLIC_KEY = "your-public-account-address"
136136
```
@@ -316,7 +316,7 @@ Now, run `node scripts/mint-nft.js` to deploy your NFT. After a couple of second
316316

317317
Check Alchemy's Mempool to view the status of your transaction!
318318

319-
Next, visit your [Alchemy mempool](https://dashboard.alchemyapi.io/mempool) to see the status of your transaction (whether it’s pending, mined, or got dropped by the network). If your transaction got dropped, it’s also helpful to check [Ropsten Etherscan](https://ropsten.etherscan.io/) and search for your transaction hash.
319+
Next, visit your [Alchemy mempool](https://dashboard.alchemyapi.io/mempool) to see the status of your transaction (whether it’s pending, mined, or got dropped by the network). If your transaction got dropped, it’s also helpful to check [Goerli Etherscan](https://goerli.etherscan.io/) and search for your transaction hash.
320320

321321
![View your NFT transaction hash on Etherscan](./viewNFTEtherscan.png)_View your NFT transaction hash on Etherscan_
322322

0 commit comments

Comments
 (0)