csp88gNew players and total players daily chart
    Updated 2025-03-31
    with moon_users as (
    select TO_ADDRESS as player, block_timestamp as start_playing_date
    from near.core.ez_token_transfers
    where block_timestamp::date >= '2024-04-01'
    and CONTRACT_ADDRESS = 'aa-harvest-moon.near'
    /*and player = 'minicooper.near'*/
    qualify
    row_number() over (partition by player order by block_timestamp ASC) = 1
    )

    /*select * from moon_users*/

    select trunc(start_playing_date,'day') as "Day",
    count (player) as "Players",
    sum("Players") over (order by "Day" asc) as "Total players"
    from moon_users
    group by 1
    order by 1 desc


    Last run: 3 months ago
    Day
    Players
    Total players
    1
    2025-03-31 00:00:00.0001526326
    2
    2025-03-30 00:00:00.00025526325
    3
    2025-03-29 00:00:00.00031526300
    4
    2025-03-28 00:00:00.00025526269
    5
    2025-03-27 00:00:00.00077526244
    6
    2025-03-26 00:00:00.00072526167
    7
    2025-03-25 00:00:00.00024526095
    8
    2025-03-24 00:00:00.00025526071
    9
    2025-03-23 00:00:00.00026526046
    10
    2025-03-22 00:00:00.00035526020
    11
    2025-03-21 00:00:00.00028525985
    12
    2025-03-20 00:00:00.00015525957
    13
    2025-03-19 00:00:00.00038525942
    14
    2025-03-18 00:00:00.00026525904
    15
    2025-03-17 00:00:00.00050525878
    16
    2025-03-16 00:00:00.00047525828
    17
    2025-03-15 00:00:00.00057525781
    18
    2025-03-14 00:00:00.00069525724
    19
    2025-03-13 00:00:00.00039525655
    20
    2025-03-12 00:00:00.00050525616
    ...
    361
    14KB
    68s