ML6Swap Fees(lowest) : To Currency
    Updated 2022-06-25
    select avg(split(fee,'uosmo')[0]),label from (select t.fee,l.label from osmosis.core.fact_swaps as s
    inner join osmosis.core.dim_labels as l on l.address=s.to_currency
    left join osmosis.core.fact_transactions as t on s.tx_id=t.tx_id
    where t.fee ilike '%osmo%')
    group by 2
    order by 1
    limit 10
    Run a query to Download Data