barbodNumber of trades to( gALGO3) by day
    Updated 2022-05-02
    select count(distinct tx_group_id)
    as total_swaps,
    swap_to_asset_id
    as asset_name,
    block_timestamp::date
    as date_time
    from algorand.swaps
    where swap_from_asset_id = '694432641'
    and swap_from_amount > 0
    and block_timestamp::date >= '2022-01-01'
    group by date_time, asset_name
    Run a query to Download Data