From 6da2c01a69f53462cc38b4c9418f283e798710eb Mon Sep 17 00:00:00 2001 From: "taejoon.jeon" Date: Sun, 17 Nov 2024 16:19:09 +0900 Subject: [PATCH] fix nfts with metaplex code name --- content/courses/tokens-and-nfts/nfts-with-metaplex.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/courses/tokens-and-nfts/nfts-with-metaplex.md b/content/courses/tokens-and-nfts/nfts-with-metaplex.md index 01e9fe72d..be6ce5a75 100644 --- a/content/courses/tokens-and-nfts/nfts-with-metaplex.md +++ b/content/courses/tokens-and-nfts/nfts-with-metaplex.md @@ -348,7 +348,7 @@ To begin, make a new folder and install the relevant dependencies: npm i @solana/web3.js@1 @solana-developers/helpers@2 @metaplex-foundation/mpl-token-metadata @metaplex-foundation/umi-bundle-defaults @metaplex-foundation/umi-uploader-irys esrun ``` -Then create a file called `create-metaplex-collection.ts`, and add our imports: +Then create a file called `create-metaplex-nft-collection.ts`, and add our imports: ```typescript import { @@ -698,7 +698,7 @@ await airdropIfRequired( const umi = createUmi(connection); -// Substitute in your collection NFT address from create-metaplex-collection.ts +// Substitute in your collection NFT address from create-metaplex-nft-collection.ts const collectionAddress = UMIPublicKey(""); // Substitute in your NFT address from create-metaplex-nft.ts