Skip to content

Commit

Permalink
fix: fix api call
Browse files Browse the repository at this point in the history
  • Loading branch information
Surya Vamsee authored and Surya Vamsee committed Mar 27, 2024
1 parent 8a3ae74 commit a103dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dexs/logx/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface IAPIResponse {

const getFetch = async (timestamp: number, _: ChainBlocks, { createBalances, getLogs, chain, api }: FetchOptions): Promise<FetchResult> => {
const { totalVolume, totalUsers, _24HVolume, message }: IAPIResponse = (
await fetchURL(`${URL}?chainId${chain_ids[chain]}?timestamp${timestamp}`)
await fetchURL(`${URL}?chainId=${chain_ids[chain]}&timestamp=${timestamp}`)
);
const dailyVolume = _24HVolume;
return {
Expand Down

0 comments on commit a103dd5

Please sign in to comment.