winnie-fsDEXBoard Top DEX by Volume & User Count (30D) copy
Updated 2023-05-25
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
26
27
28
29
30
31
32
33
›
⌄
-- forked from cloudr3n / DEXBoard Top DEX by Volume & User Count (30D) @ https://flipsidecrypto.xyz/cloudr3n/q/2023-05-01-02-04-am-ZNoba7
-- top dex % vol, top vol, top dex % user, user count
with dexSwap as (
SELECT
date(block_timestamp) as day,
case when amount_in_usd is null then amount_out_usd
when amount_out_usd is null then amount_in_usd
when amount_in_usd>=amount_out_usd then amount_in_usd
when amount_out_usd>amount_in_usd then amount_out_usd end as amount_usd,
platform, origin_from_address
FROM
avalanche.core.ez_dex_swaps
WHERE
current_date() - date(block_timestamp)<=30
)
SELECT
sum(amount_usd) as platformVol,
platform,
sum(platformVol) over (order by platformVol asc) as totalVol,
count(distinct origin_from_address) as userCount,
sum(userCount) over (order by platformVol asc) as totalUser,
100*platformVol/totalVol as pVol,
100*userCount/totalUser as pUser
from dexSwap
group by platform
order by platformVol desc
limit 1