diff --git a/src/fetchCurrent.js b/src/fetchCurrent.js index c7fdbe3..c5bae22 100644 --- a/src/fetchCurrent.js +++ b/src/fetchCurrent.js @@ -1,4 +1,4 @@ export default async function fetchCurrent() { - const resp = await fetch("https://data.wowtoken.app/token/current.json"); + const resp = await fetch("https://data.wowtoken.app/v2/current/retail.json"); return await resp.json(); } diff --git a/src/index.html b/src/index.html index 25fe866..7daac20 100644 --- a/src/index.html +++ b/src/index.html @@ -7,7 +7,7 @@ - + diff --git a/src/index.js b/src/index.js index 83091eb..92da1c0 100644 --- a/src/index.js +++ b/src/index.js @@ -44,11 +44,11 @@ async function updateTokens(data) { } async function updateRegionalToken(region, data) { - if (currentPriceHash[region] !== data['price_data'][region]) { - currentPriceHash[region] = data['price_data'][region]; + if (currentPriceHash[region] !== data[region][1]) { + currentPriceHash[region] = data[region][1]; if (region === currentRegionSelection) { formatToken(); - datum = new Datum(Date.parse(data['update_times'][region]), data['price_data'][region]); + datum = new Datum(Date.parse(data[region][0]), data[region][1]); if (currentAggregateSelection === 'none' && chart.active()) { await chart.addDataToChart(datum); }