omer93avalanche principals
    Updated 2024-01-30
    SELECT
    date_trunc('day',block_timestamp) as date,
    count(distinct from_address) as users,
    count(distinct tx_hash) as tx,
    sum(tx) over (order by date) as cum_tx,
    avg(tx_fee) as avg_tx_fee
    from avalanche.core.fact_transactions
    where block_timestamp>=current_date-interval '3 months'
    and block_timestamp<current_date
    group by 1 order by 1 asc
    Last run: about 1 year agoAuto-refreshes every 3 hours
    DATE
    USERS
    TX
    CUM_TX
    AVG_TX_FEE
    1
    2023-10-30 00:00:00.000305711808871808870.005578695504
    2
    2023-10-31 00:00:00.000311941831073639940.005800578426
    3
    2023-11-01 00:00:00.000296461934235574170.006424632266
    4
    2023-11-02 00:00:00.000316051920867495030.006022250715
    5
    2023-11-03 00:00:00.000315951931959426980.005246914264
    6
    2023-11-04 00:00:00.0003342918065311233510.005121686196
    7
    2023-11-05 00:00:00.0003414219081713141680.005551991059
    8
    2023-11-06 00:00:00.0003257620657115207390.005409261581
    9
    2023-11-07 00:00:00.0003608320572817264670.005540428099
    10
    2023-11-08 00:00:00.0003583618772419141910.005549127406
    11
    2023-11-09 00:00:00.0003825823177121459620.009594117453
    12
    2023-11-10 00:00:00.0003626421555823615200.007263987038
    13
    2023-11-11 00:00:00.0003920625301626145360.007789963884
    14
    2023-11-12 00:00:00.0004026730677529213110.007656054075
    15
    2023-11-13 00:00:00.0003569925794731792580.007457984499
    16
    2023-11-14 00:00:00.0002941823964334189010.008083543301
    17
    2023-11-15 00:00:00.0003393027391936928200.008372802498
    18
    2023-11-16 00:00:00.0003996932288340157030.008027427867
    19
    2023-11-17 00:00:00.0003977634672443624270.00684320048
    20
    2023-11-18 00:00:00.0004889150543148678580.003076793014
    92
    6KB
    83s