Comparing version 0.0.4 to 0.0.5
@@ -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; |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10626
182