Mrfti2024-07-24 06:13 PM copy
    Updated 2025-01-26
    -- forked from 2024-07-24 06:13 PM @ https://flipsidecrypto.xyz/edit/queries/53d87702-dfc2-4f7f-a24f-c644730581f4

    SELECT
    date_trunc (day, block_timestamp) as date,
    count (DISTINCT tx_hash) as "Total Transaction",
    sum ("Total Transaction") over (order by date) as "Cumulative tx count",
    sum (TX_FEE_PRECISE) as "Total fee (BERA)",
    sum ("Total fee (BERA)") over (order by date) as "Cumulative fee (BERA)"
    from berachain.testnet.fact_transactions
    GROUP by 1

    Last run: 3 months ago
    DATE
    Total Transaction
    Cumulative tx count
    Total fee (BERA)
    Cumulative fee (BERA)
    1
    2024-07-22 00:00:00.0003450529110557095127.62358898620848.464424162
    2
    2024-09-07 00:00:00.0001999913220597698118.86817540528247.85955927
    3
    2024-11-30 00:00:00.00012514104430587514552.870932062365435.117753011
    4
    2025-01-19 00:00:00.00040711826110831314676.4579767252424461.63972535
    5
    2024-08-04 00:00:00.0002353111146401219145.71576082722838.084683882
    6
    2024-10-29 00:00:00.00015965503916227223616.107163198247896.983019201
    7
    2024-11-25 00:00:00.00012792144366185657671.754754931341205.336890904
    8
    2024-07-07 00:00:00.000288953663928035117.80041177119068.468386178
    9
    2024-08-31 00:00:00.0001697744207065175128.61462192727283.08160903
    10
    2024-10-27 00:00:00.00015274043884974217646.374423886234676.222121751
    11
    2024-12-20 00:00:00.00029474684772247899553.794505449477758.01873971
    12
    2024-07-04 00:00:00.000326609854665625103.09173892618516.928835705
    13
    2024-08-22 00:00:00.0001999870184148524146.85760792925834.191138756
    14
    2024-10-18 00:00:00.000192043637524777115581.39519403462113.103033214
    15
    2025-01-10 00:00:00.000498985756856544637219.2888265712096909.58278991
    16
    2024-06-21 00:00:00.0002425973224978662231.22340259916299.133872033
    17
    2024-06-19 00:00:00.000102352118817181217.2982181313890.303310562
    18
    2024-09-01 00:00:00.0001710437208775612140.75623929227423.837848322
    19
    2024-11-27 00:00:00.00013366404393058352979.171369474351638.061347832
    20
    2024-08-07 00:00:00.0001905002152198899139.99399756123278.471293466
    ...
    234
    17KB
    227s