rezarwzAvg ETH Volume per TX
    Updated 2025-02-24
    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'
    and block_Timestamp :: date >= '{{day_from}}'
    and block_Timestamp :: date <= '{{day_to}}'
    group by
    1,
    2
    UNION
    all
    SELECT
    'Arbitrum' as blockchain,
    date_trunc('{{time_frame}}', block_Timestamp) as date,
    avg(Value) as "Avg ETH Volume per TX"
    FROM
    Arbitrum.core.fact_transactions
    where
    block_Timestamp :: date is not null
    and STATUS = 'SUCCESS'
    and block_Timestamp :: date >= '{{day_from}}'
    and block_Timestamp :: date <= '{{day_to}}'
    group by
    1,
    2
    UNION
    all
    SELECT
    'Optimism' as blockchain,
    date_trunc('{{time_frame}}', block_Timestamp) as date,
    avg(Value) as "Avg ETH Volume per TX"
    Last run: 2 months ago
    BLOCKCHAIN
    DATE
    Avg ETH Volume per TX
    1
    Blast2024-05-01 00:00:00.0000.07385008714
    2
    Arbitrum2024-05-01 00:00:00.0000.1085355136
    3
    Optimism2024-05-01 00:00:00.0000.0514980162
    4
    Base2024-05-01 00:00:00.0000.05550702947
    5
    Blast2024-11-01 00:00:00.0000.01037983178
    6
    Arbitrum2024-11-01 00:00:00.0000.08936619453
    7
    Optimism2024-11-01 00:00:00.0000.03587422543
    8
    Base2024-11-01 00:00:00.0000.04578167046
    9
    Arbitrum2023-04-01 00:00:00.0000.1044565492
    10
    Optimism2023-04-01 00:00:00.0000.06727504805
    11
    Arbitrum2021-11-01 00:00:00.0000.6122008733
    12
    Optimism2021-11-01 00:00:00.0000.06174679007
    13
    Blast2024-08-01 00:00:00.0000.01057801349
    14
    Arbitrum2024-08-01 00:00:00.0000.1024063101
    15
    Optimism2024-08-01 00:00:00.0000.0430753656
    16
    Base2024-08-01 00:00:00.0000.04277205312
    17
    Blast2024-09-01 00:00:00.0000.01167690821
    18
    Arbitrum2024-09-01 00:00:00.0000.09411239773
    19
    Arbitrum2021-12-01 00:00:00.0000.444322465
    20
    Optimism2021-12-01 00:00:00.0000.04806337598
    ...
    116
    6KB
    152s