rezarwzDaily ETH Volume
    Updated 2025-02-24
    SELECT
    'Blast' as blockchain,
    date_trunc('{{time_frame}}', block_Timestamp) as date,
    sum(Value) as "ETH Volume"
    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,
    sum(Value) as "ETH Volume"
    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,
    sum(Value) as "ETH Volume"
    Last run: 2 months ago
    BLOCKCHAIN
    DATE
    ETH Volume
    1
    Arbitrum2021-11-01 00:00:00.000465663.24785376
    2
    Optimism2021-11-01 00:00:00.00037306.237373547
    3
    Blast2024-09-01 00:00:00.000205902.308801313
    4
    Arbitrum2024-09-01 00:00:00.0005061054.0847091
    5
    Arbitrum2021-12-01 00:00:00.000344796.454476036
    6
    Optimism2021-12-01 00:00:00.00053608.832178475
    7
    Optimism2024-09-01 00:00:00.000785549.912055573
    8
    Base2024-09-01 00:00:00.0005560582.3194022
    9
    Blast2024-11-01 00:00:00.000169306.78559574
    10
    Arbitrum2024-11-01 00:00:00.0005811119.46300135
    11
    Optimism2024-11-01 00:00:00.000943211.090057742
    12
    Base2024-11-01 00:00:00.0007812476.08410478
    13
    Arbitrum2022-06-01 00:00:00.000920585.811837321
    14
    Optimism2022-06-01 00:00:00.000350286.286614465
    15
    Blast2024-05-01 00:00:00.0001492861.78749272
    16
    Arbitrum2024-05-01 00:00:00.0007571235.88135493
    17
    Optimism2024-05-01 00:00:00.000850253.207139474
    18
    Base2024-05-01 00:00:00.0003165443.85190035
    19
    Blast2024-02-01 00:00:00.000177200.61980596
    20
    Arbitrum2024-02-01 00:00:00.0003645969.555052
    ...
    116
    6KB
    217s