Skip to content

Commit

Permalink
remove GLL
Browse files Browse the repository at this point in the history
  • Loading branch information
rogsta-dev committed Jul 31, 2023
1 parent e033d04 commit 528d5ca
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions dexs/grizzly-trade/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<{
Expand Down Expand Up @@ -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)
}
}
}, {})
}
}
Expand Down

0 comments on commit 528d5ca

Please sign in to comment.