elsinaTotal activity
    Updated 2024-12-08
    SELECT
    count(DISTINCT trader) as user_count,
    count(DISTINCT tx_hash) as tx_count,
    count(distinct platform) as dex_count,
    sum(amount_in_usd) as total_vol,
    avg(amount_in_usd) as avg_tx_vol,
    from
    near.defi.ez_dex_swaps
    where
    block_timestamp::date between '2024-12-01' and '2024-12-31' and
    platform ilike '%ref%'


    QueryRunArchived: QueryRun has been archived