Skip to content

Commit

Permalink
fix error adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Mar 26, 2024
1 parent 8b3b3bb commit ffc8fdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dexs/fcon-dex/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const adapter: SimpleAdapter = {
adapter: {
[DISABLED_ADAPTER_KEY]: disabledAdapter,
[CHAIN.MANTLE]: {
fetch: fetch,
fetch: async (timestamp: number) => {return {timestamp}},
start: 1691280000,
},
},
Expand Down
1 change: 1 addition & 0 deletions dexs/horizondex/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit ffc8fdd

Please sign in to comment.