mattkstewOptimism DEXs 3
    Updated 2022-08-07
    with tab1 as (
    select
    address

    from optimism.core.dim_labels
    where project_name like 'rubicon'
    )


    select
    symbol,
    count(*)



    from optimism.core.fact_token_transfers left outer join optimism.core.dim_contracts
    on contract_address = address
    where origin_to_address in (select * from tab1)
    and symbol is not null
    and symbol not in ('DAI', 'SNX', 'bathETH')
    group by 1
    order by 2 DESC
    limit 10

    Run a query to Download Data