Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cometh/checkout-react

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cometh/checkout-react

Cometh Checkout SDK for React

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Connect Checkout SDK

Installing Checkout SDK
npm install @cometh/checkout-react

Basic Usage

  1. Initialize SDK
import {useCheckout} from '@cometh/checkout-react'

const {startCheckout, success, error} = useCheckout(apiKey)
  1. Start checkout flow
const request = {
    productId: 1,
    user: {
        walletAddress: '0x1234567890',
        email: 'test@email.com'
    }
}

await startCheckout(request)
  1. Handle Results
import {useEffect} from "react";

useEffect(() => {
    if (success) {
        console.log('checkout success', success)
    }
    if (error) {
        console.log('checkout error', error)
    }
}, [success, error]);

FAQs

Package last updated on 19 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc