PapasotUNI volume flows from centralised exchanges
    Updated 2022-04-03
    select
    from_label,
    count(from_label),
    sum(amount_usd) as amount
    --to_label,
    --count(to_label)
    from ethereum.udm_events
    where symbol = 'UNI' AND
    block_timestamp > '2021-04-04' AND
    from_label_type = 'cex'
    group by from_label
    order by amount desc
    limit 10
    Run a query to Download Data