Bulk Lazy mint on Polygon

How to bulk Lazy mint on Polygon network and transfer them to another wallet address? We have tried few APIs but getting errors.
Is this possible to do this? If yes, can you provide exact APIs.

Are you using rarible plugin to do the lazy mint?

Lazy mint only stores the data on the server. Data is not written on blockchain during lazy mint. So you need to perform mint before transferring between wallets.

Thanks for the reply. Then how Open Sea does it? When we lazy minted, I can see tokens in polygon scan.

Did you add the tokens to sale after the lazy mint?
Can you share the contract address of your NFT’s from the polygon scan?

Sure. I will post contract address here later.

Do you know any method to bulk lazy mint NFTs on polygon network without any fee?

No. I am not aware of any method to perform bulk lazy mint.

Thanks.
Then is there a way to bulk mint(not lazy) on polygon network and list on open sea? How Moralis SDK can help on this?

You can call the contract mint function using moralis sdk. To do bulk mint you need to either modify the contract to call multiple mints or you need to call the mint functions multiple times from your app.

Check this tutorial on how to mint NFT using moralis.

Thanks. What will be the MATIC fee for minting 1000 NFT collection? and What will be the average MATIC fee per NFT ownership transfer?

The contract which I have is using 0.00028 matic for one mint (without any uri data) and 0.00015 matic for one transfer.

So for 1000 nft it will take 0.4 Matic which is less than a dollar for nft minting and transfer combined.

The gas fee will vary based on the amount of data you are writing on chain.

Thanks johnversus. You made my day!!!

Hi Johnversus,
could you please send me a sample contract for bulk minting on polygon that you have used?