FatemeTheLadyDaily Stats copy
    Updated 2025-02-12
    WITH new_addresses AS (
    SELECT
    FROM_ADDRESS,
    MIN(block_timestamp) AS first_tx_timestamp,
    min(tx_hash) AS first_tx_hash
    FROM ronin.core.fact_transactions
    WHERE TX_SUCCEEDED=TRUE
    GROUP BY FROM_ADDRESS),

    lumiterra_first_tx AS (
    SELECT
    nft.origin_from_address,
    nft.block_timestamp,
    nft.tx_hash
    FROM ronin.nft.ez_nft_transfers nft
    JOIN new_addresses na
    ON nft.origin_from_address = na.FROM_ADDRESS
    AND nft.tx_hash = na.first_tx_hash
    WHERE nft.name = 'Lumiterra Game Item'
    ),

    daily_new_addresses AS (
    SELECT
    DATE(na.first_tx_timestamp) AS date,
    COUNT(DISTINCT na.FROM_ADDRESS) AS total_new_addresses
    FROM new_addresses na
    GROUP BY 1
    ),

    daily_lumiterra_new_addresses AS (
    SELECT
    DATE(lft.block_timestamp) AS date,
    COUNT(DISTINCT lft.origin_from_address) AS lumiterra_new_addresses
    FROM lumiterra_first_tx lft
    GROUP BY 1
    )
    Last run: about 2 months ago
    DATE
    LUMITERRA_NEW_ADDRESSES
    TOTAL_NEW_ADDRESSES
    PERCENTAGE_LUMITERRA_NEW_ADDRESSES
    1
    2024-10-01 00:00:00.00083612372190.067571
    2
    2024-10-02 00:00:00.0007382511500.293848
    3
    2024-10-03 00:00:00.0007582003850.378272
    4
    2024-10-04 00:00:00.0002571463750.175576
    5
    2024-10-05 00:00:00.0001411294360.108934
    6
    2024-10-06 00:00:00.0002801017750.275117
    7
    2024-10-07 00:00:00.000107673770.158808
    8
    2024-10-08 00:00:00.00070550290.127206
    9
    2024-10-09 00:00:00.0001561218420.128035
    10
    2024-10-10 00:00:00.000177872170.202942
    11
    2024-10-11 00:00:00.00083858790.096648
    12
    2024-10-12 00:00:00.000981017710.096295
    13
    2024-10-13 00:00:00.00090784580.114711
    14
    2024-10-14 00:00:00.00096268940.356957
    15
    2024-10-15 00:00:00.000871370730.06347
    16
    2024-10-16 00:00:00.00064586000.109215
    17
    2024-10-17 00:00:00.00074608010.121709
    18
    2024-10-18 00:00:00.00066858580.076871
    19
    2024-10-19 00:00:00.000164731000.22435
    20
    2024-10-20 00:00:00.000103729770.14114
    ...
    135
    6KB
    11s