Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bitpay-nodejs

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitpay-nodejs

A Node.js library for the Bitpay Bitcoin API

  • 0.0.7
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

Bitpay - Bitcoin Payment Library for Node.js

I want a simple way to use the Bitpay Bitcoin API in node.js, and npm -- Node Package Manager -- is the standard way to distribute javascript libraries for Node.js.

Like other HTTP client libraries a Client object will manage authentication and connection to Bitpay's servers. All requests to the API will ultimately be made using the Client object initialized with the Bitpay account credentials.

Installation

npm install bitpay-node

Example Usage

Initialzing a Client object with Bitpay Api Key
var Bitpay = require('bitpay-node');

var client = new Bitpay.Client({ apiKey: process.env.BITPAY_API_KEY });
Creating an Invoice
var invoiceOptions = { 
  price: 0.001, 
  currency: 'BTC' 
}; 

client.createInvoice(invoiceOptions, function(err, invoice) {
  console.log(invoice);
})

The call to createInvoice above should produce a JSON response as per the official Bitpay API documenation

{ id: '2Rpei3aKcJZUDWDSJ92oSq',
  url: 'https://bitpay.com/invoice?id=2Rpei3aKcJZUDWDSJ92oSq',
  status: 'new',
  btcPrice: '0.0010',
  price: 0.001,
  currency: 'BTC',
  invoiceTime: 1390253166402,
  expirationTime: 1390254066402,
  currentTime: 1390253166452 }
Retrieving an Invoice with Status

Once an invoice has been created a call can be made to get its info and status.

client.getInvoice('2Rpei3aKcJZUDWDSJ92oSq', function(err, invoice) {
  console.log(invoice);
});

Which will return the same structure as the call to createInvoice, except now the status may have transitioned to either paid, confirmed, complete, expired or invalid.

Tests

Run the tests wiith Mocha, and make sure to specify your Bitpay API Key in environment. On the Bitpay account API keys page your can generate multiple API keys for your various applications. Enable API key access and generate a key to use in the tests:

BITPAY_API_KEY=46beb6dc657d4ceff4219a8e691b5015 mocha test/

Keywords

FAQs

Package last updated on 23 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc