steven-sabol-dir-of-economyDaily Unique Active Users (UAWs) in the Game Category on the NEAR Blockchain [with Fees]
    Updated 2025-04-06
    -- forked from Ario / Daily Unique Active Users (UAWs) in the Game Category on the NEAR Blockchain @ https://flipsidecrypto.xyz/Ario/q/Yw-TeKmFOify/daily-unique-active-users-uaws-in-the-game-category-on-the-near-blockchain
    with x1 as (
    select
    date_trunc('hour',block_timestamp) as date,
    initcap(project_name) as project_name,
    txa.tx_signer as wallet,
    sum(TRANSACTION_FEE/pow(10,24)) as fee2,
    count(distinct tx_hash) as txs
    -- count(distinct tx_signer) as N_Users
    from near.core.fact_transactions txa
    join near.core.dim_address_labels label
    on txa.tx_receiver = label.ADDRESS
    where TX_SUCCEEDED = 'TRUE'
    and block_timestamp::date >= current_date() - interval '26 weeks'
    and LABEL_TYPE = 'games'
    group by 1,2,3 ),

    x2 as (
    select
    date_trunc('hour',block_timestamp) as date,
    initcap(project_name) as project_name,
    txa.tx_receiver as wallet,
    sum(TRANSACTION_FEE/pow(10,24)) as fee2,
    count(distinct tx_hash) as txs
    -- -- label.address as address_name,
    -- sum(TRANSACTION_FEE/pow(10,24)) as fee2
    -- count(distinct tx_receiver) as N_Users
    from near.core.fact_transactions txa
    join near.core.dim_address_labels label
    on txa.tx_signer = label.ADDRESS
    where TX_SUCCEEDED = 'TRUE'
    and block_timestamp::date >= current_date() - interval '26 weeks'
    and LABEL_TYPE = 'games'
    group by 1,2,3),


    Last run: about 2 months ago
    DATE
    PROJECT_NAME
    N_USERS
    TOTAL_FEES
    TRANSACTIONS
    TOTAL_FEES_USD
    TXS_PER_PLAYER
    FEES_PER_PLAYER
    FEES_PER_PLAYER_USD
    1
    2025-02-24 00:00:00.000Harvestmoon35464174.853448944397789545.0574815611.2166990.0049304491580.01536931766
    2
    2025-02-10 00:00:00.000Pumpopoly1190.350685289713761.17493315911.5630250.0029469352080.009873387894
    3
    2024-11-18 00:00:00.000Harvestmoon54233293.4754586846839491732.48863934512.6113070.0054113816070.03194528496
    4
    2024-11-18 00:00:00.000Harvest Moon37219189.019965194736631118.94890188412.7263760.0050785879570.03006391633
    5
    2024-12-02 00:00:00.000Playember423715448.3608141799730273366.7158467242.2964190.0010581660180.007945708428
    6
    2024-10-21 00:00:00.000Sweat236445331.8399821044142651511.3939863331.7520570.0014034552730.006392158795
    7
    2025-02-17 00:00:00.000Playember448792433.6757323059095711442.3222332412.0267090.00096631787620.003213787753
    8
    2024-10-14 00:00:00.000Land To Empire120.008975248109630.043846224515.250.00074793734240.003653852042
    9
    2025-02-17 00:00:00.000Harvest Moon25104103.149501584258262343.98729923310.2876830.0041088870930.01370248961
    10
    2024-09-30 00:00:00.000Land To Empire80.00113971705880.0054122313810.00014246463230.0006765289225
    11
    2024-10-07 00:00:00.000Land To Empire120.008120440346570.039183263194.750.00067670336210.003265271933
    12
    2024-12-09 00:00:00.000Pumpopoly850.304828218611712.0776609313.7764710.0035862143360.02444306976
    13
    2024-09-30 00:00:00.000Harvestmoon5688355.32530449128704264.8635563462.2626090.00097261579890.0046562867
    14
    2025-03-03 00:00:00.000Sweat1378861579.1420899415262354676.6329941333.816450.01145251940.033916663
    15
    2024-11-04 00:00:00.000Harvest Moon38633198.552196811502830825.68194114613.0155570.0051394454690.02137245208
    16
    2025-02-17 00:00:00.000Sweat1353731343.8406292674752884466.4740361953.5109510.0099269472440.03299383212
    17
    2025-02-17 00:00:00.000ZomLand30.00973498410180.032138292752.6666670.00324499470.01071276425
    18
    2025-03-10 00:00:00.000ZomLand10.0056378621160.0144664912960.005637862110.01446649129
    19
    2025-03-24 00:00:00.000ZomLand40.04925129816250.14577440886.250.012312824540.03644360221
    20
    2024-11-25 00:00:00.000Harvest Moon35679182.5735149454532101232.32393932612.702430.0051171141270.03453919503
    ...
    189
    21KB
    591s