messariNEAR Top Dapps by Addresses
    Updated 2023-07-03
    with contracts as (
    select
    distinct t.tx_receiver as address,
    case
    when l.project_name is not null then l.project_name
    else t.tx_receiver
    end as contract_group
    from
    near.core.fact_transactions t
    left join
    near.core.dim_address_labels l
    on t.tx_receiver = l.address
    ),
    top_dapps as (
    select
    c.contract_group as dapp,
    count(distinct t.tx_signer) as address
    from
    near.core.fact_transactions t
    left join
    contracts c
    on t.tx_receiver = c.address
    where date(t.block_timestamp) between '{{Start_date}}' and '{{End_date}}'
    group by 1
    order by 2 desc
    limit {{Top_x_dapps}}
    )
    select
    date(t.block_timestamp) as date,
    case
    when td.dapp is null then 'Other'
    else td.dapp
    end as dapp,
    count(distinct t.tx_hash) as transactions,
    count(distinct t.tx_signer) as addresses
    from
    Run a query to Download Data