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.0.4 to 0.0.5

32

bitfinex.js

@@ -68,2 +68,34 @@ // Generated by CoffeeScript 1.6.3

Bitfinex.prototype.ticker = function(symbol, cb) {
return this.make_public_request('ticker/' + symbol, cb);
};
Bitfinex.prototype.today = function(symbol, cb) {
return this.make_public_request('today/' + symbol, cb);
};
Bitfinex.prototype.candles = function(symbol, cb) {
return this.make_public_request('candles/' + symbol, cb);
};
Bitfinex.prototype.lendbook = function(currency, cb) {
return this.make_public_request('lendbook/' + currency, cb);
};
Bitfinex.prototype.orderbook = function(symbol, cb) {
return this.make_public_request('candles/' + symbol, cb);
};
Bitfinex.prototype.trades = function(symbol, cb) {
return this.make_public_request('trades/' + symbol, cb);
};
Bitfinex.prototype.lends = function(currency, cb) {
return this.make_public_request('lends/' + currency, cb);
};
Bitfinex.prototype.get_symbols = function(cb) {
return this.make_public_request('symbols', cb);
};
Bitfinex.prototype.new_order = function(symbol, amount, price, exchange, side, type, is_hidden, cb) {

@@ -70,0 +102,0 @@ var params;

2

package.json
{
"name": "bitfinex",
"version": "0.0.4",
"version": "0.0.5",
"gypfile": true,

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

Sorry, the diff of this file is not supported yet

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