rezarwzweary-blush
    Updated 2025-03-28
    SELECT
    date_trunc('week',block_timestamp) as date,
    count(DISTINCT tx_hash) as "# of Txs",
    count(distinct from_address) as "# of Active Addresses"
    FROM
    blast.core.fact_Transactions
    where date_trunc('week',block_timestamp)!=date_trunc('week',current_Date)
    GROUP by
    1
    order by 1 asc
    Last run: 27 days ago
    DATE
    # of Txs
    # of Active Addresses
    1
    2024-02-19 00:00:00.000478994
    2
    2024-02-26 00:00:00.0002492471134030
    3
    2024-03-04 00:00:00.0002371135192959
    4
    2024-03-11 00:00:00.0001880437139396
    5
    2024-03-18 00:00:00.0002376485132808
    6
    2024-03-25 00:00:00.0003418307218687
    7
    2024-04-01 00:00:00.0003740730228649
    8
    2024-04-08 00:00:00.0003540286217362
    9
    2024-04-15 00:00:00.0003202941186100
    10
    2024-04-22 00:00:00.0003427248187815
    11
    2024-04-29 00:00:00.0004609633259946
    12
    2024-05-06 00:00:00.0004830160260392
    13
    2024-05-13 00:00:00.0004667691282772
    14
    2024-05-20 00:00:00.0004341801243426
    15
    2024-05-27 00:00:00.0004717741221903
    16
    2024-06-03 00:00:00.0005942064319335
    17
    2024-06-10 00:00:00.0006690072372830
    18
    2024-06-17 00:00:00.0007603797458937
    19
    2024-06-24 00:00:00.0005923852552343
    20
    2024-07-01 00:00:00.0004540357313383
    57
    2KB
    11s