In this template, we build a page where users can claim NFTs from the Edition Drop contract.
- Edition Drop: Create a collection of ERC-1155 NFTs and release them to users under claim conditions.
- React SDK: to enable users to connect their wallets with the useMetamask hook, and access hooks such as useNFTDrop to interact with the NFT drop contract.
- TypeScript SDK: to view the claimed supply, total supply, and mint NFTs from the drop.
To create your own version of this template, you can use the following steps:
Run this command from the terminal to clone this project:
npx thirdweb create --template edition-drop
Head to the dashboard and create your own Edition Drop contract.
You can learn how to do that with our guide Release an NFT drop on your own site without writing any code.
Be sure to configure a name, description, and image for your NFT drop in the dashboard.
You can fully customize the colors and style of this template by editing the values in the globals.css
file.
You can configure:
- The color of the background with
--background-color
- The color of the text with
--text-color
- The color of the button (is a gradient from primary to secondary color) with
--color-primary
and--color-secondary
- The font with
--font
- The border colors with
--border-color
Replace the value of the myEditionDropContractAddress
inside yourDetails.ts
with your Edition Drop contract address you can find in the dashboard.
Replace the value of the tokenId
inside yourDetails.ts
with your tokenId.
Inside _app.tsx
you can configure the network you want to use:
// This is the chain your dApp will work on.
const activeChain = "mumbai";
For any questions, suggestions, join our Discord at https://discord.gg/thirdweb.