From dfec7f690804bf56c9da1775ffa84df899b3497c Mon Sep 17 00:00:00 2001 From: Filip la Gre Date: Fri, 6 Apr 2018 18:48:11 +0200 Subject: [PATCH] Update gdax.js --- exchanges/gdax.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/exchanges/gdax.js b/exchanges/gdax.js index 0d0ded91f..b539ef1fd 100644 --- a/exchanges/gdax.js +++ b/exchanges/gdax.js @@ -374,17 +374,20 @@ Trader.getCapabilities = function() { name: 'GDAX', slug: 'gdax', currencies: ['USD', 'EUR', 'GBP', 'BTC'], - assets: ['BTC', 'LTC', 'ETH'], + assets: ['BTC', 'LTC', 'ETH', 'BCH], markets: [ { pair: ['USD', 'BTC'], minimalOrder: { amount: 0.001, unit: 'asset' } }, { pair: ['USD', 'LTC'], minimalOrder: { amount: 0.1, unit: 'asset' } }, { pair: ['USD', 'ETH'], minimalOrder: { amount: 0.01, unit: 'asset' } }, + { pair: ['USD', 'BCH'], minimalOrder: { amount: 0.01, unit: 'asset' } }, { pair: ['EUR', 'BTC'], minimalOrder: { amount: 0.001, unit: 'asset' } }, { pair: ['EUR', 'ETH'], minimalOrder: { amount: 0.1, unit: 'asset' } }, { pair: ['EUR', 'LTC'], minimalOrder: { amount: 0.01, unit: 'asset' } }, + { pair: ['EUR', 'BCH'], minimalOrder: { amount: 0.1, unit: 'asset' } }, { pair: ['GBP', 'BTC'], minimalOrder: { amount: 0.001, unit: 'asset' } }, { pair: ['BTC', 'LTC'], minimalOrder: { amount: 0.1, unit: 'asset' } }, { pair: ['BTC', 'ETH'], minimalOrder: { amount: 0.01, unit: 'asset' } }, + { pair: ['BTC', 'BCH'], minimalOrder: { amount: 0.01, unit: 'asset' } }, ], requires: ['key', 'secret', 'passphrase'], providesHistory: 'date',