MLDZMNETHflow copy
Updated 2023-04-30
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
›
⌄
-- forked from ETHflow @ https://flipsidecrypto.xyz/edit/queries/30b64c54-987f-4883-9663-b0dcdf8f5061
with tb1 as(SELECT
*
from ethereum.core.dim_labels
where label_type='cex'
),
tb2 as (select
BLOCK_TIMESTAMP::date as day,
count(distinct tx_hash) as no_transfer,
count(distinct ETH_FROM_ADDRESS) as no_sender,
sum(AMOUNT) as total_volume,
avg(AMOUNT) as avg_volume,
sum(total_volume) over (order by day) as cum_volume
from ethereum.core.ez_eth_transfers
where ETH_to_address in (select ADDRESS from tb1)
and ETH_FROM_ADDRESS not in (select ADDRESS from tb1)
and BLOCK_TIMESTAMP>='2023-04-01'
group by 1),
tb3 as (select
BLOCK_TIMESTAMP::date as day,
count(distinct tx_hash) as no_transfer1,
count(distinct ETH_to_address) as no_sender1,
sum(AMOUNT) as total_volume1,
avg(AMOUNT) as avg_volume1,
sum(total_volume1) over (order by day) as cum_volume1
from ethereum.core.ez_eth_transfers
where ETH_FROM_ADDRESS in (select ADDRESS from tb1)
and ETH_to_address not in (select ADDRESS from tb1)
and BLOCK_TIMESTAMP>='2023-04-01'
group by 1)
select
Run a query to Download Data