From 7ec9053052675ca079a2803263ec67ecd352a968 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Fri, 6 Dec 2024 15:11:00 -0500 Subject: [PATCH] Disambiguate NFT tutorials (#478) * Disambiguate NFt tutorials * Remove updates to tznft tutorial because I'm considering removing it --- docs/tutorials/create-an-nft/nft-taquito.md | 7 +++++++ docs/tutorials/create-an-nft/nft-web-app.md | 9 +++++++++ 2 files changed, 16 insertions(+) diff --git a/docs/tutorials/create-an-nft/nft-taquito.md b/docs/tutorials/create-an-nft/nft-taquito.md index 92109a80e..e8bc8783d 100644 --- a/docs/tutorials/create-an-nft/nft-taquito.md +++ b/docs/tutorials/create-an-nft/nft-taquito.md @@ -15,6 +15,13 @@ In this tutorial, you will learn: - How to deploy (originate) a smart contract to Tezos - How to use the [Taquito](https://tezostaquito.io/) JavaScript/TypeScript SDK to access Tezos and user wallets and to send transactions to Tezos +:::note + +This tutorial covers both the backend and frontend parts of a dApp. +For a simpler tutorial that covers creating only the frontend application, see [Mint NFTs from a web app](tutorials/create-an-nft/nft-web-app). + +::: + ## What is a non-fungible token (NFT)? An NFT is a special type of blockchain token that represents something unique. diff --git a/docs/tutorials/create-an-nft/nft-web-app.md b/docs/tutorials/create-an-nft/nft-web-app.md index 05f31f471..604cb5776 100644 --- a/docs/tutorials/create-an-nft/nft-web-app.md +++ b/docs/tutorials/create-an-nft/nft-web-app.md @@ -14,6 +14,15 @@ You will learn: - How to connect to a user's wallet - How to mint NFTs on behalf of a user +:::note + +This tutorial covers creating a web application to interact with Tezos and mint NFTs. +For simplicity, it uses an existing backend application, a smart contract running on Tezos. +To create your own NFTs in a production application, you must deploy your own smart contract and backend application. +For a tutorial that covers creating both the frontend and backend application, see [Create a contract and web app that mints NFTs](/tutorials/create-an-nft/nft-taquito). + +::: + ## Prerequisites This tutorial uses [JavaScript](https://www.javascript.com/), so it will be easier if you are familiar with JavaScript.