0xtollexOM total transaction count and traders chart
Updated 2024-04-05
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
›
⌄
-- forked from OM total transaction count and traders @ https://flipsidecrypto.xyz/edit/queries/f848152d-e0ea-4067-92a2-44cf80f290a1
SELECT
date_trunc('week', block_timestamp) as Date,
COUNT(DISTINCT tx_hash) as Total_Transaction,
COUNT(DISTINCT origin_from_address) as Total_Traders,
avg(amount_in_usd) as Avg_volume,
sum(amount_in_usd) as Total_Volume
FROM ethereum.defi.ez_dex_swaps
WHERE
token_in = '0x3593d125a4f7849a1b059e64f4517a86dd60c95d'
OR token_out = '0x3593d125a4f7849a1b059e64f4517a86dd60c95d'
AND amount_in_usd is NOT NULL
AND block_timestamp BETWEEN '2023-01-01' AND '2024-03-26'
GROUP BY 1
ORDER BY 1 ASC
LIMIT 1000
QueryRunArchived: QueryRun has been archived