From 44abfb079106471edad34d8a9215684082ad6b01 Mon Sep 17 00:00:00 2001 From: Andrew <47720952+andrewhong5297@users.noreply.github.com> Date: Tue, 28 Nov 2023 19:48:00 -0500 Subject: [PATCH] fix --- queries/query_3237738.sql | 12 ------------ queries/query_3237742.sql | 12 ------------ 2 files changed, 24 deletions(-) diff --git a/queries/query_3237738.sql b/queries/query_3237738.sql index 1cf0d80..cee30ff 100644 --- a/queries/query_3237738.sql +++ b/queries/query_3237738.sql @@ -3,18 +3,6 @@ -- query link: https://dune.com/queries/3237738 -SELECT - project, - DATE_TRUNC('week', block_time), - SUM(CAST(amount_usd AS DOUBLE)) AS usd_volume -FROM - dex."trades" AS t /* AND block_time < date_trunc('week', Now()) -- Add this line to see stats from current week */ -WHERE - block_time > NOW() - INTERVAL '365' day -GROUP BY - 1, - 2 --- Weekly DEX volume SELECT project, DATE_TRUNC('week', block_time), diff --git a/queries/query_3237742.sql b/queries/query_3237742.sql index 1413083..ceff17f 100644 --- a/queries/query_3237742.sql +++ b/queries/query_3237742.sql @@ -3,18 +3,6 @@ -- query link: https://dune.com/queries/3237742 -SELECT - project, - DATE_TRUNC('week', block_time), - SUM(CAST(amount_usd AS DOUBLE)) AS usd_volume -FROM - dex_aggregator.trades AS t /* AND block_time < date_trunc('week', Now()) -- Add this line to see stats from current week */ -WHERE - block_time > NOW() - INTERVAL '365' day -GROUP BY - 1, - 2 --- Weekly DEX Aggregator volume SELECT project, DATE_TRUNC('week', block_time),