DevJacobivolume-moved-from-cexs-only-deposit-wallets
    Updated 2022-09-28
    with cexs as (
    select * from flipside_prod_db.algorand.labels
    where label_type = 'cex'
    and label_subtype = 'deposit_wallet'
    )

    select label, count(*) as transactions from cexs join flipside_prod_db.algorand.payment_transaction p_transactions on cexs.address = p_transactions.receiver
    group by label
    order by transactions desc
    Run a query to Download Data