benimgDaily total wallets
    Updated 2022-05-27
    with wallets as ( select date(block_timestamp) as daily, asset_sender, receiver
    from flipside_prod_db.algorand.transfers
    where receiver = 'RANDGVRRYGVKI3WSDG6OGTZQ7MHDLIN5RYKJBABL46K5RQVHUFV3NY5DUE'
    and block_timestamp::date >= current_date -30 and daily <= '2022-05-24')
    select daily, count(asset_sender) as total_wallets from wallets
    group by 1
    Run a query to Download Data