Pine AnalyticsMoo Games 1 copy copy
    Updated 2025-02-03
    with tab1 as (
    SELECT
    tx_from,
    COUNT(*) AS events
    FROM eclipse.core.fact_transfers
    WHERE tx_to LIKE '6fviXSXwds8BRLCdisipRRfiZJENQ9LjESXAGkoVeADy'
    AND mint LIKE 'Eth1111111111111111111111111111111111111111'
    AND amount = 15000000
    and succeeded
    GROUP BY 1
    order by 2 desc
    )


    SELECT
    date(min) as first_tx_date,
    count(*) as wallets,
    sum(wallets) over (order by first_tx_date) as total_wallets

    from (
    SELECT
    signers[0],
    min(block_timestamp) as min

    FROM eclipse.core.fact_transactions
    where signers[0] in (SELECT tx_from from tab1)
    GROUP by 1
    )
    GROUP BY 1


    Last run: 3 months ago
    FIRST_TX_DATE
    WALLETS
    TOTAL_WALLETS
    1
    2025-01-23 00:00:00.000819335
    2
    2024-12-02 00:00:00.00064713
    3
    2025-02-01 00:00:00.00019510245
    4
    2024-10-12 00:00:00.00018470
    5
    2024-09-27 00:00:00.00022217
    6
    2024-10-02 00:00:00.00020339
    7
    2024-11-15 00:00:00.000724043
    8
    2024-11-05 00:00:00.000333487
    9
    2024-10-03 00:00:00.00011350
    10
    2024-09-15 00:00:00.000144
    11
    2024-10-23 00:00:00.0003322928
    12
    2024-12-07 00:00:00.000234800
    13
    2024-10-14 00:00:00.00014493
    14
    2024-11-20 00:00:00.000284325
    15
    2025-01-30 00:00:00.000989962
    16
    2024-12-29 00:00:00.0001987136
    17
    2024-12-24 00:00:00.0003736066
    18
    2024-10-26 00:00:00.000153276
    19
    2025-01-16 00:00:00.000628889
    20
    2024-10-01 00:00:00.00017319
    ...
    156
    5KB
    81s