dr1888Top 5 inflow to CEX
Updated 2023-05-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
-- forked from Top 5 outflow from CEX @ https://flipsidecrypto.xyz/edit/queries/5069f61f-b1a2-4f9b-b176-340f34afea81
select
label,
sum(amount_usd) as Volume
from ethereum.core.ez_token_transfers
join ethereum.core.dim_labels
on to_address = address
where symbol like 'UNI'
and label_type like 'cex'
group by 1
having Volume is not null
order by Volume DESC
limit 5
Run a query to Download Data