Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disambiguate NFT tutorials #478

Merged
merged 2 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading