From 70a1d2d02126143b18858aeed144d169bc75373c Mon Sep 17 00:00:00 2001 From: 0xgnek <0xgnek@gmail.com> Date: Fri, 29 Mar 2024 18:18:57 +0000 Subject: [PATCH] fix return --- dexs/swych/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dexs/swych/index.ts b/dexs/swych/index.ts index 9d9b7082e6..9b350c0f74 100644 --- a/dexs/swych/index.ts +++ b/dexs/swych/index.ts @@ -118,7 +118,8 @@ const fetchVolumeStats = async (timestamp: number) => { convertedTradingVolume24h, ] = [tradingVolume, tradingVolume24h].map(value => convertToUsd(value)); return { - dayVolume: convertedTradingVolume24h.toString(), + timestamp, + dailyVolume: convertedTradingVolume24h.toString(), totalVolume: convertedTradingVolume.toString(), }; };