1.0.1 • Published 10 years ago

xrp-to-dogecoin-price v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
10 years ago

XRP to Dogecoin Price

For use on the Ripple network to create a market from XRP to Dogecoins

Cryptsy and Ripple Charts are used to calculate the exchange rates

Installation

npm install --save xrp-to-dogecoin-price

Usage

var PriceFinder = require('xrp-to-dogecoin-price'); 
var priceFinder = new PriceFinder();

priceFinder.convert({
  xrp: 10000
})  
.then(function(conversion) {
  console.log(conversion);
})