messariPolygon Activity by Contract
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
25
26
27
28
29
30
31
32
33
34
›
⌄
with contracts as (
select
distinct el.contract_address as contract,
dl.address_name,
case
when dl.project_name is not null then dl.project_name
when el.contract_address is null then 'transfer'
else el.contract_address
end as dapp
from
polygon.core.fact_decoded_event_logs el
left join
polygon.core.dim_labels dl
on el.contract_address = dl.address
OR (el.contract_address IS NULL AND dl.address IS NULL)
)
select
c.contract,
c.address_name,
count(distinct ft.tx_hash) as transactions,
count(distinct ft.from_address) as addresses
from
polygon.core.fact_transactions ft
left join
polygon.core.fact_decoded_event_logs el
on ft.tx_hash = el.tx_hash
left join
contracts c
on el.contract_address = c.contract or (el.contract_address IS NULL AND c.contract IS NULL)
where date(ft.block_timestamp) between '{{Start_date}}' and '{{End_date}}'
group by 1,2
order by 3 desc
Run a query to Download Data