From 1ac2b47d56c1f1f011bcfbed67b0ef73ee4df973 Mon Sep 17 00:00:00 2001 From: 0xgnek <0xgnek@gmail.com> Date: Wed, 28 Feb 2024 17:55:38 +0000 Subject: [PATCH] fix Scopuly --- dexs/Scopuly/index.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dexs/Scopuly/index.ts b/dexs/Scopuly/index.ts index 492d88bde9..d363084b08 100644 --- a/dexs/Scopuly/index.ts +++ b/dexs/Scopuly/index.ts @@ -1,8 +1,6 @@ -import fetchURL from "../../utils/fetchURL" -import { Chain } from "@defillama/sdk/build/general"; +import fetchURL from "../../utils/fetchURL"; import { SimpleAdapter } from "../../adapters/types"; import { CHAIN } from "../../helpers/chains"; -import customBackfill from "../../helpers/customBackfill"; import { getUniqStartOfTodayTimestamp } from "../../helpers/getUniSubgraphVolume"; const historicalVolumeEndpoint = "https://api.scopuly.com/api/liquidity_pools_volume" @@ -38,8 +36,7 @@ const adapter: SimpleAdapter = { adapter: { [CHAIN.STELLAR]: { fetch, - start: getStartTimestamp, - customBackfill: customBackfill(CHAIN.STELLAR as Chain, (_chian: string) => fetch) + start: 1706572800, }, }, };