barbodalgo
    Updated 2022-04-23
    select
    block_timestamp::date as day,
    sum(asset_amount/pow(10,6))
    from algorand.asset_transfer_transaction
    where inner_tx='TRUE'
    and sender='4STYTA6TLA2YIPVDX6CAGFD3I6FOAUFXEXVY4C6SAFF4GU557OENP5JBJM'
    and asset_id='694432641'
    and block_timestamp>= '2022-03-31 12:00:00'
    and block_timestamp<= '2022-04-14 06:00:00'
    group by 1
    order by 1
    Run a query to Download Data