@moonpay/moonpay-js
v0.6.2
Published
The MoonPay javascript SDK enables you to integrate the MoonPay widget so you can facilitate crypto purchases within your platform.
Downloads
10,342
Maintainers
Keywords
Readme
@moonpay/moonpay-js
The MoonPay Web SDK enables you to integrate the MoonPay widget so you can facilitate crypto purchases within your platform.
Documentation
For detailed integration instructions and further documentation, please visit our Documentation Site.
Installation
To install the package, use npm or yarn:
npm install --save @moonpay/moonpay-js
or
yarn add @moonpay/moonpay-js
Prerequisites
Before using this package, make sure you have the following:
- An active MoonPay account.
- Your MoonPay API key.
Usage
- Import the
loadMoonPay
function.
import { loadMoonPay } from '@moonpay/moonpay-js';
- Call the
loadMoonPay
function to get the constructor for theMoonPayWebSdk
.
const moonPay = await loadMoonPay();
const widget = moonPay({
flow: 'buy',
environment: 'sandbox',
params: {
apiKey: 'pk_test_123',
},
variant: 'overlay',
});
- Call the
show
method on your instance
widget.show();