Afonso_DiazTop Projects Interacted with $ALOT
    Updated 2025-03-11
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    label_type,
    origin_from_address as user,
    project_name
    from
    avalanche.core.fact_event_logs
    join
    avalanche.core.dim_labels on address = origin_to_address
    where
    contract_address = '0x093783055f9047c2bff99c4e414501f8a147bc69'
    and tx_status = 'SUCCESS'
    and label_type != 'token'
    and label_subtype != 'token_contract'
    )

    select
    project_name,
    count(distinct tx_hash) as transactions,
    iff(count(distinct user) < 5, '-', count(distinct user)::string) as users
    from
    main
    group by 1
    order by 2 desc
    limit 10
    QueryRunArchived: QueryRun has been archived