marketplacesolanacandy-machine

How to sale Solana NFT which has minted with my own contract?


I have minted NFTS with my own contract on Solana blockchain. I am going to sell these NFTS on Marketplace but marketplaces need candy machine addresses or hash-list. I have no candy machine address and have no idea about the hash-list. I need sincere help from the smart developers of Solana.


Solution

  • You do not need the Candy Machine in order to sell or verify your collection on other marketplaces. You're misunderstanding the verification forms.

    On Magic Eden verification you can just say "no" and provide the hash list, and this works the same on other marketplaces.

    enter image description here

    Now for your second question, the Hash List is the list of mint addresses of the NFTs, their addresses on the blockchain. The Candy Machine keeps the hash list on-chain that's why they ask if you have it, so they can get the list from there, but it is optional.

    If you minted your NFTs yourself then you must have the mint addresses somewhere, or you can get it from your own wallet account.

    You have to create a file with the NFTs mint addresses, like this one. The file format might change depending on the Marketplace.

    [
            "MINT HASH",
            "MINT HASH",
            "MINT HASH"
    ]