rezarwzDaily ETH Volume 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,
    sum(Value) as "ETH Volume"
    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
    ETH Volume
    MONTH_RANK
    DAY_RANK
    WEEK_RANK
    TIME_LABEL
    1
    Base2023-06-01 00:00:00.00013.7516907071111
    2
    Base2023-07-01 00:00:00.000178032.6594742032222
    3
    Base2023-08-01 00:00:00.0001090188.323913813333
    4
    Base2023-09-01 00:00:00.000755630.7696110334444
    5
    Base2023-10-01 00:00:00.000597885.5825182315555
    6
    Base2023-11-01 00:00:00.000398610.2406172786666
    7
    Optimism2021-11-01 00:00:00.00037306.2373735471111
    8
    Optimism2021-12-01 00:00:00.00053608.8321784752222
    9
    Optimism2022-01-01 00:00:00.00077753.2849998743333
    10
    Optimism2022-02-01 00:00:00.00042025.7569232344444
    11
    Optimism2022-03-01 00:00:00.00047017.9910341055555
    12
    Optimism2022-04-01 00:00:00.00087434.032861146666
    13
    Blast2024-02-01 00:00:00.000177200.619805961111
    14
    Blast2024-03-01 00:00:00.0003369258.837574332222
    15
    Blast2024-04-01 00:00:00.0001509922.344369123333
    16
    Blast2024-05-01 00:00:00.0001492861.787492724444
    17
    Blast2024-06-01 00:00:00.0001171096.783604825555
    18
    Blast2024-07-01 00:00:00.000572798.0039575526666
    19
    Arbitrum2021-05-01 00:00:00.0004.79022011111
    20
    Arbitrum2021-06-01 00:00:00.00068.6079939252222
    24
    1KB
    218s