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

Updates for the Taquito-based NFT tutorial #115

Merged
merged 29 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
eb3bc3c
Rename to Mint an NFT using Taquito
timothymcmackin Sep 20, 2023
66020f7
Move the tutorials under a container topic
timothymcmackin Sep 20, 2023
c8f7df5
It also keeps a ledger that records which account owns each NFT.
timothymcmackin Sep 20, 2023
fea07ae
Intro
timothymcmackin Sep 20, 2023
2a566c3
Copy what is an NFT section from the tznft tutorial
timothymcmackin Sep 20, 2023
95b1c1f
Prereqs and Pinata account
timothymcmackin Sep 20, 2023
4363d3e
Improvements to original IPFS instructions
timothymcmackin Sep 20, 2023
b3cf3e5
Info about the contract
timothymcmackin Sep 20, 2023
7b826d1
Deploying the contract
timothymcmackin Sep 20, 2023
9018c4c
Download the tutorial files
timothymcmackin Sep 20, 2023
c6970e4
Consistency in emphasis
timothymcmackin Sep 21, 2023
457313c
tweaks
timothymcmackin Sep 21, 2023
fd527d9
Application and diagrams
timothymcmackin Sep 21, 2023
c64fad4
Address of the contract is important
timothymcmackin Sep 21, 2023
144ebd9
Running and testing the app
timothymcmackin Sep 21, 2023
3bb2c91
incorporating info from previous version
timothymcmackin Sep 21, 2023
8962cb0
entrypoints
timothymcmackin Sep 21, 2023
61eeff5
Conclusion
timothymcmackin Sep 21, 2023
2a7f000
titles
timothymcmackin Sep 21, 2023
2723b52
Need a wallet and some funds
timothymcmackin Sep 21, 2023
1d682f0
deploy -> originate
timothymcmackin Sep 22, 2023
cb7b4fe
client -> sender
timothymcmackin Sep 22, 2023
559b9ed
variable -> property
timothymcmackin Sep 22, 2023
e058324
Incomplete line
timothymcmackin Sep 22, 2023
332cdc4
Creating NFTs is called minting
timothymcmackin Sep 22, 2023
b908c75
5 seconds by default
timothymcmackin Sep 22, 2023
1aaf63d
Pinata requires authentication
timothymcmackin Sep 22, 2023
8198653
correct path to image
timothymcmackin Oct 9, 2023
d85fe09
typo: be originated
timothymcmackin Oct 11, 2023
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/nft-create/web-ligo-ide-account.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/nft-pinata/image10.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image14.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image15.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image19.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image20.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image21.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image22.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image23.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image24.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image26.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image28.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image29.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image32.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image33.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image34.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image36.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image37.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image41.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image8.png
Binary file not shown.
Binary file removed public/images/nft-pinata/image9.png
Diff not rendered.
8 changes: 6 additions & 2 deletions src/components/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,12 @@ const tutorialNavigation = [
href: '/tutorials/create-an-nft',
children: [
{
title: 'Mint NFT using Taquito and Pinata',
href: '/tutorials/create-an-nft/nft-pinata',
title: 'Create an NFT with the `tznft` tool',
href: '/tutorials/create-an-nft/nft-tznft',
},
{
title: 'Create a web app that mints NFTs',
href: '/tutorials/create-an-nft/nft-taquito',
},
],
},
Expand Down
520 changes: 6 additions & 514 deletions src/pages/tutorials/create-an-nft/index.md

Large diffs are not rendered by default.

258 changes: 0 additions & 258 deletions src/pages/tutorials/create-an-nft/nft-pinata/index.md

This file was deleted.

704 changes: 704 additions & 0 deletions src/pages/tutorials/create-an-nft/nft-taquito/index.md

Large diffs are not rendered by default.

523 changes: 523 additions & 0 deletions src/pages/tutorials/create-an-nft/nft-tznft/index.md

Large diffs are not rendered by default.