princefarzamThe number of swaps from ALGO to other assets by day in March 2022 by DEX.
    Updated 2022-04-28
    select
    block_timestamp::date as date,
    swap_program,
    count(*)
    from algorand.swaps
    where block_timestamp::date BETWEEN '2022-03-01' AND '2022-03-31'
    and swap_from_asset_id = 0
    and swap_from_amount > 0
    group by date,2
    Run a query to Download Data