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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@binance/pay

v2.0.0

Published

Official Binance Pay Connector - A lightweight library that provides a convenient interface to Binance's Pay REST API.

Downloads

181

Readme

Binance JavaScript Pay Connector

Open Issues Code Style: Prettier npm version npm Downloads Node.js Version Known Vulnerabilities License: MIT

This is a client library for the Binance Pay API, enabling developers to interact programmatically with Binance's Pay trading platform. The library provides tools to query transaction history through the REST API:

Table of Contents

Supported Features

  • REST API Endpoints:
    • /sapi/v1/pay/*
  • Inclusion of test cases and examples for quick onboarding.

Installation

To use this library, ensure your environment is running Node.js version 22.12.0 or later. If you're using nvm (Node Version Manager), you can set the correct version as follows:

nvm install 22.12.0
nvm use 22.12.0

Then install the library using npm:

npm install @binance/pay

Documentation

For detailed information, refer to the Binance API Documentation.

REST APIs

All REST API endpoints are available through the rest-api module. Note that some endpoints require authentication using your Binance API credentials.

import { Pay, PayRestAPI } from '@binance/pay';

const configurationRestAPI = {
    apiKey: 'your-api-key',
    apiSecret: 'your-api-secret',
};
const client = new Pay({ configurationRestAPI });

client.restAPI
    .getPayTradeHistory()
    .then((res) => res.data())
    .then((data: PayRestAPI.GetPayTradeHistoryResponse) => console.log(data))
    .catch((err) => console.error(err));

More examples can be found in the examples/rest-api folder.

Configuration Options

The REST API supports the following advanced configuration options:

  • timeout: Timeout for requests in milliseconds (default: 1000 ms).
  • proxy: Proxy configuration:
    • host: Proxy server hostname.
    • port: Proxy server port.
    • protocol: Proxy protocol (http or https).
    • auth: Proxy authentication credentials:
      • username: Proxy username.
      • password: Proxy password.
  • keepAlive: Enable HTTP keep-alive (default: true).
  • compression: Enable response compression (default: true).
  • retries: Number of retry attempts for failed requests (default: 3).
  • backoff: Delay in milliseconds between retries (default: 1000 ms).
  • httpsAgent: Custom HTTPS agent for advanced TLS configuration.
  • privateKey: RSA or ED25519 private key for authentication.
  • privateKeyPassphrase: Passphrase for the private key, if encrypted.
Timeout

You can configure a timeout for requests in milliseconds. If the request exceeds the specified timeout, it will be aborted. See the Timeout example for detailed usage.

Proxy

The REST API supports HTTP/HTTPS proxy configurations. See the Proxy example for detailed usage.

Keep-Alive

Enable HTTP keep-alive for persistent connections. See the Keep-Alive example for detailed usage.

Compression

Enable or disable response compression. See the Compression example for detailed usage.

Retries

Configure the number of retry attempts and delay in milliseconds between retries for failed requests. See the Retries example for detailed usage.

HTTPS Agent

Customize the HTTPS agent for advanced TLS configurations. See the HTTPS Agent example for detailed usage.

Key Pair Based Authentication

The REST API supports key pair-based authentication for secure communication. You can use RSA or ED25519 keys for signing requests. See the Key Pair Based Authentication example for detailed usage.

Certificate Pinning

To enhance security, you can use certificate pinning with the httpsAgent option in the configuration. This ensures the client only communicates with servers using specific certificates. See the Certificate Pinning example for detailed usage.

Error Handling

The REST API provides detailed error types to help you handle issues effectively:

  • ConnectorClientError: General client error.
  • RequiredError: Thrown when a required parameter is missing.
  • UnauthorizedError: Indicates missing or invalid authentication credentials.
  • ForbiddenError: Access to the requested resource is forbidden.
  • TooManyRequestsError: Rate limit exceeded.
  • RateLimitBanError: IP address banned for exceeding rate limits.
  • ServerError: Internal server error.
  • NetworkError: Issues with network connectivity.
  • NotFoundError: Resource not found.
  • BadRequestError: Invalid request.

See the Error Handling example for detailed usage.

If basePath is not provided, it defaults to https://api.binance.com.

Testing

To run the tests:

npm install

npm run test

The tests cover:

  • REST API endpoints
  • Error handling and edge cases

Migration Guide

If you are upgrading to the new modularized structure, refer to the Migration Guide for detailed steps.

Contributing

Contributions are welcome!

Since this repository contains auto-generated code, we encourage you to start by opening a GitHub issue to discuss your ideas or suggest improvements. This helps ensure that changes align with the project's goals and auto-generation processes.

To contribute:

  1. Open a GitHub issue describing your suggestion or the bug you've identified.
  2. If it's determined that changes are necessary, the maintainers will merge the changes into the main branch.

Please ensure that all tests pass if you're making a direct contribution. Submit a pull request only after discussing and confirming the change.

Thank you for your contributions!

Licence

This project is licensed under the MIT License. See the LICENCE file for details.