PapasotUNI flows to centralised exchanges
    Updated 2022-11-28
    select
    from_label,
    sum(amount_usd) as amount
    --to_label,
    --count(to_label)


    from ethereum.udm_events
    where symbol = 'UNI' AND
    --success = 'TRUE' AND
    from_label_type = 'cex'
    group by from_label
    order by amount desc
    limit 10

    Run a query to Download Data