elsinadaily activity
    Updated 2025-04-06
    SELECT
    date_trunc('day', block_timestamp) as date,
    count(DISTINCT from_address) as user_count,
    count(DISTINCT tx_hash) as tx_count,
    sum(tx_fee_precise) as total_fee,
    avg(tx_fee_precise) as avg_tx_fee,

    sum(total_fee) over (order by date) as cum_total_fee,
    sum(tx_count) over (order by date) as cum_tx_count
    from
    ink.core.fact_transactions
    group by
    date
    order by
    date asc





    Last run: 21 days ago
    DATE
    USER_COUNT
    TX_COUNT
    TOTAL_FEE
    AVG_TX_FEE
    CUM_TOTAL_FEE
    CUM_TX_COUNT
    1
    2024-12-06 00:00:00.00013118800031188
    2
    2024-12-07 00:00:00.000286402000117590
    3
    2024-12-08 00:00:00.000286402000203992
    4
    2024-12-09 00:00:00.0008864750.081028052879.370113082e-70.08102805287290467
    5
    2024-12-10 00:00:00.0007864300.00075788844478.768812273e-90.08178594132376897
    6
    2024-12-11 00:00:00.00013865960.065991713167.620642196e-70.1477776545463493
    7
    2024-12-12 00:00:00.00018866860.0020518758542.367021035e-80.1498295303550179
    8
    2024-12-13 00:00:00.00023866370.0024558747612.834671977e-80.1522854051636816
    9
    2024-12-14 00:00:00.00014865370.0012229879191.413254352e-80.153508393723353
    10
    2024-12-15 00:00:00.0008865080.00030770450733.556948575e-90.1538160975809861
    11
    2024-12-16 00:00:00.00027870830.006847445897.863125857e-80.1606635434896944
    12
    2024-12-17 00:00:00.00014481026720.29052836940.0000028296747840.4511919129999616
    13
    2024-12-18 00:00:00.00042121205460.31651516140.0000026256795030.76770707421120162
    14
    2024-12-19 00:00:00.00065211147810.46753162810.0000040732493021.2352387021234943
    15
    2024-12-20 00:00:00.00027621030460.24038445690.0000023327878511.4756231591337989
    16
    2024-12-21 00:00:00.0002124990870.07380079447.448080414e-71.5494239541437076
    17
    2024-12-22 00:00:00.0002144991280.049904085655.034307728e-71.5993280391536204
    18
    2024-12-23 00:00:00.00030571030330.22686942780.0000022019103371.8261974671639237
    19
    2024-12-24 00:00:00.00049001145040.32222739240.0000028141147242.1484248591753741
    20
    2024-12-25 00:00:00.00045851152390.21866659640.0000018975051542.3670914561868980
    ...
    121
    11KB
    4s