New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

remittance-maker

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remittance-maker

Module that connects to remittance providers in order to quote and execute remittance orders

  • 2.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-87.5%
Maintainers
1
Weekly downloads
 
Created
Source

remittance-maker

This module connects to exchanges in order to quote and execute remittances.

JavaScript Style Guide

Installation

npm install remittance-maker

Usage

var RemittanceMaker = require("remittance-maker").Maker  

var maker = new RemittanceMaker({})  

Primary functions

quote Remittance Fixed Source

Gives a quote for a remittance based on a fixed origin currency and amount

var options = {
  sourceCurrency: '',
  sourceAmount: ''
}

maker.quoteRemittanceFixedSource(options, function(err, res){

})  
quote Remittance Fixed Destination

Gives a quote for a remittance based on a fixed destination currency and amount

var options = {
  destinationCurrency: '',
  destinationAmount: ''
}

maker.quoteRemittanceFixedDestination(options, function(err, res){

})  
executeRemittance

Executes a remittance

var options = {
  sourceCurrency: '',
  sourceAmount: '',
  destinationCurrency: '',
  destinationAmunt: ''
}

maker.executeRemittance(options, function(err, res){

})      

To Do

Use nconf to handle configuration

Tips

Uno vende Btc con reverse_quotation type Ask Uno compra Btc con quotation type Bid

Uno sabe cuantos btcAmount necesita para lograr un totalFiat con quotation type Ask Uno sabe cuantos fiat necesita para lograr un btcAmount con reverse_quotation type Bid

flujo

Keywords

FAQs

Package last updated on 28 Nov 2016

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