0-MIDpepe di volume
Updated 2023-05-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select BLOCK_TIMESTAMP::date as date
,case
when AMOUNT_IN_USD>0 and AMOUNT_IN_USD<=10 then 'Below 10 $'
when AMOUNT_IN_USD>10 and AMOUNT_IN_USD<=100 then '10~100 $'
when AMOUNT_IN_USD>100 and AMOUNT_IN_USD<=1000 then '100~1K $'
when AMOUNT_IN_USD>1000 and AMOUNT_IN_USD<=10000 then '1K~10K $'
when AMOUNT_IN_USD>10000 then 'Up To 10K $' end as dis_volume
,count(distinct ORIGIN_FROM_ADDRESS) as sellers
from ethereum.core.ez_dex_swaps
where date>='2023-04-17'
and TOKEN_IN='0x6982508145454ce325ddbe47a25d4ec3d2311933'
and AMOUNT_IN_USD is not null
and dis_volume is not null
group by 1,2
Run a query to Download Data