mattkstewOptimism DEXs 3
Updated 2022-08-07Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
›
⌄
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