DataBeingAlgorand sent to CEX
    Updated 2022-03-11
    select sum(t.amount) as Sent, t.block_timestamp::date as Day
    from algorand.payment_transaction t
    join algorand.labels l
    where label_type = 'cex' AND
    l.ADDRESS = t.RECEIVER
    AND t.block_timestamp BETWEEN '2022-02-14' AND '2022-02-21'
    group by 2
    order by 2
    Limit 7

    Run a query to Download Data