freemartianMost expensive ASA on May 6th
    Updated 2022-05-12
    select asset_name, max(price_usd) as max_price
    from algorand.prices_swap
    where block_hour = '2022-05-06'
    and swaps_in_hour >= 1
    group by asset_name
    order by max_price desc
    limit 5

    Run a query to Download Data