littlenaomiosmo - token
    Updated 2022-11-27
    with tokens as (
    select distinct from_currency as currency
    from osmosis.core.fact_swaps
    )
    select address, label, project_name
    from osmosis.core.dim_labels
    where address in (
    select currency
    from tokens
    )

    select avg(price), symbol
    from osmosis.core.dim_prices


    Run a query to Download Data