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

bitfinex

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitfinex - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

16

lib/bitfinex.js

@@ -263,3 +263,17 @@ // Generated by CoffeeScript 1.8.0

Bitfinex.prototype.past_trades = function(symbol, options, cb) {
Bitfinex.prototype.past_trades = function(symbol, timestamp, limit_trades, cb) {
var params;
params = {
symbol: symbol,
timestamp: timestamp
};
if (typeof limit_trades === 'function') {
cb = limit_trades;
} else {
params['limit_trades'] = limit_trades;
}
return this.make_request('mytrades', params, cb);
};
Bitfinex.prototype.mytrades = function(symbol, options, cb) {
var err, option, params, value;

@@ -266,0 +280,0 @@ params = {

2

package.json
{
"name": "bitfinex",
"version": "0.4.0",
"version": "0.4.1",
"gypfile": true,

@@ -5,0 +5,0 @@ "scripts": {

@@ -67,5 +67,13 @@ This is a node.js wrapper for the Bitfinex [API](https://bitfinex.com/pages/api).

<<<<<<< HEAD
<<<<<<< HEAD
`movements(currency, [options,] cb)`
`past_trades(symbol, [options,] cb)`
=======
`past_trades(symbol, timestamp, limit_trades, cb)`
>>>>>>> parent of 704f10d... Merge pull request #16 from dutu/master
=======
`past_trades(symbol, timestamp, limit_trades, cb)`
>>>>>>> parent of 704f10d... Merge pull request #16 from dutu/master

@@ -72,0 +80,0 @@ `new_offer(currency, amount, rate, period, direction, insurance_option, cb)`

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