Flipside Teameth dex volume (defillama)
    Updated 2024-09-12
    select
    date,
    -- protocol,
    sum(volume) as volume_usd,
    sum(volume_usd) over (order by date) as volume_usd_cumul
    from external.defillama.fact_dex_volume
    where date >= '{{Start_date}}'
    and date < current_date
    and chain = 'ethereum'
    group by 1
    order by 1 desc
    ;
    QueryRunArchived: QueryRun has been archived