adriaparcerisasflow defi swaps 3
    Updated 3 days ago
    select
    trunc(date,'week') as week,
    sum(volume) as volume_swapped,
    sum(volume_swapped) over (order by week) as total_volume_swapped
    from external.defillama.fact_dex_volume
    where chain ilike '%flow%' and date>='2025-01-01' and date<trunc(current_date,'week')
    group by 1 order by 1 desc
    Last run: 3 days ago
    WEEK
    VOLUME_SWAPPED
    TOTAL_VOLUME_SWAPPED
    1
    2025-05-19 00:00:00.0007559930109522626
    2
    2025-05-12 00:00:00.00011417392101962696
    3
    2025-05-05 00:00:00.000805842190545304
    4
    2025-04-28 00:00:00.000534463682486883
    5
    2025-04-21 00:00:00.000747069177142247
    6
    2025-04-14 00:00:00.000347537669671556
    7
    2025-04-07 00:00:00.000811026266196180
    8
    2025-03-31 00:00:00.000592956458085918
    9
    2025-03-24 00:00:00.000303321352156354
    10
    2025-03-17 00:00:00.000385322749123141
    11
    2025-03-10 00:00:00.000422090445269914
    12
    2025-03-03 00:00:00.000684518241049010
    13
    2025-02-24 00:00:00.000592029834203828
    14
    2025-02-17 00:00:00.000327228128283530
    15
    2025-02-10 00:00:00.000396481225011249
    16
    2025-02-03 00:00:00.000755646021046437
    17
    2025-01-27 00:00:00.000356651313489977
    18
    2025-01-20 00:00:00.00057005489923464
    19
    2025-01-13 00:00:00.00042229164222916
    19
    857B
    3s