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

shapeshift

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shapeshift

shapeshift.io api for node.js (unofficial)

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13
increased by18.18%
Maintainers
1
Weekly downloads
 
Created
Source

shapeshift

shapeshift.io api for node.js (unofficial)

What is shapeshift.io?

ShapeShift is an instant exchange for Litecoin, Bitcoin, Peercoin, Dogecoin, Darkcoin, and other cryptocoins. As a new service, it is the fastest way to trade between these digital currencies. An exchange between coins on ShapeShift takes only a few seconds, and no account is needed.

The benefit of this is that you could have a web site where a payout to a content provider is paid out in a different currency than what the consumer paid with. For example, Joe wants to be paid in Bitcoin, while Sally wants to pay in Litecoin.

Usage

Gets the current rate offered by Shapeshift.

var pair = 'btc_ltc';

shapeshift.getRate(pair)
	.then(function(data){
		var body = data.body;

		//{"pair":"btc_ltc","rate":"93.83852691"}
	};

Gets the current deposit limit set by Shapeshift.

var pair = 'btc_ltc';

shapeshift.getLimit(pair)
	.then(function(data){
		var body = data.body;

		//{"pair":"btc_ltc","limit":"1.98046131"}
	});

Pairs

btc, ltc, ppc, drk, doge

use an underscore to seperate currencies in a pair (ie: ltc_doge or doge_ltc)

API

http://shapeshift.io/api.html

License MIT

Keywords

FAQs

Package last updated on 26 Oct 2014

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