h4wknetwork overview
    Updated 7 days ago
    select
    -- date_trunc(day, block_timestamp) as date,
    count(distinct tx_from) as DAU,
    count(distinct tx_id) as tx_count,
    tx_count/count(distinct block_timestamp::date) as tx_per_day,
    DAU/count(distinct block_timestamp::date) as AVG_DAU
    -- sum(DAU) over (order by date) as cumu_DAU,
    -- sum(tx_count) over (order by date) as cumu_tx
    from sei.core.fact_transactions
    where tx_succeeded = TRUE
    -- and block_timestamp >= '2023-08-01'
    -- group by 1



    Last run: 7 days ago
    DAU
    TX_COUNT
    TX_PER_DAY
    AVG_DAU
    1
    1685184128595554504126342.64069324317.23088
    1
    50B
    316s