diff --git a/poloniex/__init__.py b/poloniex/__init__.py index 116f601f..ba3e6e38 100644 --- a/poloniex/__init__.py +++ b/poloniex/__init__.py @@ -357,9 +357,12 @@ def returnChartData(self, currencyPair, period=False, 'end': str(end) }) - def returnCurrencies(self): + def returnCurrencies(self, includeMultiChainCurrencies=False): """ Returns information about all currencies. """ - return self.__call__('returnCurrencies') + includeMulti = "false" + if includeMultiChainCurrencies == True: + includeMulti = "true" + return self.__call__('returnCurrencies', {"includeMultiChainCurrencies" : includeMulti}) def returnLoanOrders(self, currency): """ Returns the list of loan offers and demands for a given currency,