messariPolygon Activity by Contract
    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