rezarwzAvg ETH Volume per TX copy
    Updated 2025-02-24
    with all_data as (
    SELECT
    *,
    dense_rank() OVER (
    PARTITION BY blockchain
    ORDER BY
    date_part('epoch', date) / (30 * 24 * 60 * 60)
    ) as month_rank,
    dense_rank() OVER (
    PARTITION BY blockchain
    ORDER BY
    date_trunc('day', date)
    ) as day_rank,
    dense_rank() OVER (
    PARTITION BY blockchain
    ORDER BY
    date_part('epoch', date) / (7 * 24 * 60 * 60)
    ) as week_rank
    FROM(
    SELECT
    'Blast' as blockchain,
    date_trunc('{{time_frame}}', block_Timestamp) as date,
    avg(Value) as "Avg ETH Volume per TX"
    FROM
    blast.core.fact_transactions
    where
    block_Timestamp :: date is not null
    and STATUS = 'SUCCESS'
    group by
    1,
    2
    UNION
    all
    SELECT
    'Arbitrum' as blockchain,
    date_trunc('{{time_frame}}', block_Timestamp) as date,
    Last run: 2 months ago
    BLOCKCHAIN
    DATE
    Avg ETH Volume per TX
    MONTH_RANK
    DAY_RANK
    WEEK_RANK
    TIME_LABEL
    1
    Blast2024-02-01 00:00:00.0000.3094666781111
    2
    Blast2024-03-01 00:00:00.0000.29255060812222
    3
    Blast2024-04-01 00:00:00.0000.10295846553333
    4
    Blast2024-05-01 00:00:00.0000.073850087144444
    5
    Blast2024-06-01 00:00:00.0000.044158326215555
    6
    Blast2024-07-01 00:00:00.0000.027564815876666
    7
    Base2023-06-01 00:00:00.0000.000019924326871111
    8
    Base2023-07-01 00:00:00.0000.065359109762222
    9
    Base2023-08-01 00:00:00.0000.074131139263333
    10
    Base2023-09-01 00:00:00.0000.04844496584444
    11
    Base2023-10-01 00:00:00.0000.045674108435555
    12
    Base2023-11-01 00:00:00.0000.051899568886666
    13
    Optimism2021-11-01 00:00:00.0000.061746790071111
    14
    Optimism2021-12-01 00:00:00.0000.048063375982222
    15
    Optimism2022-01-01 00:00:00.0000.064407689663333
    16
    Optimism2022-02-01 00:00:00.0000.046997742054444
    17
    Optimism2022-03-01 00:00:00.0000.041752499785555
    18
    Optimism2022-04-01 00:00:00.0000.053925189646666
    19
    Arbitrum2021-05-01 00:00:00.0000.033733944371111
    20
    Arbitrum2021-06-01 00:00:00.0000.0014434671562222
    24
    1KB
    161s