From 8cfba16adf202833cbe1c307b63d4344b0e45d46 Mon Sep 17 00:00:00 2001 From: literallymarvellous Date: Sun, 15 Sep 2024 06:38:26 +0100 Subject: [PATCH] update api endpoint --- fees/pear-protocol/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fees/pear-protocol/index.ts b/fees/pear-protocol/index.ts index 88fc5a72fb..7a44f8618e 100644 --- a/fees/pear-protocol/index.ts +++ b/fees/pear-protocol/index.ts @@ -3,7 +3,7 @@ import { CHAIN } from "../../helpers/chains"; import { httpGet } from "../../utils/fetchURL"; const fetch = async (timestamp: number) => { - const url = "https://www.api.pearprotocol.io/v1/isolated/metric"; + const url = "https://www.api.pearprotocol.io/v1/metric"; const response = await httpGet(url); const totalFees = response.totalFees; const dailyFees = response.dailyFees;