This package has been deprecated

Author message:

This package has been deprecated in favor of @blockbee/api. Please install it using 'npm install @blockbee/api' command.

@blockbee/checkout

1.0.0 • Public • Published

BlockBee's Checkout NodeJS Library

NodeJS's implementation of BlockBee's Checkout payment gateway

Install

npm install @blockbee/checkout

Usage

Importing in your project file

var BlockBee = require('@blockbee/checkout')

Requesting Payment

const bb = new BlockBee(apiKey, params, blockbeeParams)

const address = await bb.paymentRequest(redirectUrl, value)

Where:

  • api_key is the API Key provided by our Dashboard.
  • params is any parameter you wish to send to identify the payment, such as {order_id: 1234}.
  • bb_params parameters that will be passed to BlockBee _(check which extra parameters are available here: https://docs.blockbee.io/#operation/create).
  • redirect_url URL in your platform, where the user will be redirected to following the payment. Should be able to process the payment using the success_token.
  • value amount in currency set in Payment Settings you want to receive from the user.

Getting notified when the user completes the Payment

When receiving payments, you have the option to receive them in either the notify_url or the redirect_url, but adding the redirect_url is required (refer to our documentation at https://docs.blockbee.io/#operation/paymentipn).

Requesting Deposit

const bb = new BlockBee(apiKey, params, blockbeeParams)

const address = await bb.depositRequest(notifyUrl)

Help

Need help?
Contact us @ https://blockbee.io/contacts/

Changelog

1.0.0

  • Initial Release

Package Sidebar

Install

npm i @blockbee/checkout

Homepage

blockbee.io/

Weekly Downloads

3

Version

1.0.0

License

MIT

Unpacked Size

8.11 kB

Total Files

5

Last publish

Collaborators

  • blockbee-io
  • traveler01