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-native-sdk

v0.1.0

Published

Official React Native SDK for IvoryPay — accept crypto and fiat payments with a single integration.

Readme

@ivorypay/react-native-sdk

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


Installation

yarn add @ivorypay/react-native-sdk

For the WebView checkout mode, also install:

yarn add react-native-webview
cd ios && pod install

Setup

Call IvoryPay.initialize once at app startup with your public key (pk_test_... or pk_live_...).

// App.tsx
import { IvoryPay } from '@ivorypay/react-native-sdk';

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

export default function App() {
  return <RootNavigator />;
}

Public key only. Never use your secret key in a mobile app.


Two checkout modes

1. Custom UI (IvoryPayCheckout)

A fully native React Native component that handles the complete payment lifecycle:

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

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

Fiat example

<IvoryPayCheckout
  request={{
    amount: 10000,
    email: '[email protected]',
    type: 'FIAT',
    baseFiat: 'NGN',
  }}
  onSuccess={() => navigation.replace('SuccessScreen')}
  onError={(msg) => Alert.alert('Error', msg)}
/>

2. WebView checkout (IvoryPayWebViewCheckout)

Wraps the IvoryPay hosted checkout page in a WebView. Use this if you prefer the hosted UI.

First, initiate the transaction to get the checkoutUrl:

import { IvoryPay, IvoryPayWebViewCheckout } from '@ivorypay/react-native-sdk';

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

  navigation.navigate('WebViewCheckout', {
    checkoutUrl: tx.collectionDetails.checkoutUrl!,
  });
}

function WebViewCheckoutScreen({ route }) {
  return (
    <IvoryPayWebViewCheckout
      checkoutUrl={route.params.checkoutUrl}
      onSuccess={() => navigation.replace('SuccessScreen')}
      onFailed={() => navigation.goBack()}
      onClosed={() => navigation.goBack()}
    />
  );
}

The checkout page communicates back via window.ReactNativeWebView.postMessage with events:

  • payment.success
  • payment.failed
  • payment.closed

Manual API usage

You can also call the API directly without any UI component:

Initiate a transaction

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
console.log(tx.amountInCrypto);            // exact crypto amount
console.log(tx.expiresAt);                 // expiry timestamp

Verify a transaction

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

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