Import

import { useCheckoutModal } from '@0xsequence/checkout'

Usage

import { useCheckoutModal } from '@0xsequence/checkout'
import { ChainId } from '@0xsequence/network'

function App() {
  const { address } = useAccount()
  const { triggerCheckout } = useCheckoutModal()
  
  const handleCheckout = () => {
    // NFT purchase settings
    const chainId = ChainId.POLYGON
    const orderbookAddress = '0xB537a160472183f2150d42EB1c3DD6684A55f74c'
    const nftQuantity = '1'
    const orderId = 'your-order-id'
    const tokenContractAddress = '0xabcdef...' // NFT contract address
    const tokenId = '123' // NFT token ID

    triggerCheckout({
      creditCardCheckout: {
        chainId,
        contractAddress: orderbookAddress,
        recipientAddress: address || '',
        currencyQuantity: '100000',
        currencySymbol: 'USDC',
        currencyAddress: '0x3c499c542cef5e3811e1192ce70d8cc03d5c3359',
        currencyDecimals: '6',
        nftId: tokenId,
        nftAddress: tokenContractAddress,
        nftQuantity,
        approvedSpenderAddress: orderbookAddress,
        calldata: "0x...",
        onSuccess: (txHash) => console.log('Success!', txHash)
      },
      orderSummaryItems: [
        {
          title: 'NFT #' + tokenId,
          subtitle: 'Your Collection',
          imageUrl: 'https://example.com/nft.png'
        }
      ]
    })
  }
  
  return (
    <button onClick={handleCheckout}>
      Checkout
    </button>
  )
}

Return Type: UseCheckoutModalReturnType

The hook returns an object with the following properties:

type UseCheckoutModalReturnType = {
  triggerCheckout: (settings: CheckoutSettings) => void
  closeCheckout: () => void
  settings: CheckoutSettings | undefined
}

Properties

triggerCheckout

(settings: CheckoutSettings) => void

Opens the Checkout modal with the specified parameters.

Parameters:

The settings object can include the following properties:

PropertyTypeDescription
creditCardCheckoutobjectSettings for credit card checkout flow
orderSummaryItemsarrayItems to display in the order summary

The creditCardCheckout object includes:

ParameterTypeDescription
chainIdnumberThe blockchain network ID
contractAddressstringThe address of the contract to interact with
recipientAddressstringThe address to receive the purchased item
currencyQuantitystringThe quantity of currency to use for payment
currencySymbolstringThe symbol of the currency (e.g., ‘USDC’)
currencyAddressstringThe address of the currency token contract
currencyDecimalsstringThe number of decimals for the currency
nftIdstringThe ID of the NFT being purchased
nftAddressstringThe address of the NFT contract
nftQuantitystringThe quantity of NFTs to purchase
approvedSpenderAddressstringThe address allowed to spend tokens
calldatastringThe encoded function call data for the transaction
onSuccess(txHash: string) => voidCallback when transaction succeeds

The orderSummaryItems array contains objects with:

ParameterTypeDescription
titlestringThe title of the item
subtitlestringThe subtitle of the item
imageUrlstringURL of the item’s image

closeCheckout

() => void

Closes the Checkout modal.

settings

CheckoutSettings | undefined

The current settings configuration for the Checkout modal.

Notes

This hook provides methods to control the Checkout modal that allows users to complete purchases using various payment methods. Checkout supports credit card payments and crypto payments for purchasing digital assets.