nft-minting-flow

Upload an image to IPFS, create metadata, and mint NFTs on a contract.

Updated Sep 9, 2025
One-click install
npx skills add https://github.com/LennyDevX/nuxchain-app --skill nft-minting-flow
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nft-minting-flow
Source: https://github.com/LennyDevX/nuxchain-app/tree/main/.windsurf/skills/nft-minting-flow
Command: npx skills add https://github.com/LennyDevX/nuxchain-app --skill nft-minting-flow

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

NFT minting and on-chain tokenization can be complex; this Skill provides an end-to-end flow to mint NFTs, manage metadata, and link assets through IPFS.

Core Features & Use Cases

  • Minting flow: upload an image, pin it to IPFS, create token metadata, and mint the NFT on a contract.
  • IPFS integration: demonstrates a reliable pipeline for storing and retrieving IPFS hashes and gateway URLs.
  • Use Case: a creator wants to mint an Avatar NFT or DragonixCard NFT and list it on a marketplace with on-chain ownership.

Quick Start

Upload an image, generate metadata, pin to IPFS, and call mint on the NFT contract to create your NFT.

Frequently Asked Questions about nft-minting-flow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I mint an NFT on-chain using IPFS for metadata and image storage?

Minting an NFT on-chain using IPFS requires uploading your image to IPFS, creating token metadata with the resulting hash, and calling the mint function on your smart contract with the recipient address.

What is the process for uploading an image to IPFS and linking it to an NFT smart contract?

Linking an image to an NFT smart contract via IPFS involves uploading the image to IPFS to retrieve a content hash, creating a metadata JSON file with that hash, and passing the metadata URI to the contract mint function.

Does this NFT minting workflow support creating avatar and tokenized marketplace assets?

Yes, this NFT minting workflow supports creating avatar NFTs, DragonixCard NFTs, and other tokenized assets by establishing on-chain ownership and generating the metadata required for marketplace listings.

Do I need a deployed smart contract before using this NFT tokenization flow?

Yes, you need a deployed NFT smart contract to call the mint function and a valid wallet address to specify the recipient of the newly minted on-chain token.

How are IPFS hashes and gateway URLs handled during the NFT creation process?

The NFT creation process provides a reliable pipeline for storing IPFS hashes of uploaded images and retrieving the corresponding gateway URLs to embed securely within the NFT token metadata.