This repository is for Candy Machine Core. It creates Metaplex Core Assets. Make sure that you are using this version!
Visible to the user:
You can use this repo to deploy your own candy machine UI.
- It supports multiple candy machine groups, but also just using a default group
- It creates a Lookup table for you to allow more active guards at the same time
- The initializer shows you the merkle root for your groups
- The users see NFTs left, start and end countdowns, reasons for not being able to mint and more
- Combining most of these guards is possible since we are lookup tables. For example using
allowlist,nftBurn,nftPayment,solPayment,startDateandendDate - For larger allowlists this UI will automatically split the mint into two transactions to avoid hitting the transaction size limit
- Dynamic Compute Unit calculation to have higher chances to get the mint included into a block
- Priority fees are added. Those are hardcoded to a very small number. As of 15 March 24 all the dynamic solutions are only possibly with specific RPC providers. If you want to have it dynamic you need to implement it yourself.
- It supports most of the existing guards:
addressGateallocationallowlistassetBurn- untested currently - test on devnet and provide feedback please!assetBurnMulti- untested currently - test on devnet and provide feedback please!assetMintLimit- untested currently - test on devnet and provide feedback please!assetPayment- untested currently - test on devnet and provide feedback please!assetPaymentMulti- untested currently - test on devnet and provide feedback please!edition- untested currently - test on devnet and provide feedback please!endDatefreezeSolPaymentfreezeTokenPaymentmintLimitnftBurnnftGatenftMintLimitnftPaymentredeemedAmountsolPaymentsolFixedFeestartDatetoken2022PaymenttokenBurntokenGatetokenPayment
- Multimint (can be deactivated by adding
NEXT_PUBLIC_MULTIMINT=falseto.env)
- pnpm as package manager - I used 8.1.0
- Your deployed candy machine. If you don't know how to deploy you might want to look into the Developer Hub or the inofficial
ts-sugarCLI. - Access to a RPC with DAS or Metaplex Aura
- Clone this repo
- Run
pnpm install - copy the
.env.examplefile to a new.envfile and fill in theNEXT_PUBLIC_CANDY_MACHINE_IDvalue. You should have this value after creating your candy machine. Also fillNEXT_PUBLIC_RPCto your RPC URL. It should support Metaplex DAS. - Run
pnpm run dev - Open your browser at
http://localhost:3000 - Connect your wallet which you used to create the candy machine
- You should see a red
Admin Menubutton. Click it and then clickcreate LUT - Copy the LUT address that you see in the green success box and paste it into the
.envfile as the value forNEXT_PUBLIC_LUT - Add your candy machine groups to the
settings.tsxfile. E.g. if one of your groups is calledWLyou should have an entry for it in there, too - Deploy your Candy Machine e.g. to Vercel or Cloudflare Pages
Done!
You can customize the UI by changing the code. If you just want to modify some values you can instead
- modify
settings.tsxto change the texts and Image.imageis the main image that is shown. You could change it to your project logo.headerTextis the website header. You could change it to your project name.
- Decide if you want to allow multiple mints by a single user at the same time and in your
.envfile setNEXT_PUBLIC_MULTIMINTaccordingly totrueorfalse. By default a maximum of 15 NFTs can be minted at the same time this is because of wallet limitations. If you want to have less changeNEXT_PUBLIC_MAXMINTAMOUNTin.env. - Change Priority fees if you want. By default it is set to the cheapest that is still considered to have priority fees. https://twitter.com/CloakdDev/status/1776661443330339285
This ui has a buy me a beer feature. Each mint will transfer a very small amount (0.005) of SOL to a tip wallet. If you do not want to support me feel free to change the NEXT_PUBLIC_BUYMARKBEER variable to false. I would appreciate it though if you leave it on. 🍻
- Add NFT Picker of
nftBurnandnftPaymentguards
If you need help with this repo, you can contact me. Also feel free to create an issue or a pull request.
If you want to work together on projects let me know!
This is not an official project by the Metaplex team. You can use that code at your own risk. I am not responsible for any losses that you might incur by using this code.
Thanks to the metaplex team for creating NFTs on Solana, Candy Machine and Umi. Special Thanks to @lorisleiva for creating Umi and being so helpful. Also thanks to @tonyboylehub !


