SpecterDaily Transaction Trends
    Updated 2025-03-01
    --To get daily transaction count since Feb
    WITH WhDAILY_TRANSACION AS
    (
    SELECT SUBSTR(TO_DATE(DATE_TRUNC('DAY', BLOCK_TIMESTAMP)), 5) AS Limited_Level,
    COUNT(TX_HASH) AS TransactionCount
    From blast.core.fact_transactions
    WHERE STATUS = 'SUCCESS'
    GROUP by Limited_Level
    )
    SELECT Limited_Level AS Text_Date, TransactionCount
    FROM WhDAILY_TRANSACION
    ORDER BY Limited_Level
    Last run: about 2 months ago
    TEXT_DATE
    TRANSACTIONCOUNT
    1
    -01-01585258
    2
    -01-02622261
    3
    -01-03525784
    4
    -01-04564910
    5
    -01-05572532
    6
    -01-06451972
    7
    -01-07385925
    8
    -01-08374621
    9
    -01-09330651
    10
    -01-10369422
    11
    -01-11396539
    12
    -01-12369694
    13
    -01-13391096
    14
    -01-14354090
    15
    -01-15323561
    16
    -01-16386665
    17
    -01-17371734
    18
    -01-18337865
    19
    -01-19470115
    20
    -01-20439576
    ...
    366
    6KB
    9s