lsdboy-V2QpWUalldomain eclipse copy
    Updated 2025-01-07
    -- forked from jackguy / alldomain eclipse @ https://flipsidecrypto.xyz/jackguy/q/K6VO2kqt7TDz/alldomain-eclipse

    SELECT
    date_trunc('hour', block_timestamp) as hour,
    count(*) as domains_claimed,
    sum(domains_claimed) over (order by hour) as total_domains_claimed

    FROM (
    SELECT
    f.value as log_message,
    t.*
    FROM eclipse.core.fact_transactions t,
    LATERAL FLATTEN(input => log_messages) f
    where log_message LIKE '%Program log: Creating new domain%'
    and ENDSWITH(f.value, '.turbo')
    --LIMIT 100
    )
    GROUP BY 1
    order by 1 DESC



    Last run: about 2 months ago
    HOUR
    DOMAINS_CLAIMED
    TOTAL_DOMAINS_CLAIMED
    1
    2025-02-27 15:00:00.00045357903
    2
    2025-02-27 14:00:00.00053357858
    3
    2025-02-27 13:00:00.00072357805
    4
    2025-02-27 12:00:00.000125357733
    5
    2025-02-27 11:00:00.00092357608
    6
    2025-02-27 10:00:00.000107357516
    7
    2025-02-27 09:00:00.000105357409
    8
    2025-02-27 08:00:00.00078357304
    9
    2025-02-27 07:00:00.000175357226
    10
    2025-02-27 06:00:00.000157357051
    11
    2025-02-27 05:00:00.00094356894
    12
    2025-02-27 04:00:00.00065356800
    13
    2025-02-27 03:00:00.000168356735
    14
    2025-02-27 02:00:00.000121356567
    15
    2025-02-27 01:00:00.00062356446
    16
    2025-02-27 00:00:00.00064356384
    17
    2025-02-26 23:00:00.00063356320
    18
    2025-02-26 22:00:00.00025356257
    19
    2025-02-26 21:00:00.00022356232
    20
    2025-02-26 20:00:00.00050356210
    ...
    2685
    99KB
    427s