Skip to content

Commit

Permalink
fix stuck adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Mar 30, 2024
1 parent 70a1d2d commit 47b868e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dexs/litx/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ const adapters = univ2Adapter({

adapters.adapter.bsc.start = 1687305600;
adapters.adapter.pulse.start = 1686096000;
adapters.adapter.bsc.fetch = async (timestamp: number) => {return{timestamp, dailyVolume: 0}}
adapters.adapter.pulse.fetch = async (timestamp: number) => {return{timestamp, dailyVolume: 0}}
adapters.adapter[DISABLED_ADAPTER_KEY] = disabledAdapter;
export default adapters;
1 change: 1 addition & 0 deletions dexs/veniceswap/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const adapter = univ2Adapter(endpoints, {
});

adapter.adapter.findora.start = 1675036800;
adapter.adapter.findora.fetch = async (timestamp: number) => {return{timestamp}}
adapter.adapter[DISABLED_ADAPTER_KEY] = disabledAdapter;

export default adapter

0 comments on commit 47b868e

Please sign in to comment.