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

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