Skip to content

Commit

Permalink
Disambiguate NFT tutorials (#478)
Browse files Browse the repository at this point in the history
* Disambiguate NFt tutorials

* Remove updates to tznft tutorial because I'm considering removing it
  • Loading branch information
timothymcmackin authored Dec 6, 2024
1 parent 9b6f42d commit 7ec9053
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/tutorials/create-an-nft/nft-taquito.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
9 changes: 9 additions & 0 deletions docs/tutorials/create-an-nft/nft-web-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 7ec9053

Please sign in to comment.