3. Prepare for launch
Make sure you are ready for production with our launch checklist
Default Transaction Limit
The default transaction limit is $1,500. If your mint price is higher than this, please Contact Support
1. Register your collection in our production developer console
Crossmint has two developer consoles. Whenever possible you should begin using the staging environment to test everything out end to end. Then, when staging is working perfectly create an identical collection in production and point it toward a mainnet smart contract or candy machine.
Staging Developer Console
Production Developer Console
Make sure you're using all the Mainnet details for your drop. Use the production projectId
and collectionId
values and update these attributes in your <CrossmintPayButton>
component with the production values.
Create a Developer Account Guide
2. Make sure your account is verified
You must complete KYC to enable credit card payments in production. In most cases, verification is instantaneous. In very rare cases, we'll reach out to you via email to request additional information.
Tips for KYC verification
Our KYC flow only requires a valid government ID and three live selfie photos. You'll begin by taking photos of the front and back of your government ID card.
- Ensure the photos are taken in a well lit room
- Minimize glare since the surface is often shiny and reflective
- Retake the photo if necessary
When taking the selfie photos you should:
- Ensure the room is well lit
- Remove any eyewear before taking selfies
- Pull long hair behind ears to avoid obscuring your face
If you are not auto approved your submission will need to be reviewed manually by actual humans. Please be patient and expect up to 24 hours for this process to be completed.
Complete KYC Early
You can complete KYC and verify your account as soon as you create it. Take care of this before you need to go live with your launch. You'll have plenty of other things that need your attention on launch day.
3. Ensure that your collection has a photo URL
In the <CrossmintPayButton>
component make sure that the collectionPhoto
attribute is set to a URL of an image of your collection. Here's an example using our React SDK.

Add a collection image URL so your checkout popup has a related image.
Your image will appear in the payment popup and look something similar to the following:

4. Complete the collection verification at least 48 hours before launch
Go to the detail view for your collection in the production environment and you'll see the verification status in the left hand navigation:

Click the "Start Verification" button to share details about your project including website, social media accounts, etc. This step is critical and you must have the information submitted to begin accepting payments.
5. Default max transaction limit is $1500
All projects have a default max transaction limit in place. This limit is per purchase, which means that if your NFT price exceeds the limit you'll need to request this limit be raised for your project. To speed the process please submit this typeform with details about your project to be considered for a limit raise.
https://crossmint.typeform.com/limit-raise-req
Please note that we typically do NOT raise the limit merely to support multiple NFTs in one transaction. For example, if your NFT price is $1000 we are unlikely to approve an increase to $2000.
6. Add the environment="production"
property to the button
environment="production"
property to the buttonWhile you're testing your drop you have to add the environment="staging"
attribute to your button. Ensure that you remove this property or set it equal to environment="production"
so that it works in production.
<CrossmintPayButton
projectId="_YOUR_PROJECT_ID_"
collectionId="_YOUR_COLLECTION_ID_"
mintConfig={{
quantity: "1",
totalPrice: "0.25"
// your custom minting arguments...
}}
environment="production"
/>
<crossmint-pay-button
projectId="_YOUR_PROJECT_ID_"
collectionId="_YOUR_COLLECTION_ID_"
mintConfig='{
"quantity": "1",
"totalPrice": "0.25"
// your custom minting arguments...
}'
environment="production"
/>
7. Test the button to ensure the checkout loads properly
After setting up everything for production, click through the button and make sure the popup is correctly appearing without any errors.
Updated 4 months ago