Mrfti2024-05-07 07:19 PM
    Updated 2025-03-30
    SELECT
    date_trunc(day, date) as day,
    sum(volume) as "Total volume",
    sum ("Total volume") over (order by day) 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: 10 days agoAuto-refreshes every 12 hours
    DAY
    Total volume
    Cumulative volume
    1
    2024-01-01 00:00:00.000182658823182658823
    2
    2024-01-02 00:00:00.000262862157445520980
    3
    2024-01-03 00:00:00.000245384050690905030
    4
    2024-01-04 00:00:00.000167527323858432353
    5
    2024-01-05 00:00:00.000128340158986772511
    6
    2024-01-06 00:00:00.000807826711067555182
    7
    2024-01-07 00:00:00.000979181181165473300
    8
    2024-01-08 00:00:00.0002241532081389626508
    9
    2024-01-09 00:00:00.0001824801101572106618
    10
    2024-01-10 00:00:00.0001930325051765139123
    11
    2024-01-11 00:00:00.0002678744092033013532
    12
    2024-01-12 00:00:00.0001947048502227718382
    13
    2024-01-13 00:00:00.0001114617042339180086
    14
    2024-01-14 00:00:00.0001216090712460789157
    15
    2024-01-15 00:00:00.0001170246222577813779
    16
    2024-01-16 00:00:00.0001191093642696923143
    17
    2024-01-17 00:00:00.0001274085132824331656
    18
    2024-01-18 00:00:00.0001200631522944394808
    19
    2024-01-19 00:00:00.0001053977193049792527
    20
    2024-01-20 00:00:00.000576298663107422393
    ...
    331
    16KB
    3s