Thirdweb Logo

NFT Collection


Mint NFTs directly into an NFT Collection!

Check out the documentation here.

Loading...


How It Works

export default function NFTCollection() {
const { program } = useProgram(programAddress, "nft-collection");
const nfts = useNFTs(program);
return (
<div>
{nfts.data?.map((nft) => (
<div key={nft.id.toString()}>
<img src={nft.image} />
<h3>{nft.name}</h3>
</div>
))}
</div>
);
}