Afonso_Diazlabels users interacted
    Updated 2025-05-10
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user,
    to_address as contract_address,
    label as project_name,
    label_type,
    tx_fee
    from
    ink.core.fact_transactions
    join
    ink.core.dim_labels on address = to_address
    where
    tx_succeeded
    )

    select
    label_type,
    count(distinct tx_hash) as transactions,
    count(distinct user) as users
    from
    main
    group by 1
    order by 2 desc



    Last run: 14 days ago
    LABEL_TYPE
    TRANSACTIONS
    USERS
    1
    nft110225182476
    2
    token1064603101908
    3
    bridge27013668025
    4
    dex1743857
    4
    89B
    2s