diff --git a/dexs/fcon-dex/index.ts b/dexs/fcon-dex/index.ts index 879763fd13..69fa9b8e8a 100644 --- a/dexs/fcon-dex/index.ts +++ b/dexs/fcon-dex/index.ts @@ -31,7 +31,7 @@ const adapter: SimpleAdapter = { adapter: { [DISABLED_ADAPTER_KEY]: disabledAdapter, [CHAIN.MANTLE]: { - fetch: fetch, + fetch: async (timestamp: number) => {return {timestamp}}, start: 1691280000, }, }, diff --git a/dexs/horizondex/index.ts b/dexs/horizondex/index.ts index 26507eb896..18d8fbc7f4 100644 --- a/dexs/horizondex/index.ts +++ b/dexs/horizondex/index.ts @@ -12,6 +12,7 @@ const adapters = univ2Adapter({ }); adapters.adapter.linea.start = 1689373614; +adapters.adapter.linea.fetch = async (timestamp: number) => { return { timestamp } }; adapters.adapter.base.start = 1690894800; export default adapters;