🍳Launch NFT

Enter the Launch interface, where you need to fill in the following key information.

Below, we will detail two critical parameters: Initial Price and Base URI.

Initial Price

Initial Price serves as the base pricing for the NFT. Flip implements an innovative dynamic pricing mechanism (bonding curve), where the NFT price automatically adjusts based on the minted quantity. The specific pricing formula is:

Where:

  • initialPrice: The base price you set for the NFT

  • supply: The current number of minted NFTs

  • maxSupply: The maximum total supply of NFTs

Price Curve Characteristics:

  1. Follows a parabolic trajectory

  2. Early minting stage: Lower price with a fast growth rate

  3. Later minting stage: Higher price with a slower growth rate

From the above curve consensus, we can conclude: when supply equals maxSupply, the price reaches its maximum, which is 2001 Γ— initialPrice.

For example, when initialPrice = 0.001 ETH and maxSupply = 10,000, the price ceiling approaches 2 ETH.

Base URI

Base URI defines the root path for accessing NFT metadata, determining how information for each NFT is retrieved. Flip is fully compatible with OpenSea’s metadata standardsarrow-up-right and supports contract-level metadataarrow-up-right.

In the smart contract, the Base URI is used to concatenate suffixes to retrieve information for individual NFTs and NFT collections. The implementation is as follows:

Thus, the rules for accessing NFT metadata are:

Single NFT Metadata describes the attributes of an individual NFT, such as name, description, image, etc. The file must follow the ERC-721 standard, with a basic format as follows:

Collection Metadata describes the attributes of the collection, such as name, symbol, description, image, banner image, etc. The file must follow the standard format, as shown below:

Once all parameters are defined, store the content in a publicly accessible link, such as decentralized storage like IPFS. The recommended storage structure is:

Note: When storing on decentralized storage like IPFS, first upload the images in the Images folder, then replace the image URLs in the metadata with the corresponding CIDs before uploading the Metadata folder.

Last updated