ArioBonkswap - [swap] volume
    Updated 2024-08-11
    select date_trunc(week, block_timestamp) as date,
    sum(SWAP_FROM_AMOUNT_USD) as Volume,
    sum(Volume) over(order by date) as CUM_Vol
    from solana.defi.ez_dex_swaps
    where SWAP_PROGRAM = 'bonkswap'
    group by 1
    order by date desc
    QueryRunArchived: QueryRun has been archived