IBC_insiderEthereum daily cex flow
Updated 2023-05-23
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
34
35
36
›
⌄
{{param_sbsQ}}
with cex as
(select address,label from
ethereum.core.dim_labels
where
LABEL_TYPE like 'cex')
, dex as
(select address,label from
ethereum.core.dim_labels
where
LABEL_TYPE like 'dex')
,
outflow as
(select
label as cex,
sum(AMOUNT) as outflow ,
date_trunc('{{day-week-month}}',BLOCK_TIMESTAMP ) as date
from
ethereum.core.ez_token_transfers a inner join
cex b on a.FROM_ADDRESS=b.ADDRESS
where
SYMBOL='UNI' and AMOUNT<1e9
group by date,label) ,
inflow as
(select
Run a query to Download Data