> ## Documentation Index
> Fetch the complete documentation index at: https://crossmint-wallets-docs-2-5.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Select Payment Options

> Customize the payment methods available to users

## Payment methods supported

<CardGroup cols={3}>
  <Card title="Debit & Credit cards" icon="credit-card" iconType="duotone" color="1F2BAD" />

  <Card title="Apple & Google Pay" icon="mobile" iconType="duotone" color="222422" />

  <Card title="Cross-chain crypto" icon="coins" iconType="duotone" color="#E6DB63" />
</CardGroup>

<Note>
  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.
</Note>

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

## 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.

<CodeGroup>
  ```jsx React theme={null}
  <CrossmintPayButton
      // other props removed for brevity
      checkoutProps={{
          paymentMethods: ["ETH", "fiat"],
      }}
  />
  ```
</CodeGroup>

<br />
