We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63cb4e8 commit 26412a1Copy full SHA for 26412a1
src/ExchangeSharp/API/Exchanges/NDAX/ExchangeNDAXAPI.cs
@@ -30,7 +30,7 @@ public ExchangeNDAXAPI()
30
protected override async Task<IEnumerable<KeyValuePair<string, ExchangeTicker>>> OnGetTickersAsync()
31
{
32
var result =
33
- await MakeJsonRequestAsync<Dictionary<string, NDAXTicker>>("returnticker", "https://ndax.io/api", null, "GET");
+ await MakeJsonRequestAsync<Dictionary<string, NDAXTicker>>("returnticker", "https://core.ndax.io/api/returnticker", null, "GET");
34
_marketSymbolToInstrumentIdMapping = result.ToDictionary(pair => pair.Key.Replace("_", ""), pair => pair.Value.Id); // remove the _
35
return result.Select(pair =>
36
new KeyValuePair<string, ExchangeTicker>(pair.Key, pair.Value.ToExchangeTicker(pair.Key)));
0 commit comments