Skip to content

Commit

Permalink
disable op value
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Oct 21, 2023
1 parent 6b7b5f2 commit e153276
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dexs/fxdx/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { CHAIN } from "../../helpers/chains";
import { getUniqStartOfTodayTimestamp } from "../../helpers/getUniSubgraphVolume";

const endpoints: { [key: string]: string } = {
[CHAIN.OPTIMISM]: "https://api.thegraph.com/subgraphs/name/danielsmith0630/fxdx-optimism-stats",
// [CHAIN.OPTIMISM]: "https://api.thegraph.com/subgraphs/name/danielsmith0630/fxdx-optimism-stats",
[CHAIN.BASE]: "https://api.thegraph.com/subgraphs/name/danielsmith0630/fxdx-base-stats"
}

Expand Down Expand Up @@ -64,10 +64,10 @@ const getStartTimestamp = async (chain: string) => {

const adapter: SimpleAdapter = {
adapter: {
[CHAIN.OPTIMISM]: {
fetch: getFetch(historicalDataSwap)(CHAIN.OPTIMISM),
start: async () => getStartTimestamp(CHAIN.OPTIMISM),
},
// [CHAIN.OPTIMISM]: {
// fetch: getFetch(historicalDataSwap)(CHAIN.OPTIMISM),
// start: async () => getStartTimestamp(CHAIN.OPTIMISM),
// },
[CHAIN.BASE] :{
fetch: getFetch(historicalDataSwap)(CHAIN.BASE),
start: async () => getStartTimestamp(CHAIN.BASE),
Expand Down

0 comments on commit e153276

Please sign in to comment.