Skip to content

hellopaywaz/paywaz-sdk-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

254 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Paywaz JavaScript SDK (Preview)

npm version build status license

Links

The Paywaz JavaScript SDK provides an easy way to integrate zero-fee, crypto-native payment processing into your website, ecommerce platform, POS, or enterprise application.

SDK is in pre-release mode.
Interfaces, request structures, and endpoints are subject to change as Paywaz approaches public launch.

Paywaz-Version: 2025-01-01


Features (Preview)

  • Initialize payments with one function
  • Non-custodial wallet support
  • Auto-convert tokens to hedged stablecoins
  • Built-in signature validation
  • Lightweight client-side & server-side compatibility
  • Designed for high-scale environments (Solana Mainnet)

Examples

Payments (Runnable)

Webhooks (Runnable)


Quick Start

Note: This example uses top-level await (Node 18+/20+ with ESM). If you’re using CommonJS, wrap it in an async function.

import { PaywazClient, webhooks } from "@paywaz/sdk";

const client = new PaywazClient("YOUR_API_KEY", "2025-01-01"); // apiVersion optional

const payment = await client.payments.createPayment({
  amount: { currency: "USD", value: "49.99" },
});

console.log(payment);

About

JavaScript SDK (public preview) for integrating with Paywaz’s zero-fee payments platform.

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors