@iofate/react-coinbase-commerce
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

React Coinbase Commerce

Node.js CI

A totally rewritten version of https://github.com/coinbase/react-coinbase-commerce in Typescript maintained by IOfate.

A button to embed a Coinbase Commerce checkout or charge directly into your React application.

npm i -S @iofate/react-coinbase-commerce

Table of Contents

Usage

import { CoinbaseCommerceButton } from '@iofate/react-coinbase-commerce';
import '@iofate/react-coinbase-commerce/esm/index.css';

const App = () => {
  return (
    <CoinbaseCommerceButton checkoutId={'My checkout ID'}/>
  )
};

Getting Started

  1. To start accepting digital currency payments, first register for a Coinbase Commerce account here.
  2. Whitelist your domain in Settings.
  3. Follow the API Documentation here to create a charge or checkout.
    • Alternatively, create a checkout from the merchant dashboard and copy the ID found in the checkout's details.
  4. Pass the ID of the charge or checkout you create to the CoinbaseCommerceButton component
  5. That's it! You're ready to start accepting digital currency payments with Coinbase Commerce

Docs

Props

In addition to the regular button props, this component accepts some custom props:

Prop Name default required type
styled false no boolean
checkoutId null If no chargeId, yes string
chargeId null If no checkoutId, yes string
onLoad null no ()=>void
onChargeSuccess null no (MessageData)=>void
onChargeFailure null no (MessageData)=>void
onPaymentDetected null no (MessageData)=>void
onModalClosed null no ()=>void
disableCaching false no boolean
customMetadata null no string

Warning: If disableCaching is set to true, users that accidentally close their payment windows will be unable to see their transaction's status upon reopening.

Package Sidebar

Install

npm i @iofate/react-coinbase-commerce

Weekly Downloads

28

Version

1.0.0

License

MIT

Unpacked Size

84 kB

Total Files

38

Last publish

Collaborators

  • johann-s