freemartianDaily ETH Volume To CEXs
    Updated 2022-11-24
    select
    block_timestamp::date as TIME,
    address_name,
    count(eth_from_address) as senders_count,
    sum(amount) as eth_amount
    from ethereum.core.ez_eth_transfers t inner join ethereum.core.dim_labels l on l.address = t.eth_to_address
    where label_type = 'cex'
    and block_timestamp >= CURRENT_DATE - 15
    group by 1,2
    Run a query to Download Data