EN|δΈ­ζ–‡

🎨 How to Launch an NFT Collection

The Flip platform provides creators with a simple and efficient solution for NFT minting. In the launch interface, you need to fill in the following key information:

FieldTypeDescription
NameStringName of the NFT collection, recommend using a distinctive name
SymbolStringTrading symbol for the NFT collection, typically in uppercase letters, e.g., "FLIP"
Initial PriceFloatBase price for NFT minting, serves as the baseline for dynamic pricing
Max SupplyIntegerMaximum number of NFTs that can be minted, immutable after deployment
Creator FeeIntegerRoyalty percentage (%) deducted from each transaction
Base URIStringBase address for NFT metadata access

Below, we'll detail two crucial parameters: Initial Price and Base URI.

πŸ’° Initial Price

Initial Price serves as the base pricing for NFTs. Flip implements an innovative dynamic pricing mechanism (Bonding Curve) where NFT prices adjust automatically based on the minting volume. The specific pricing formula is:

price=Β initialPrice+initialPriceΓ—2Γ—100Γ—supplymaxSupplyΓ—10000Γ—supply2maxSupply2\begin{aligned} price = & \ initialPrice + initialPrice \times 2 \times \\ & \sqrt{\frac{100 \times supply}{maxSupply}} \times \\ & \sqrt{\frac{10000 \times supply^2}{maxSupply^2}} \end{aligned}

Parameter definitions:

  • initialPrice: Your set base price for the NFT
  • supply: Current number of minted NFTs
  • maxSupply: Maximum total supply of NFTs

Price curve characteristics:

  1. Follows a parabolic trajectory
  2. Early minting phase: Lower prices with rapid growth rate
  3. Later minting phase: Higher prices with diminishing growth rate

Example: With initialPrice = 0.001 ETH and maxSupply = 10000, the price ceiling approaches 2 ETH

Bonding Curve Price Chart

πŸ”— Base URI

Base URI defines the root path for NFT metadata access, determining how to retrieve information for each NFT. Flip is fully compatible with OpenSea's metadata standards and supports contract-level metadata.

πŸ“ Smart Contract Implementation

The smart contract is implemented using the ERC-721 and ERC-7572 standards. The contract includes the following key features:

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    // Get the metadata URL for a single NFT
    // Use the baseURI as the base path and append the tokenId and file name
    function tokenURI(uint256 tokenId) public view override virtual returns (string memory) {
        _requireOwned(tokenId);
        return bytes(baseURI).length > 0 ? string.concat(baseURI, "/", tokenId.toString(), ".json") : "";
    }

    // Get the metadata URL for the collection
    // Use the baseURI as the base path and append the collection metadata file name
    function contractURI() public view returns (string memory) {
        return bytes(baseURI).length > 0 ? string.concat(baseURI, "/collection.json") : "";
    }

πŸ“ Metadata Access Rules

  1. Individual NFT metadata URL format:
https://baseURI/1.json
https://baseURI/2.json
...
https://baseURI/10000.json

The last number is the NFT ID, starting from 1 and incrementing by 1.

  1. Collection metadata URL:
https://baseURI/collection.json

The last file name is the collection metadata file name.

πŸ“‹ Metadata Format Specifications

  1. Individual NFT metadata example (ERC-721 compliant):
{  
  "name": "FLIP #1",  // NFT name, recommended to include token ID
  "description": "FLIP NFT is an NFT standard constructed using the Bonding Curve algorithm", 
  "image": "https://ipfs.io/ipfs/bafkreicxcqiu6xur2sqp5vnpbaq5ksy43pbe3i3ymldkqogmtg5erq4nje"
}

The individual NFT metadata is used to describe the properties of a single NFT, such as name, description, and image.

  1. Collection metadata example (ERC-7572 compliant):
{
  "name": "FLIP TEST",
  "symbol": "FLIP",
  "description": "FLIP NFT is an NFT standard constructed using the Bonding Curve algorithm",
  "image": "https://ipfs.io/ipfs/bafkreicxcqiu6xur2sqp5vnpbaq5ksy43pbe3i3ymldkqogmtg5erq4nje",
  "banner_image": "https://ipfs.io/ipfs/bafkreigqflltl7xwqv6wmp2yxgnosdlmlr2d5y36ne2zm2vtmiapgozawa"
}

The collection metadata is used to describe the properties of the collection, such as name, symbol, description, image, and banner image.

πŸš€ File Organization and Deployment

Recommended metadata project structure:

Project/
β”œβ”€β”€ Metadata/
β”‚ β”œβ”€β”€ collection.json # Collection metadata
β”‚ β”œβ”€β”€ 1.json         # NFT #1 metadata
β”‚ β”œβ”€β”€ 2.json         # NFT #2 metadata
β”‚ └── ...            # Additional NFT metadata
└── Images/
  β”œβ”€β”€ 1.png          # NFT #1 image
  β”œβ”€β”€ 2.png          # NFT #2 image
  └── ...            # Additional NFT images

⚠️Note: We need to upload the Images folder to IPFS first, then use the image CID to replace the image URL in the metadata before uploading the Metadata folder to IPFS.

Metadata deployment options:

  1. IPFS Deployment:

    • Use IPFS CLI tools for manual deployment
    • Pros: Fully decentralized, permanent storage
    • Cons: More complex deployment process
  2. Pinata Deployment (Recommended):

    • Visit Pinata
    • Register and upload folders
    • Pros: User-friendly, provides stable IPFS gateway
    • Cons: May require paid subscription

Important: Ensure all files are uploaded to IPFS before deploying the smart contract, as the Base URI cannot be modified after contract deployment.