elsinadaily activity Sep
    Updated 2024-10-14
    SELECT
    date_trunc('day', block_timestamp) as date,
    count(DISTINCT swapper) as user_count,
    count(DISTINCT tx_hash) as tx_count,
    sum(amount_in_usd) as total_vol,
    avg(amount_in_usd) as avg_tx_vol,
    sum(total_vol) over (order by date) as cum_total_vol,
    sum(tx_count) over (order by date) as cum_tx_count
    from
    aptos.defi.ez_dex_swaps
    where
    date between '2024-10-01' and '2024-10-31'
    group by
    date
    order by
    date asc


    QueryRunArchived: QueryRun has been archived