@loofta/pay-sdk
v1.0.5
Published
Loofta Pay Button SDK - embeddable payment button that opens Loofta Pay checkout
Maintainers
Readme
@loofta/pay-sdk
Embeddable Loofta Pay Button for React.
- Repository: github.com/loofta/loofta-pay-sdk
- Examples: examples/pay-button-demo
- Live demo: pay.loofta.xyz/b2b/demo The button opens Loofta’s hosted checkout — your customers pay there, and funds go to the destination wallet, network, and token configured in your organization.
Requirements
- Organization ID — You must have an organization set up with Loofta. Your destination wallet address, network, and token are configured in that organization.
- Don’t have an organization ID? Contact Loofta to get one.
Install
npm install @loofta/pay-sdk
# or
yarn add @loofta/pay-sdk
pnpm add @loofta/pay-sdkUsage
React
import { PayButton } from '@loofta/pay-sdk';
<PayButton
organizationId="your-org-id"
amount={100}
buttonText="Pay $100"
onSuccess={(paymentId) => {
console.log('Payment completed:', paymentId);
}}
/>You usually don’t need checkoutBaseUrl. The button opens Loofta’s checkout; if your app is on a different domain, the default URL is used. Only set checkoutBaseUrl if Loofta has given you a specific checkout URL.
Props
| Prop | Type | Description |
|------|------|-------------|
| organizationId | string | Required. Your Loofta organization ID. Destination wallet, network, and token are set in your organization. Don’t have one? Contact Loofta. |
| amount | number \| string | Optional payment amount (USD). |
| checkoutBaseUrl | string | Optional. URL of the Loofta Pay checkout page. Only set if the button is on a different domain and you need to point to a specific Loofta checkout URL; otherwise omit. |
| buttonBgColor | string | Optional button background (CSS color). |
| pageBgColor | string | Optional checkout page background. |
| callbackUrl | string | Optional URL to redirect after payment. |
| onSuccess | (paymentId: string) => void | Called when payment completes (popup mode). |
| buttonText | string | Button label (default: "Pay with Loofta"). |
| successText | string | Text after success (default: "Paid Successfully"). |
| openMode | 'popup' \| 'redirect' \| 'tab' | How to open checkout (default: popup). |
| disabled | boolean | Disable the button. |
| className | string | Optional CSS class. |
How it works
- User clicks the button on your site.
- Loofta’s hosted checkout opens (popup, new tab, or redirect).
- User pays with the token/network they choose; funds are sent to your organization’s configured destination wallet, network, and token.
- You get the outcome via
onSuccessand/orcallbackUrl.
Embed code helpers
import { generateEmbedCode, generateScriptEmbed } from '@loofta/pay-sdk';
const reactSnippet = generateEmbedCode({
organizationId: 'your-org-id',
amount: 100,
});
const scriptSnippet = generateScriptEmbed({
organizationId: 'your-org-id',
amount: 100,
});Build
cd packages/loofta-pay-sdk
npm install
npm run buildOutput: dist/ (ESM, CJS, and types).
Publish to npm
Build the package
cd packages/loofta-pay-sdk npm install npm run buildLog in to npm (create an account at npmjs.com if needed)
npm loginEnter your npm username, password, and email when prompted.
Publish
npm publishScoped packages like
@loofta/pay-sdkusepublishConfig.access: "public"in package.json, so you don’t need--access publiceach time.Later releases: bump
versioninpackage.json, runnpm run build, thennpm publishagain.
License
MIT
