Create NFT on Solana (Windows)
Table of Contents Prerequisite Install Solana Command Line Tool Generate a Solana Wallet Generate Token - Mint Fungible Token - Mint Non-Fungible Token (NFT) 【Prerequisite】 To create an NFT using command line tool for Windows system, it is suggested to use command prompt (cmd) opened as an Administer . explorer.solana.com as a web-based tool to interactively manage wallet and crypto assets. 【Install Solana Command Line Tool Suite】 First of all we need to install the Solana tool suite. For Windows system, the command: curl https://release.solana.com/v1.8.6/solana-install-init-x86_64-pc-windows-msvc.exe --output C:\solana-install-tmp\solana-install-init.exe --create-dirs This downloads Solana installer of version 1.8.6 to directory C:\solana-install-tmp for Windows system. Now Solana installer got into that directory with file name solana-install-init.exe. Check the version by solana --version For Linux system we can...