heroldMost Tokens the Users Swapped For
    Updated 2022-06-21
    select token_in_contract, sum(token_in_amount) as received
    from flow.core.fact_swaps
    where block_timestamp::date >= current_date - 90
    group by 1
    having received > 100000
    order by 2 desc
    Run a query to Download Data