Mrfti2024-05-07 07:19 PM copy copy
    Updated 2025-03-30
    -- forked from 2024-05-07 07:19 PM copy @ https://flipsidecrypto.xyz/studio/queries/2ce0b8b1-3189-4963-bf7b-a209d33396e3

    SELECT
    date_trunc (week, date) as week,
    sum(volume) as "Total volume",
    sum ("Total volume") over (order by week) as "Cumulative volume"
    from
    external.defillama.fact_dex_volume
    where
    chain = 'avalanche'
    and date >= '2024-01-01 00:00:00.000'
    GROUP by 1
    order by 1
    Last run: 3 months agoAuto-refreshes every 12 hours
    WEEK
    Total volume
    Cumulative volume
    1
    2024-01-01 00:00:00.00011654733001165473300
    2
    2024-01-08 00:00:00.00012953158572460789157
    3
    2024-01-15 00:00:00.0007025380193163327176
    4
    2024-01-22 00:00:00.0006211598843784487060
    5
    2024-01-29 00:00:00.0006898462024474333262
    6
    2024-02-05 00:00:00.0008088629565283196218
    7
    2024-02-12 00:00:00.0009158169286199013146
    8
    2024-02-19 00:00:00.0007400800176939093163
    9
    2024-02-26 00:00:00.00013771083578316201520
    10
    2024-03-04 00:00:00.000208824889010404450410
    11
    2024-03-11 00:00:00.000464376167815048212088
    12
    2024-03-18 00:00:00.000325364988518301861973
    13
    2024-03-25 00:00:00.000131022013919612082112
    14
    2024-04-01 00:00:00.00096850838620580590498
    15
    2024-04-08 00:00:00.000105569815121636288649
    16
    2024-04-15 00:00:00.00073931190422375600553
    17
    2024-04-22 00:00:00.00054835055022923951103
    18
    2024-04-29 00:00:00.00054141784223465368945
    19
    2024-05-06 00:00:00.00048820131323953570258
    20
    2024-05-13 00:00:00.00046358612624417156384
    48
    2KB
    2s