Minting multiple NFTs at once

I’ve found like one tutorial showing how to create a minter dapp, and it only shows how to mint one NFT at a time. Would someone have an example on how to create a minter dapp that lets users mint like 10 NFTs at a time?

Thank you

2 Likes

you can create new entry function in the nft package that fit your requirement

2 Likes

or using programable tx to batch call minting function: Sui Programmable Transaction Blocks with the TS SDK | Sui Docs

3 Likes

Thank you, will check it out!