npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ivorypay/react-sdk

v0.1.0

Published

Official React SDK for IvoryPay — accept crypto and fiat payments in your React web app.

Readme

@ivorypay/react-sdk

Official React SDK for IvoryPay — accept crypto and fiat payments in your React web app.


Installation

yarn add @ivorypay/react-sdk

Setup

Call IvoryPay.initialize once at app startup with your public key.

// main.tsx / index.tsx
import { IvoryPay } from '@ivorypay/react-sdk';

IvoryPay.initialize({ publicKey: 'pk_test_xxxxxxxxxxxxxxxx' });

Public key only. Never use your secret key (sk_...) in a browser app.


Two checkout modes

1. Custom UI (IvoryPayCheckout)

A self-contained React component that handles the full payment lifecycle:

  • Calls the API to initiate the transaction
  • Renders wallet address + copy button (crypto) or bank details (fiat)
  • Polls for confirmation every 5 seconds
  • Handles success / expired / failed states automatically
import { IvoryPayCheckout } from '@ivorypay/react-sdk';

function PaymentPage() {
  return (
    <IvoryPayCheckout
      request={{
        amount: 5000,
        email: '[email protected]',
        firstName: 'John',
        lastName: 'Doe',
        type: 'CRYPTO',
        baseFiat: 'NGN',
        crypto: 'USDT',
        chain: 'BSC_MAINNET',
      }}
      onSuccess={() => router.push('/success')}
      onError={(msg) => console.error(msg)}
      onClose={() => router.back()}
    />
  );
}

Fiat example

<IvoryPayCheckout
  request={{
    amount: 10000,
    email: '[email protected]',
    type: 'FIAT',
    baseFiat: 'NGN',
  }}
  onSuccess={() => router.push('/success')}
  onError={(msg) => alert(msg)}
/>

2. Modal checkout (IvoryPayModal)

Renders the IvoryPay hosted checkout page inside an iframe modal overlay. Controlled by an open boolean.

import { useState } from 'react';
import { IvoryPay, IvoryPayModal } from '@ivorypay/react-sdk';

function ProductPage() {
  const [open, setOpen] = useState(false);
  const [checkoutUrl, setCheckoutUrl] = useState('');

  const handlePay = async () => {
    const tx = await IvoryPay.initiateTransaction({
      amount: 5000,
      email: '[email protected]',
      type: 'CRYPTO',
      baseFiat: 'NGN',
      crypto: 'USDT',
      chain: 'BSC_MAINNET',
    });
    setCheckoutUrl(tx.collectionDetails.checkoutUrl!);
    setOpen(true);
  };

  return (
    <>
      <button onClick={handlePay}>Pay Now</button>

      <IvoryPayModal
        checkoutUrl={checkoutUrl}
        open={open}
        onSuccess={() => { setOpen(false); router.push('/success'); }}
        onFailed={() => setOpen(false)}
        onClosed={() => setOpen(false)}
      />
    </>
  );
}

The modal listens for window.postMessage events from the checkout page:

  • { event: "payment.success" }onSuccess
  • { event: "payment.failed" }onFailed
  • { event: "payment.closed" }onClosed

The modal also closes when the user clicks the backdrop or presses Escape.


Manual API usage

// Initiate
const tx = await IvoryPay.initiateTransaction({
  amount: 5000,
  email: '[email protected]',
  type: 'CRYPTO',
  baseFiat: 'NGN',
  crypto: 'USDT',
  chain: 'BSC_MAINNET',
});

console.log(tx.collectionDetails.address);   // wallet address (crypto)
console.log(tx.collectionDetails.checkoutUrl); // hosted checkout URL

// Verify
const status = await IvoryPay.verifyTransaction(tx.reference);
// status.status: 'PENDING' | 'PROCESSING' | 'CONFIRMING' | 'SUCCESS' | 'FAILED' | 'EXPIRED'

Types

type TransactionType = 'CRYPTO' | 'FIAT';

type TransactionStatus =
  | 'PENDING'
  | 'PROCESSING'
  | 'CONFIRMING'
  | 'SUCCESS'
  | 'FAILED'
  | 'EXPIRED'
  | 'MISMATCH';

type SupportedToken = 'USDT' | 'USDC' | 'BTC' | 'ETH' | 'SOL';

type SupportedNetwork =
  | 'BSC_MAINNET'
  | 'BSC_TESTNET'
  | 'POLYGON'
  | 'SOLANA'
  | 'BITCOIN'
  | 'ETH'
  | 'TRON'
  | 'MATIC';

type SupportedFiatCurrency = 'NGN' | 'KES' | 'GHS' | 'ZAR' | 'USD';

Environments

| Key prefix | Environment | |-------------|-------------| | pk_test_ | Sandbox | | pk_live_ | Production |


License

MIT — see LICENSE