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

tranzakt-react-sdk

v0.0.10

Published

Tranzakt Payment Gateway Reactjs SDK.

Readme

Tranzakt Payment Platform (TPP) React SDK

A React library for seamless integration with Tranzakt Payment Platform APIs. This SDK simplifies your integration by providing an intuitive interface for making API calls.

Installation

npm install --save tranzakt-react-sdk
# or
yarn add tranzakt-react-sdk

Quick Start

import { Tranzakt } from "tranzakt-react-sdk";

const tranzakt = new Tranzakt("your-public-key");

Core Features

1. Invoice Operations

Create Invoice

Creates a new payment invoice for a collection. Supports both fixed and variable amounts, multiple beneficiaries, and custom metadata for integration with your systems.

// Create a new invoice
const response = await tranzakt.createInvoice({
  // Required parameters
  collectionId: "37a71e2e-ed54-4e46-a3a9-47a211c352ea",
  payerEmail: "[email protected]",
  payerName: "John Doe",
  payerPhoneNumber: "07078955432",
  title: "Checkout Invoice",

  // Optional parameters (some may be required based on collection settings)
  amount: 40000, // Required if collection has no fixed amount
  invoiceBeneficiaries: [
    {
      linkedAccountId: "02VUJZW14MER86VWAFWDQGH92T",
      amount: 20000,
    },
  ], // Required if collection has no fixed beneficiaries
  callBackUrl: "https://your-callback-url.com/webhook",
  billerMetaData: {
    "order-id": "12345",
  },
});

if (response.success) {
  const invoice = response.data;
  console.log(`Payment URL: ${invoice.paymentUrl}`);
}

Response example:

{
  success: true,
  data: {
    id: "inv-001",
    title: "Checkout Invoice",
    collectionName: "Product Sales",
    payerName: "John Doe",
    payerEmail: "[email protected]",
    payerPhoneNumber: "07078955432",
    billerName: "Example Business",
    billerAddress: "123 Business St",
    billerEmail: "[email protected]",
    amount: 40000,
    serviceCharge: 400,
    vat: 0,
    totalAmount: 40400,
    invoiceStatus: "Unpaid",
    serviceFeePayer: "Payer",
    settlementFrequency: "Instant",
    type: "Live",
    paymentUrl: "https://pay.tranzakt.finance/inv-001",
    dateCreated: "2024-03-24T12:00:00Z",
    dateModified: "2024-03-24T12:00:00Z",
    paymentDate: "",
    paymentMethod: "Card",
    invoiceBeneficiaries: [
      {
        amount: "20000",
        linkedAccountId: "37a71e2e-ed54-4e46-a3a9-47a211c352ea",
        accountName: "Business Account",
        accountNumber: "1234567890",
        bankName: "Example Bank",
        businessName: "Example Business"
      }
    ],
    billerMetaData: {
      "order-id": "12345"
    },
    callBackUrl: "https://your-callback-url.com/webhook"
  },
  status: 201,
  message: "Invoice created successfully"
}

Error Handling

The SDK provides detailed error information when something goes wrong:

try {
  const invoice = await tranzakt.createInvoice(/* ... */);
} catch (error) {
  console.error(`${error.status}: ${error.message}`);
  console.error("Error type:", error.type);
  console.error("Details:", error.errors);
}

Common Error Scenarios:

  • 400: Invalid request (missing required fields, incorrect amounts)
  • 403: Permission denied (disabled collection, wrong API key type)
  • 412: Business validation failed (unverified beneficiary, missing collection owner)

Important Notes

When creating invoices:

  1. Don't specify amount if collection has fixed amount
  2. Must specify amount if collection has no fixed amount
  3. Don't specify beneficiaries if collection has fixed beneficiaries
  4. Must specify beneficiaries if collection has no fixed beneficiaries
  5. Collection owner must be included in beneficiaries
  6. All beneficiary accounts must be verified (KYB completed)

Support

License

MIT License - © TRANZAKT FINANCIAL SERVICES LIMITED