From 528d5ca72e2317cc9a46321281ab8622da63600d Mon Sep 17 00:00:00 2001 From: Roger Staubli Date: Mon, 31 Jul 2023 11:29:37 +0200 Subject: [PATCH] remove GLL --- dexs/grizzly-trade/index.ts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/dexs/grizzly-trade/index.ts b/dexs/grizzly-trade/index.ts index fefc664814..5053afd9e3 100644 --- a/dexs/grizzly-trade/index.ts +++ b/dexs/grizzly-trade/index.ts @@ -24,14 +24,6 @@ const historicalDataDerivatives = gql` } ` -const historicalDataGll = gql` - query get_volume($period: String!, $id: String!) { - volumeStats(where: {period: $period, id: $id}) { - mint - burn - } - } -` interface IGraphResponse { volumeStats: Array<{ @@ -94,15 +86,6 @@ const adapter: BreakdownAdapter = { start: async () => getStartTimestamp(chain) } } - }, {}), - "gll": Object.keys(endpoints).reduce((acc, chain) => { - return { - ...acc, - [chain]: { - fetch: getFetch(historicalDataGll)(chain), - start: async () => getStartTimestamp(chain) - } - } }, {}) } }