Afonso_DiazTop projects users interacted with
    Updated 2025-04-22
    with

    users as (
    select
    distinct from_address as user
    from
    ink.core.fact_transactions
    where
    tx_succeeded
    and to_address = '0x9f500d075118272b3564ac6ef2c70a9067fd2d3f'
    and origin_function_signature in ('0xe884624b', '0xc0129d43')
    ),

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user,
    to_address as contract_address,
    label as project_name,
    label_type
    from
    ink.core.fact_transactions
    left join
    ink.core.dim_labels on address = to_address
    where
    tx_succeeded
    and label_subtype not in ('token_contract')
    and label_type != 'token'
    and user in (select user from users)
    )

    select
    project_name,
    count(distinct tx_hash) as transactions,
    count(distinct user) as users
    QueryRunArchived: QueryRun has been archived