Picasoeisolated-gold
    Updated 2025-04-11
    select trunc(block_timestamp,'day') as daily,
    count(distinct from_address) as "Wallets",
    count(distinct tx_hash) as "Transactions",
    sum("Transactions") over (order by daily asc) as "Cumulative Transactions",
    avg("Wallets") over (order by daily rows between 7 preceding and current row) as "7Days Moving Average Wallet Counts"
    from mezo.testnet.fact_transactions
    group by 1;
    Last run: 14 days ago
    DAILY
    Wallets
    Transactions
    Cumulative Transactions
    7Days Moving Average Wallet Counts
    1
    2025-03-28 00:00:00.0006769069067
    2
    2025-03-29 00:00:00.00017024693159118.5
    3
    2025-03-30 00:00:00.00017033336492135.666
    4
    2025-03-31 00:00:00.00017714267918146
    5
    2025-04-01 00:00:00.00019619489866156
    6
    2025-04-02 00:00:00.000308262912495181.333
    7
    2025-04-03 00:00:00.000338333715832203.714
    8
    2025-04-04 00:00:00.000560522421056248.25
    9
    2025-04-05 00:00:00.000543456325619307.75
    10
    2025-04-06 00:00:00.000460453230151344
    11
    2025-04-07 00:00:00.000594457834729397
    12
    2025-04-08 00:00:00.00010701217946908508.625
    13
    2025-04-09 00:00:00.00010631336460272617
    14
    2025-04-10 00:00:00.0009161179272064693
    15
    2025-04-11 00:00:00.000836931881382755.25
    15
    729B
    2s