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),