Payment methods supported

Buyers can purchase NFTs with any cryptocurrency. For example, they can pay for an Optimism NFT with mainnet ETH. This is done real time without bridging and lower gas fees.

You will be paid in the currency expected by your registered mint function, regardless of how the buyer pays.

Choose Payment Methods

The default configuration includes all payment options (fiat ETH SOL). To customize it, add the checkoutProps attribute to the CrossmintPayButton and include the payment methods you want to enable.

<CrossmintPayButton
    // other props removed for brevity
    checkoutProps={{
        paymentMethods: ["ETH", "fiat"],
    }}
/>