From fa058cc64e061742a04cb7fa8283d78bcd7c0755 Mon Sep 17 00:00:00 2001 From: Emily Doherty Date: Thu, 31 Oct 2024 22:17:57 -0700 Subject: [PATCH] Swap to v2 of current API --- src/fetchCurrent.js | 2 +- src/index.html | 2 +- src/index.js | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) 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); }