select
-- date(block_timestamp) as date,
platform,
count(distinct from_address) as users,
count(distinct tx_id) as swaps
from ethereum.dex_swaps
where platform != 'curve'
and block_timestamp >= current_date - interval '90 days'
group by 1
-- limit 100