tkvresearchnorthern-olive
    Updated 2025-03-19
    select *
    from
    (select date(BLOCK_TIMESTAMP) as datetime,
    count(distinct TX_HASH) as tx_count,
    count(distinct TX_HASH)/86400 as tps,
    sum(gas_used*gas_price)/1e8 as gas_fee_spent
    from ink.core.fact_transactions
    group by 1)
    where datetime >= current_date - interval '8 day'
    and
    datetime <= current_date - interval '1 day'

    Last run: 29 days ago
    DATETIME
    TX_COUNT
    TPS
    GAS_FEE_SPENT
    1
    2025-03-11 00:00:00.0002537642.9370833.107701313
    2
    2025-03-12 00:00:00.0002754833.1884612.02771852
    3
    2025-03-14 00:00:00.0003357143.8855792.054569602
    4
    2025-03-15 00:00:00.0002784343.2226162.051959237
    5
    2025-03-17 00:00:00.0002820673.2646642.868394357
    6
    2025-03-18 00:00:00.0003547724.1061575.679915923
    7
    2025-03-16 00:00:00.0003617694.1871411.953107895
    8
    2025-03-13 00:00:00.0002631843.0461112.22430691
    8
    447B
    7s