diff --git a/exchange/Poloniex.js b/exchange/Poloniex.js index abb7c34..e130553 100644 --- a/exchange/Poloniex.js +++ b/exchange/Poloniex.js @@ -25,6 +25,8 @@ const CRYPTO_CURRENCY_PAIRS = [ 'BTC_SJCX', // Storjcoin X 'BTC_SC', // SiaCoin 'BTC_GNT', // Golem tokens + 'BTC_NXT', // Nxt + 'BTC_STRAT' // Stratis ]; const BASE_URL = 'https://poloniex.com/public'; diff --git a/utils/prices.js b/utils/prices.js index e668c20..fea2dc5 100644 --- a/utils/prices.js +++ b/utils/prices.js @@ -137,6 +137,18 @@ const cryptoCurrencyMap = { pair: 'BTC_GNT', intermediateCurrency: 'BTC' }, + NXT: { + exchange: 'poloniex', + hasNativeCurrency: false, + pair: 'BTC_NXT', + intermediateCurrency: 'BTC' + }, + STRAT: { + exchange: 'poloniex', + hasNativeCurrency: false, + pair: 'BTC_STRAT', + intermediateCurrency: 'BTC' + } }; export { cryptoCurrencyMap };