elsinaALGOs moved from CEXs(centralized exchanges) to wallets
    Updated 2022-03-20
    select block_timestamp::date as day ,sum(amount) as amount_of_algo
    from algorand.payment_transaction join algorand.labels on sender = address
    where
    day >= '2022-02-10' and day <= '2022-02-17' and
    asset_id = '0' and label_type='cex'
    group by day
    Run a query to Download Data