From 028f8532719a1357ee3f4c77a02b43c5f55e7e97 Mon Sep 17 00:00:00 2001 From: Alex Freska Date: Tue, 14 Jan 2025 10:28:07 -0500 Subject: [PATCH] website: mica ticker --- .changeset/poor-apples-promise.md | 5 +++++ apps/website/content/mica.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/poor-apples-promise.md diff --git a/.changeset/poor-apples-promise.md b/.changeset/poor-apples-promise.md new file mode 100644 index 000000000..ee9cfe3c2 --- /dev/null +++ b/.changeset/poor-apples-promise.md @@ -0,0 +1,5 @@ +--- +'website': patch +--- + +Updated the mica indicators ticker. diff --git a/apps/website/content/mica.ts b/apps/website/content/mica.ts index 42308ae58..5150c2ec8 100644 --- a/apps/website/content/mica.ts +++ b/apps/website/content/mica.ts @@ -20,7 +20,7 @@ export type MicaIndicatorObject = { [key: string]: MicaIndicator } export async function getMicaIndicators() { const [indicators, indicatorsError] = await to( axios( - `https://ccri.sia.tools/mica/overview/sia?responseType=recent&key=${process.env['CCRI_TOKEN']}` + `https://ccri.sia.tools/mica/overview/sc?responseType=recent&key=${process.env['CCRI_TOKEN']}` ) )