From a3fbcdcf8ee148517227ad2cea0af9ee70196fca Mon Sep 17 00:00:00 2001 From: Fscare <154598325+Fscare@users.noreply.github.com> Date: Sat, 18 Jan 2025 02:20:17 +0300 Subject: [PATCH] Fix Start Timestamp --- aggregators/symphony/symphonyApi.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aggregators/symphony/symphonyApi.ts b/aggregators/symphony/symphonyApi.ts index 8b74bc8ead..4452afa810 100644 --- a/aggregators/symphony/symphonyApi.ts +++ b/aggregators/symphony/symphonyApi.ts @@ -55,7 +55,7 @@ export function getSymphAdapter(type: "volume") { adapter: { [CHAIN.SEI]: { fetch: fetch(CHAIN.SEI), - start: 1703376000, // Dec 24, 2024 00:00:00 UTC + start: 1724544000, // Aug 26, 2024 00:00:00 UTC meta: { methodology: 'Tracks the total value of all trades executed through Symphony Aggregator on SEI chain. Volume is calculated by summing the USD value of all trades.' } @@ -64,4 +64,4 @@ export function getSymphAdapter(type: "volume") { }; return adapter; -} \ No newline at end of file +}