Solana-54.NFT Mint Sweet Spot

    -- Q54. Compare the mint price of popular Solana NFT collections to their resale price. -- Is there a ‘sweet spot’ for Solana NFT mint prices that fetch higher percentage returns on the secondary market? -- Do collections that cap the number of NFTs a wallet can mint have higher returns? -- Create a dashboard that discusses these points. Start using Magic Eden marketplace data. -- For grand prize eligibility: Consider all marketplaces and see if the “sweet spot” differs between marketplaces. -- Hints: Look at this analysis on Ethereum NFTs for inspiration. Use the “mints” field and join to the labels table -- to determine which collection an NFT belongs to. -- Replicate table #2 here for Magic Eden Solana NFT's: https://a16z.com/2022/03/31/nft-mint-data-early-decisions/

    Methodology

    • Find Mint Prices for each NFT from solana.fact_nft_mints
    • Join with solana.fact_nft_sales to get the sale price
    • Return = (s.sales_amount-m.mint_price)/m.mint_price
    • We only consider sales in SOL to compare apples to apple.
        WHEN mint_price <= 0.1 THEN '1. Less Than 0.10'
        WHEN mint_price > 0.10 and mint_price <= .50 THEN '2. 0.10-0.50'
        WHEN mint_price > 0.50 and mint_price <= 1.00 THEN '3. 0.50-1.00'
        WHEN mint_price > 1.00 and mint_price <= 5.00 THEN '4. 1.00-5.00'
        WHEN mint_price > 5.00 and mint_price <= 10.00 THEN '5. 5.00-10.00'
        WHEN mint_price > 10.00 and mint_price <= 50.00 THEN '6. 10.00-50.00'
        WHEN mint_price > 50.00 THEN '7. More than 50'
    
        WHEN sale_return <= 1 THEN '1. Less Than 1x'
        WHEN sale_return > 1 and sale_return <= 2 THEN '2. 1-2x Returns'
        WHEN sale_return > 2 and sale_return <= 5 THEN '3. 2-5x Returns'
        WHEN sale_return > 5 and sale_return <= 10 THEN '4. 5-10x Returns'
        WHEN sale_return > 10 THEN '5. More than 10x Returns'
    

    Definition

    • Sweet spot is defined as spot where we have the most number of sales on the secondary market and the return > 2X

    Is there a ‘sweet spot’ for Solana NFT mint prices that fetch higher percentage returns on the secondary market?

    • Looking at the chart the sweet spot for the most number of sales is when the mint price is less than 0.1 SOL and the returns are more than 10x for about 329K sales.
    • The other sweet spot is where the mint price is between 1.00-5.00 SOL and the return is 2-5x returns for 162k sales.
    Loading...
    Loading...

    Do collections that cap the number of NFTs a wallet can mint have higher returns?

    • The collection with the highest number of 10X returns is Dappie Gang and fractals

      • Dappie Gang is a collection of 6,666 Rabbit NFTs — unique rabbit GameFi characters with DeFi utilities in Solana blockchain. [1] https://gang.dappio.xyz/
      • 100k unique snowflakes floating around the metaverse. Fractals will come with benefits on the Fractal marketplace and within the community. In addition, it is our hope that fractals will give you special powers in your favorite blockchain-based games. We believe “cross-game” assets like these, that are truly yours, is the future of gaming. Together, we can unlock that future. [2] https://nft.fractal.is/
    • Looking at the information for both, Dappie Gang had a limit of 5 Mints Max, which supports the conclusion that yes, collections with a cap on the number of mints perform better.

    • Which makes sense, limiting number of mints mean, each wallet only have a certain number of NFTs, which means a whale cannot dump the market with number of NFTs.

    Loading...
    Loading...
    Loading...