DevJacobivolume-moved-to-cexs
    Updated 2022-09-22
    with cexs as (
    select * from flipside_prod_db.algorand.labels
    where label_type = 'cex'
    )

    select label, count(*) as transactions from cexs join flipside_prod_db.algorand.payment_transaction p_transactions on cexs.address = p_transactions.sender
    group by label
    order by transactions desc
    -- blockchain ist immer algorand (logisch)
    -- label_subtype für cex gibt es: deposit_wallet(260k) und hot_wallet(61)
    Run a query to Download Data