MoDeFinear signers comp - signers over time by projects raw
    Updated 2025-03-31
    -- forked from near signers comp - signers over time by projects @ https://flipsidecrypto.xyz/studio/queries/7584bbea-8e4d-4aaf-abd6-cea0d5e7faac

    with
    tags as (
    select address, initcap(project_name) as project_name
    from near.core.dim_address_labels
    union all
    select 'claim.sweat', 'Sweat')

    select *
    from
    (select date_trunc('month', block_timestamp) as month,
    ifnull(PROJECT_NAME,TX_RECEIVER) as project,
    count(distinct TX_SIGNER) as signers,
    count(*) as txs,
    count(distinct TX_RECEIVER) as receivers,
    row_number() over (partition by month order by signers desc) as rank
    FROM near.core.fact_transactions
    left join tags
    on address=TX_RECEIVER
    WHERE DATE_TRUNC('month', block_timestamp) >= '2025-01-01'
    group by 1,2)
    where rank<=5




    Last run: 12 days ago
    MONTH
    PROJECT
    SIGNERS
    TXS
    RECEIVERS
    RANK
    1
    2025-01-01 00:00:00.000Kaikai88743482041940441
    2
    2025-01-01 00:00:00.000Here Wallet8610623190225962
    3
    2025-01-01 00:00:00.000Playember23078323078533
    4
    2025-01-01 00:00:00.000Hot Near Wallet193568172482084
    5
    2025-01-01 00:00:00.000Wnear8166165277625
    6
    2025-02-01 00:00:00.000Kaikai52486271512925741
    7
    2025-02-01 00:00:00.000Here Wallet7914782487307342
    8
    2025-02-01 00:00:00.000Playember27701727701723
    9
    2025-02-01 00:00:00.000Hot Near Wallet13767091666274
    10
    2025-02-01 00:00:00.000Sweat421484058511165
    11
    2025-03-01 00:00:00.000Here Wallet7653792525210251
    12
    2025-03-01 00:00:00.000Hot Near Wallet121208101232482
    13
    2025-03-01 00:00:00.000Playember12100312100523
    14
    2025-03-01 00:00:00.000Wnear41520154036724
    15
    2025-03-01 00:00:00.000Sweat388714351529135
    15
    888B
    135s